Commit 7d74dd8c authored by Shucai Xiao's avatar Shucai Xiao
Browse files

clang format

parent d7d8b1c2
...@@ -787,7 +787,7 @@ TEST_CASE(logsoftmax) ...@@ -787,7 +787,7 @@ TEST_CASE(logsoftmax)
TEST_CASE(argmax) TEST_CASE(argmax)
{ {
migraphx::program p; migraphx::program p;
auto l0 = p.add_parameter("x", migraphx::shape{migraphx::shape::float_type, {3, 4, 5, 6}}); auto l0 = p.add_parameter("x", migraphx::shape{migraphx::shape::float_type, {3, 4, 5, 6}});
p.add_instruction(migraphx::op::argmax{2, 0}, l0); p.add_instruction(migraphx::op::argmax{2, 0}, l0);
auto prog = migraphx::parse_onnx("argmax_test.onnx"); auto prog = migraphx::parse_onnx("argmax_test.onnx");
...@@ -797,7 +797,7 @@ TEST_CASE(argmax) ...@@ -797,7 +797,7 @@ TEST_CASE(argmax)
TEST_CASE(argmin) TEST_CASE(argmin)
{ {
migraphx::program p; migraphx::program p;
auto l0 = p.add_parameter("x", migraphx::shape{migraphx::shape::float_type, {3, 4, 5, 6}}); auto l0 = p.add_parameter("x", migraphx::shape{migraphx::shape::float_type, {3, 4, 5, 6}});
p.add_instruction(migraphx::op::argmin{3, 0}, l0); p.add_instruction(migraphx::op::argmin{3, 0}, l0);
auto prog = migraphx::parse_onnx("argmin_test.onnx"); auto prog = migraphx::parse_onnx("argmin_test.onnx");
......
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