Commit a6a851a1 authored by Paul's avatar Paul
Browse files

s/miopen_write_literals/write_literals

parent b89b17b8
...@@ -14,7 +14,7 @@ add_library(migraph_miopen ...@@ -14,7 +14,7 @@ add_library(migraph_miopen
hip.cpp hip.cpp
target.cpp target.cpp
lowering.cpp lowering.cpp
miopen_write_literals.cpp write_literals.cpp
rocblas.cpp rocblas.cpp
) )
rocm_clang_tidy_check(migraph_miopen) rocm_clang_tidy_check(migraph_miopen)
......
...@@ -7,7 +7,7 @@ namespace migraph { ...@@ -7,7 +7,7 @@ namespace migraph {
namespace miopen { namespace miopen {
struct miopen_write_literals struct write_literals
{ {
std::string name() const { return "miopen::write_literals"; } std::string name() const { return "miopen::write_literals"; }
......
#include <migraph/miopen/target.hpp> #include <migraph/miopen/target.hpp>
#include <migraph/miopen/lowering.hpp> #include <migraph/miopen/lowering.hpp>
#include <migraph/miopen/miopen_write_literals.hpp> #include <migraph/miopen/write_literals.hpp>
#include <migraph/miopen/context.hpp> #include <migraph/miopen/context.hpp>
namespace migraph { namespace migraph {
...@@ -8,7 +8,7 @@ namespace miopen { ...@@ -8,7 +8,7 @@ namespace miopen {
std::vector<pass> target::get_passes(context&) const std::vector<pass> target::get_passes(context&) const
{ {
return {lowering{}, miopen_write_literals{}}; return {lowering{}, write_literals{}};
} }
std::string target::name() const { return "miopen"; } std::string target::name() const { return "miopen"; }
......
#include <migraph/miopen/miopen_write_literals.hpp> #include <migraph/miopen/write_literals.hpp>
#include <migraph/iterator_for.hpp> #include <migraph/iterator_for.hpp>
#include <migraph/miopen/hip.hpp> #include <migraph/miopen/hip.hpp>
#include <migraph/instruction.hpp> #include <migraph/instruction.hpp>
...@@ -7,7 +7,7 @@ namespace migraph { ...@@ -7,7 +7,7 @@ namespace migraph {
namespace miopen { namespace miopen {
void miopen_write_literals::apply(program& p) const void write_literals::apply(program& p) const
{ {
for(auto ins : iterator_for(p)) for(auto ins : iterator_for(p))
{ {
......
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