| 55 | } |
| 56 | |
| 57 | static migraphx::instruction_ref init_zero_point(migraphx::module& m, |
| 58 | migraphx::instruction_ref q_ins) |
| 59 | { |
| 60 | auto zp = m.add_literal(migraphx::literal{migraphx::shape{q_ins->get_shape().type()}, {0}}); |
| 61 | return m.add_instruction( |
| 62 | migraphx::make_op("multibroadcast", {{"out_lens", q_ins->get_shape().lens()}}), zp); |
| 63 | } |
| 64 | |
| 65 | TEST_CASE(remove_qdq) |
| 66 | { |
no test coverage detected