#include "verify_program.hpp" #include #include #include struct test_ceil : verify_program { migraphx::program create_program() const { migraphx::program p; migraphx::shape s{migraphx::shape::double_type, {2, 3, 4, 6}}; auto param = p.add_parameter("x", s); p.add_instruction(migraphx::op::ceil{}, param); return p; }; };