Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
737ec0bd
Commit
737ec0bd
authored
Apr 03, 2019
by
Shucai Xiao
Browse files
fix a build error in jenkins since some code is automatically generated.
parent
0776040c
Changes
16
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
15 additions
and
15 deletions
+15
-15
src/include/migraphx/operators.hpp
src/include/migraphx/operators.hpp
+0
-0
src/onnx/onnx.cpp
src/onnx/onnx.cpp
+1
-1
src/rewrite_rnn.cpp
src/rewrite_rnn.cpp
+1
-1
src/targets/cpu/lowering.cpp
src/targets/cpu/lowering.cpp
+1
-1
src/targets/gpu/lowering.cpp
src/targets/gpu/lowering.cpp
+1
-1
src/tf/tf.cpp
src/tf/tf.cpp
+1
-1
test/cpu_ops_test.cpp
test/cpu_ops_test.cpp
+1
-1
test/eliminate_pad_test.cpp
test/eliminate_pad_test.cpp
+1
-1
test/gpu/miopen.cpp
test/gpu/miopen.cpp
+1
-1
test/onnx/onnx_rnn_test.cpp
test/onnx/onnx_rnn_test.cpp
+1
-1
test/onnx/onnx_test.cpp
test/onnx/onnx_test.cpp
+1
-1
test/op_shape_test.cpp
test/op_shape_test.cpp
+1
-1
test/simplify_algebra_test.cpp
test/simplify_algebra_test.cpp
+1
-1
test/simplify_reshapes_test.cpp
test/simplify_reshapes_test.cpp
+1
-1
test/tf/tf_test.cpp
test/tf/tf_test.cpp
+1
-1
tools/include/concat_opt.hpp
tools/include/concat_opt.hpp
+1
-1
No files found.
src/include/migraphx/
op/
operators.hpp
→
src/include/migraphx/operators.hpp
View file @
737ec0bd
File moved
src/onnx/onnx.cpp
View file @
737ec0bd
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
#include <migraphx/fallthrough.hpp>
#include <migraphx/fallthrough.hpp>
#include <migraphx/program.hpp>
#include <migraphx/program.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/config.hpp>
#include <migraphx/config.hpp>
...
...
src/rewrite_rnn.cpp
View file @
737ec0bd
#include <migraphx/rewrite_rnn.hpp>
#include <migraphx/rewrite_rnn.hpp>
#include <migraphx/program.hpp>
#include <migraphx/program.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <migraphx/iterator_for.hpp>
#include <migraphx/iterator_for.hpp>
#include <migraphx/dfor.hpp>
#include <migraphx/dfor.hpp>
...
...
src/targets/cpu/lowering.cpp
View file @
737ec0bd
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
#include <migraphx/cpu/lowering.hpp>
#include <migraphx/cpu/lowering.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/dfor.hpp>
#include <migraphx/dfor.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <migraphx/shape_for_each.hpp>
#include <migraphx/shape_for_each.hpp>
#include <migraphx/iterator_for.hpp>
#include <migraphx/iterator_for.hpp>
#include <migraphx/par_dfor.hpp>
#include <migraphx/par_dfor.hpp>
...
...
src/targets/gpu/lowering.cpp
View file @
737ec0bd
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
#include <migraphx/gpu/lowering.hpp>
#include <migraphx/gpu/lowering.hpp>
#include <migraphx/manage_ptr.hpp>
#include <migraphx/manage_ptr.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/shape_for_each.hpp>
#include <migraphx/shape_for_each.hpp>
#include <migraphx/gpu/miopen.hpp>
#include <migraphx/gpu/miopen.hpp>
...
...
src/tf/tf.cpp
View file @
737ec0bd
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
#include <migraphx/fallthrough.hpp>
#include <migraphx/fallthrough.hpp>
#include <migraphx/program.hpp>
#include <migraphx/program.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/config.hpp>
#include <migraphx/config.hpp>
...
...
test/cpu_ops_test.cpp
View file @
737ec0bd
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>
#include <migraphx/literal.hpp>
#include <migraphx/literal.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/cpu/target.hpp>
#include <migraphx/cpu/target.hpp>
#include <migraphx/verify.hpp>
#include <migraphx/verify.hpp>
...
...
test/eliminate_pad_test.cpp
View file @
737ec0bd
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
#include <migraphx/eliminate_pad.hpp>
#include <migraphx/eliminate_pad.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/instruction.hpp>
#include <basic_ops.hpp>
#include <basic_ops.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <test.hpp>
#include <test.hpp>
struct
eliminate_pad_target
struct
eliminate_pad_target
...
...
test/gpu/miopen.cpp
View file @
737ec0bd
#include <migraphx/program.hpp>
#include <migraphx/program.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/cpu/target.hpp>
#include <migraphx/cpu/target.hpp>
#include <migraphx/gpu/target.hpp>
#include <migraphx/gpu/target.hpp>
...
...
test/onnx/onnx_rnn_test.cpp
View file @
737ec0bd
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>
#include <migraphx/literal.hpp>
#include <migraphx/literal.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <migraphx/program.hpp>
#include <migraphx/program.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/onnx.hpp>
#include <migraphx/onnx.hpp>
...
...
test/onnx/onnx_test.cpp
View file @
737ec0bd
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>
#include <migraphx/literal.hpp>
#include <migraphx/literal.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <migraphx/program.hpp>
#include <migraphx/program.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/onnx.hpp>
#include <migraphx/onnx.hpp>
...
...
test/op_shape_test.cpp
View file @
737ec0bd
#include <migraphx/program.hpp>
#include <migraphx/program.hpp>
#include <migraphx/iterator_for.hpp>
#include <migraphx/iterator_for.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <sstream>
#include <sstream>
#include "test.hpp"
#include "test.hpp"
...
...
test/simplify_algebra_test.cpp
View file @
737ec0bd
#include <migraphx/simplify_algebra.hpp>
#include <migraphx/simplify_algebra.hpp>
#include <migraphx/dead_code_elimination.hpp>
#include <migraphx/dead_code_elimination.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <basic_ops.hpp>
#include <basic_ops.hpp>
#include <test.hpp>
#include <test.hpp>
...
...
test/simplify_reshapes_test.cpp
View file @
737ec0bd
#include <migraphx/simplify_reshapes.hpp>
#include <migraphx/simplify_reshapes.hpp>
#include <migraphx/dead_code_elimination.hpp>
#include <migraphx/dead_code_elimination.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <basic_ops.hpp>
#include <basic_ops.hpp>
#include <test.hpp>
#include <test.hpp>
...
...
test/tf/tf_test.cpp
View file @
737ec0bd
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>
#include <migraphx/literal.hpp>
#include <migraphx/literal.hpp>
#include <migraphx/
op/
operators.hpp>
#include <migraphx/operators.hpp>
#include <migraphx/program.hpp>
#include <migraphx/program.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/tf.hpp>
#include <migraphx/tf.hpp>
...
...
tools/include/concat_opt.hpp
View file @
737ec0bd
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
#include <utility>
#include <utility>
#include <migraphx/operation.hpp>
#include <migraphx/operation.hpp>
#include <migraphx/op
erators
.hpp>
#include <migraphx/op
/concat
.hpp>
#include <migraphx/config.hpp>
#include <migraphx/config.hpp>
namespace
migraphx
{
namespace
migraphx
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment