"src/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "fcc33ab81f9e64ce409f07f4766d7042a1644ae1"
Commit c2db3b96 authored by Shucai Xiao's avatar Shucai Xiao
Browse files

clang format

parent 15385fb1
......@@ -204,7 +204,7 @@ std::vector<instruction_ref> rewrite_rnn::vanilla_rnn_cell(bool is_forward,
auto tran_sr = prog.insert_instruction(ins, op::transpose{perm}, sr);
// initial hidden state
auto sih = prog.insert_instruction(ins, op::squeeze{{0}}, ih);
auto sih = prog.insert_instruction(ins, op::squeeze{{0}}, ih);
auto sih_lens = sih->get_shape().lens();
// bias
......@@ -515,7 +515,7 @@ std::vector<instruction_ref> rewrite_rnn::gru_cell(bool is_forward,
auto tran_rh = prog.insert_instruction(ins, op::transpose{perm}, rh);
// initial states
auto sih = prog.insert_instruction(ins, op::squeeze{{0}}, ih);
auto sih = prog.insert_instruction(ins, op::squeeze{{0}}, ih);
auto sih_lens = sih->get_shape().lens();
// bias
......
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