Commit 76a4fbbc authored by Shucai Xiao's avatar Shucai Xiao
Browse files

clang format.

parent 75f3d056
...@@ -6,22 +6,21 @@ ...@@ -6,22 +6,21 @@
#include <migraphx/rewrite_gru.hpp> #include <migraphx/rewrite_gru.hpp>
#include <migraphx/dead_code_elimination.hpp> #include <migraphx/dead_code_elimination.hpp>
namespace migraphx namespace migraphx {
{ inline namespace MIGRAPHX_INLINE_NS {
inline namespace MIGRAPHX_INLINE_NS { namespace cpu {
namespace cpu {
std::string target::name() const { return "cpu"; } std::string target::name() const { return "cpu"; }
std::vector<pass> target::get_passes(migraphx::context&) const std::vector<pass> target::get_passes(migraphx::context&) const
{ {
return {auto_contiguous{}, return {auto_contiguous{},
rewrite_rnn{}, rewrite_rnn{},
dead_code_elimination{}, dead_code_elimination{},
lowering{}, lowering{},
dead_code_elimination{}}; dead_code_elimination{}};
} }
} // namespace cpu } // namespace cpu
} // namespace MIGRAPHX_INLINE_NS } // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx } // namespace migraphx
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