#include "verify_program.hpp" #include #include #include struct test_log : verify_program { migraphx::program create_program() const { migraphx::program p; migraphx::shape s{migraphx::shape::float_type, {6}}; auto x = p.add_instruction(migraphx::op::abs{}, p.add_parameter("x", s)); p.add_instruction(migraphx::op::log{}, x); return p; } };