"src/targets/gpu/clip.cpp" did not exist on "d6d386f7b2c0fd8ed19b4302eaf1021f880f1d2e"
Commit b6dbcee5 authored by Shucai Xiao's avatar Shucai Xiao
Browse files

clang format

parent 08161428
......@@ -44,9 +44,9 @@ TEST_CASE(non_standard_op)
TEST_CASE(transpose_gemm)
{
migraphx::program p;
auto l = p.add_literal(get_2x2());
auto t = p.add_instruction(migraphx::op::transpose{{1, 0}}, l);
auto c = p.add_instruction(migraphx::op::contiguous{}, t);
auto l = p.add_literal(get_2x2());
auto t = p.add_instruction(migraphx::op::transpose{{1, 0}}, l);
auto c = p.add_instruction(migraphx::op::contiguous{}, t);
auto ic = p.add_instruction(migraphx::op::identity{}, c);
p.add_instruction(migraphx::op::dot{}, ic, l);
auto count = std::distance(p.begin(), p.end());
......
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