#include "verify_program.hpp" #include #include #include struct test_atan : verify_program { migraphx::program create_program() const { migraphx::program p; migraphx::shape s{migraphx::shape::double_type, {16}}; auto x = p.add_parameter("x", s); p.add_instruction(migraphx::op::atan{}, x); return p; } };