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