"vscode:/vscode.git/clone" did not exist on "bbd073e417bca3d7ee08fbba3feeab6c686d9f19"
Commit 4a244975 authored by Shucai Xiao's avatar Shucai Xiao
Browse files

clang format

parent 7f728f6b
...@@ -31,7 +31,7 @@ enum class rnn_direction ...@@ -31,7 +31,7 @@ enum class rnn_direction
bidirectional, bidirectional,
}; };
std::ostream& operator << (std::ostream& os, rnn_direction v); std::ostream& operator<<(std::ostream& os, rnn_direction v);
} // namespace op } // namespace op
} // namespace MIGRAPHX_INLINE_NS } // namespace MIGRAPHX_INLINE_NS
......
...@@ -1168,12 +1168,12 @@ std::vector<operation> rewrite_rnn::lstm_actv_funcs(instruction_ref ins) const ...@@ -1168,12 +1168,12 @@ std::vector<operation> rewrite_rnn::lstm_actv_funcs(instruction_ref ins) const
} }
namespace op { namespace op {
std::ostream& operator << (std::ostream& os, rnn_direction v) std::ostream& operator<<(std::ostream& os, rnn_direction v)
{ {
os << static_cast<std::underlying_type<rnn_direction>::type>(v); os << static_cast<std::underlying_type<rnn_direction>::type>(v);
return os; return os;
} }
} } // namespace op
} // namespace MIGRAPHX_INLINE_NS } // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx } // namespace migraphx
This diff is collapsed.
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