#include "verify_program.hpp" #include #include #include struct test_exp : verify_program { migraphx::program create_program() const { migraphx::program p; auto* mm = p.get_main_module(); migraphx::shape s{migraphx::shape::float_type, {6}}; auto x = mm->add_instruction(migraphx::op::abs{}, mm->add_parameter("x", s)); mm->add_instruction(migraphx::op::exp{}, x); return p; } };