#include "verify_program.hpp" #include #include #include struct test_pad_lowest : verify_program { migraphx::program create_program() const { migraphx::program p; auto* mm = p.get_main_module(); std::vector data0(4); std::iota(data0.begin(), data0.end(), 0); migraphx::shape s0{migraphx::shape::half_type, {2, 2}}; auto l0 = mm->add_literal(migraphx::literal{s0, data0}); migraphx::op::pad op{}; op.value = std::numeric_limits::lowest(); op.pads = {0, 0, 1, 1}; mm->add_instruction(op, l0); return p; } };