"examples/tutorials/quantization_quick_start_mnist.py" did not exist on "cef9babdb74b6f157fc8d684f0c352c3d1b3a49f"
Commit 277140f3 authored by Umang Yadav's avatar Umang Yadav
Browse files

test working

parent 1b299790
......@@ -576,11 +576,11 @@ TEST_CASE(dot_add_multiple_dq_use)
auto dot_2 = m2.add_instruction(migraphx::make_op("quant_dot"), d3_q, q1);
auto out_scale_2 = add_scale_mul(m2, scale, scale, 1, 1, dot_2->get_shape().lens());
auto d4 = add_quantize_op(m2, "dequantizelinear", dot_2, out_scale_2);
m2.add_return({d4});
auto add = m2.add_instruction(migraphx::make_op("add"), d4, t1);
m2.add_return({add});
}
run_pass(m1);
// EXPECT(m1 == m2);
EXPECT(m1 == m2);
}
TEST_CASE(conv)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment