Commit 6f072f78 authored by Shucai Xiao's avatar Shucai Xiao
Browse files

Merge branch 'int8_miopen_call' into op_capture

parents c321dd0c 7a0e3b1a
...@@ -1448,7 +1448,6 @@ struct batch_quant_dot_1 : verify_program<batch_quant_dot_1> ...@@ -1448,7 +1448,6 @@ struct batch_quant_dot_1 : verify_program<batch_quant_dot_1>
migraphx::shape m1_shape{migraphx::shape::int8_type, {3, 2, 8, 2}}; migraphx::shape m1_shape{migraphx::shape::int8_type, {3, 2, 8, 2}};
migraphx::shape m2_shape{migraphx::shape::int8_type, {3, 2, 7, 8}}; migraphx::shape m2_shape{migraphx::shape::int8_type, {3, 2, 7, 8}};
migraphx::shape m3_shape{migraphx::shape::int32_type, {3, 2, 2, 7}}; migraphx::shape m3_shape{migraphx::shape::int32_type, {3, 2, 2, 7}};
std::vector<int> m3_data(2 * 7, 1);
auto l1 = p.add_parameter("a", m1_shape); auto l1 = p.add_parameter("a", m1_shape);
auto tl1 = p.add_instruction(migraphx::op::transpose{{0, 1, 3, 2}}, l1); auto tl1 = p.add_instruction(migraphx::op::transpose{{0, 1, 3, 2}}, l1);
......
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