Commit 0139038c authored by Nives Vukovic's avatar Nives Vukovic
Browse files

Format test ref file

parent b34a8e60
...@@ -515,8 +515,7 @@ TEST_CASE(rnn_forward_layout) ...@@ -515,8 +515,7 @@ TEST_CASE(rnn_forward_layout)
mm->add_return({out_hs, last_out}); mm->add_return({out_hs, last_out});
p.compile(migraphx::make_target("ref")); p.compile(migraphx::make_target("ref"));
auto outputs = p.eval({}); auto outputs = p.eval({});
auto arg_hs = outputs.front(); auto arg_hs = outputs.front();
auto arg_last_output = outputs.back(); auto arg_last_output = outputs.back();
std::vector<float> last_output_data; std::vector<float> last_output_data;
...@@ -581,7 +580,7 @@ TEST_CASE(rnn_forward_layout) ...@@ -581,7 +580,7 @@ TEST_CASE(rnn_forward_layout)
mm->add_return({out_hs, last_out}); mm->add_return({out_hs, last_out});
p.compile(migraphx::make_target("ref")); p.compile(migraphx::make_target("ref"));
auto outputs = p.eval({}); auto outputs = p.eval({});
auto arg_hs = outputs.front(); auto arg_hs = outputs.front();
auto arg_last_output = outputs.back(); auto arg_last_output = outputs.back();
std::vector<float> last_output_data; std::vector<float> last_output_data;
......
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