Commit b10c76e6 authored by Paul's avatar Paul
Browse files

Reduce operators.hpp includes

parent 8d21fdc9
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_bidirct_default_actv : verify_program<test_gru_bidirct_default_actv> struct test_gru_bidirct_default_actv : verify_program<test_gru_bidirct_default_actv>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/serialize.hpp> #include <migraphx/serialize.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_bidirct_default_actv1 : verify_program<test_gru_bidirct_default_actv1> struct test_gru_bidirct_default_actv1 : verify_program<test_gru_bidirct_default_actv1>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_bidirct_seq1 : verify_program<test_gru_bidirct_seq1> struct test_gru_bidirct_seq1 : verify_program<test_gru_bidirct_seq1>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/serialize.hpp> #include <migraphx/serialize.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_forward : verify_program<test_gru_forward> struct test_gru_forward : verify_program<test_gru_forward>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_forward_3args : verify_program<test_gru_forward_3args> struct test_gru_forward_3args : verify_program<test_gru_forward_3args>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/serialize.hpp> #include <migraphx/serialize.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_forward_3args_und : verify_program<test_gru_forward_3args_und> struct test_gru_forward_3args_und : verify_program<test_gru_forward_3args_und>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_forward_default_actv : verify_program<test_gru_forward_default_actv> struct test_gru_forward_default_actv : verify_program<test_gru_forward_default_actv>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/serialize.hpp> #include <migraphx/serialize.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_forward_default_actv1 : verify_program<test_gru_forward_default_actv1> struct test_gru_forward_default_actv1 : verify_program<test_gru_forward_default_actv1>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_forward_seq1 : verify_program<test_gru_forward_seq1> struct test_gru_forward_seq1 : verify_program<test_gru_forward_seq1>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_reverse_3args : verify_program<test_gru_reverse_3args> struct test_gru_reverse_3args : verify_program<test_gru_reverse_3args>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/serialize.hpp> #include <migraphx/serialize.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_reverse_last : verify_program<test_gru_reverse_last> struct test_gru_reverse_last : verify_program<test_gru_reverse_last>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_gru_two_outputs : verify_program<test_gru_two_outputs> struct test_gru_two_outputs : verify_program<test_gru_two_outputs>
{ {
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#include <migraphx/generate.hpp> #include <migraphx/generate.hpp>
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/reduce_mean.hpp>
migraphx::instruction_ref migraphx::instruction_ref
add_layernorm(migraphx::module& m, migraphx::instruction_ref x, std::vector<size_t> dims) add_layernorm(migraphx::module& m, migraphx::instruction_ref x, std::vector<size_t> dims)
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_lstm_bidirct_3args : verify_program<test_lstm_bidirct_3args> struct test_lstm_bidirct_3args : verify_program<test_lstm_bidirct_3args>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/serialize.hpp> #include <migraphx/serialize.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_lstm_bidirct_3args_und : verify_program<test_lstm_bidirct_3args_und> struct test_lstm_bidirct_3args_und : verify_program<test_lstm_bidirct_3args_und>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_lstm_bidirct_default_actv : verify_program<test_lstm_bidirct_default_actv> struct test_lstm_bidirct_default_actv : verify_program<test_lstm_bidirct_default_actv>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_lstm_bidirct_default_actv1 : verify_program<test_lstm_bidirct_default_actv1> struct test_lstm_bidirct_default_actv1 : verify_program<test_lstm_bidirct_default_actv1>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/serialize.hpp> #include <migraphx/serialize.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_lstm_bidirct_default_actv2 : verify_program<test_lstm_bidirct_default_actv2> struct test_lstm_bidirct_default_actv2 : verify_program<test_lstm_bidirct_default_actv2>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/make_op.hpp> #include <migraphx/make_op.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_lstm_bidirct_hs : verify_program<test_lstm_bidirct_hs> struct test_lstm_bidirct_hs : verify_program<test_lstm_bidirct_hs>
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <migraphx/serialize.hpp> #include <migraphx/serialize.hpp>
#include <migraphx/operators.hpp> #include <migraphx/op/common.hpp>
struct test_lstm_bidirct_last : verify_program<test_lstm_bidirct_last> struct test_lstm_bidirct_last : verify_program<test_lstm_bidirct_last>
{ {
......
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