Commit eea003a5 authored by Paul's avatar Paul
Browse files

s/rtg/migraph

parent 5f1ea74f
#ifndef RTG_GUARD_RTGLIB_OPERAND_HPP #ifndef MIGRAPH_GUARD_MIGRAPHLIB_OPERAND_HPP
#define RTG_GUARD_RTGLIB_OPERAND_HPP #define MIGRAPH_GUARD_MIGRAPHLIB_OPERAND_HPP
#include <string> #include <string>
#include <functional> #include <functional>
#include <memory> #include <memory>
#include <type_traits> #include <type_traits>
#include <utility> #include <utility>
#include <rtg/shape.hpp> #include <migraph/shape.hpp>
#include <rtg/argument.hpp> #include <migraph/argument.hpp>
#include <rtg/context.hpp> #include <migraph/context.hpp>
namespace rtg { namespace migraph {
namespace operation_stream { namespace operation_stream {
...@@ -27,10 +27,10 @@ interface('operation', ...@@ -27,10 +27,10 @@ interface('operation',
virtual('name', returns='std::string', const=True), virtual('name', returns='std::string', const=True),
virtual('compute_shape', returns='shape', input='std::vector<shape>', const=True), virtual('compute_shape', returns='shape', input='std::vector<shape>', const=True),
virtual('compute', returns='argument', ctx='context&', output='shape', input='std::vector<argument>', const=True), virtual('compute', returns='argument', ctx='context&', output='shape', input='std::vector<argument>', const=True),
friend('operator<<', returns='std::ostream &', os='std::ostream &', op='const operation &', using='rtg::operation_stream::operator<<') friend('operator<<', returns='std::ostream &', os='std::ostream &', op='const operation &', using='migraph::operation_stream::operator<<')
) )
%> %>
} // namespace rtg } // namespace migraph
#endif #endif
#ifndef RTG_GUARD_RTGLIB_TARGET_HPP #ifndef MIGRAPH_GUARD_MIGRAPHLIB_TARGET_HPP
#define RTG_GUARD_RTGLIB_TARGET_HPP #define MIGRAPH_GUARD_MIGRAPHLIB_TARGET_HPP
#include <string> #include <string>
#include <functional> #include <functional>
#include <memory> #include <memory>
#include <type_traits> #include <type_traits>
#include <utility> #include <utility>
#include <rtg/context.hpp> #include <migraph/context.hpp>
namespace rtg { namespace migraph {
struct program; struct program;
...@@ -20,6 +20,6 @@ interface('target', ...@@ -20,6 +20,6 @@ interface('target',
) )
%> %>
} // namespace rtg } // namespace migraph
#endif #endif
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