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
f9691e2e
Commit
f9691e2e
authored
Dec 13, 2023
by
Paul
Browse files
Format
parent
93c89587
Changes
489
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
0 additions
and
60 deletions
+0
-60
test/onnx/parse/reducesum_keepdims_test.cpp
test/onnx/parse/reducesum_keepdims_test.cpp
+0
-3
test/onnx/parse/reducesum_multiaxis_test.cpp
test/onnx/parse/reducesum_multiaxis_test.cpp
+0
-3
test/onnx/parse/reducesum_noop_test.cpp
test/onnx/parse/reducesum_noop_test.cpp
+0
-3
test/onnx/parse/reducesum_square_test.cpp
test/onnx/parse/reducesum_square_test.cpp
+0
-3
test/onnx/parse/reducesum_test.cpp
test/onnx/parse/reducesum_test.cpp
+0
-3
test/onnx/parse/reshape_non_standard_test.cpp
test/onnx/parse/reshape_non_standard_test.cpp
+0
-3
test/onnx/parse/reshape_test.cpp
test/onnx/parse/reshape_test.cpp
+0
-3
test/onnx/parse/reshape_variable_input_dyn_test.cpp
test/onnx/parse/reshape_variable_input_dyn_test.cpp
+0
-3
test/onnx/parse/reshape_variable_input_test.cpp
test/onnx/parse/reshape_variable_input_test.cpp
+0
-3
test/onnx/parse/resize_downsample_c_test.cpp
test/onnx/parse/resize_downsample_c_test.cpp
+0
-3
test/onnx/parse/resize_downsample_f_test.cpp
test/onnx/parse/resize_downsample_f_test.cpp
+0
-3
test/onnx/parse/resize_downsample_linear_test.cpp
test/onnx/parse/resize_downsample_linear_test.cpp
+0
-3
test/onnx/parse/resize_nonstd_input_test.cpp
test/onnx/parse/resize_nonstd_input_test.cpp
+0
-3
test/onnx/parse/resize_outsize_test.cpp
test/onnx/parse/resize_outsize_test.cpp
+0
-3
test/onnx/parse/resize_upsample_linear_ac_test.cpp
test/onnx/parse/resize_upsample_linear_ac_test.cpp
+0
-3
test/onnx/parse/resize_upsample_linear_test.cpp
test/onnx/parse/resize_upsample_linear_test.cpp
+0
-3
test/onnx/parse/resize_upsample_pc_test.cpp
test/onnx/parse/resize_upsample_pc_test.cpp
+0
-3
test/onnx/parse/resize_upsample_pf_test.cpp
test/onnx/parse/resize_upsample_pf_test.cpp
+0
-3
test/onnx/parse/reversesequence_batch_axis_err_test.cpp
test/onnx/parse/reversesequence_batch_axis_err_test.cpp
+0
-3
test/onnx/parse/reversesequence_batch_test.cpp
test/onnx/parse/reversesequence_batch_test.cpp
+0
-3
No files found.
test/onnx/parse/reducesum_keepdims_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducesum_keepdims_test
)
TEST_CASE
(
reducesum_keepdims_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -12,5 +11,3 @@ TEST_CASE(reducesum_keepdims_test)
...
@@ -12,5 +11,3 @@ TEST_CASE(reducesum_keepdims_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducesum_multiaxis_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducesum_multiaxis_test
)
TEST_CASE
(
reducesum_multiaxis_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(reducesum_multiaxis_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(reducesum_multiaxis_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducesum_noop_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducesum_noop_test
)
TEST_CASE
(
reducesum_noop_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(reducesum_noop_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(reducesum_noop_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducesum_square_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducesum_square_test
)
TEST_CASE
(
reducesum_square_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -14,5 +13,3 @@ TEST_CASE(reducesum_square_test)
...
@@ -14,5 +13,3 @@ TEST_CASE(reducesum_square_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducesum_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducesum_test
)
TEST_CASE
(
reducesum_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(reducesum_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(reducesum_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reshape_non_standard_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <migraphx/op/reshape.hpp>
#include <migraphx/op/reshape.hpp>
TEST_CASE
(
reshape_non_standard_test
)
TEST_CASE
(
reshape_non_standard_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -17,5 +16,3 @@ TEST_CASE(reshape_non_standard_test)
...
@@ -17,5 +16,3 @@ TEST_CASE(reshape_non_standard_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reshape_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <migraphx/op/reshape.hpp>
#include <migraphx/op/reshape.hpp>
TEST_CASE
(
reshape_test
)
TEST_CASE
(
reshape_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -18,5 +17,3 @@ TEST_CASE(reshape_test)
...
@@ -18,5 +17,3 @@ TEST_CASE(reshape_test)
auto
prog
=
optimize_onnx
(
"reshape_test.onnx"
);
auto
prog
=
optimize_onnx
(
"reshape_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reshape_variable_input_dyn_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reshape_variable_input_dyn_test
)
TEST_CASE
(
reshape_variable_input_dyn_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -19,5 +18,3 @@ TEST_CASE(reshape_variable_input_dyn_test)
...
@@ -19,5 +18,3 @@ TEST_CASE(reshape_variable_input_dyn_test)
auto
prog
=
parse_onnx
(
"reshape_variable_input_dyn_test.onnx"
,
options
);
auto
prog
=
parse_onnx
(
"reshape_variable_input_dyn_test.onnx"
,
options
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reshape_variable_input_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reshape_variable_input_test
)
TEST_CASE
(
reshape_variable_input_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -15,5 +14,3 @@ TEST_CASE(reshape_variable_input_test)
...
@@ -15,5 +14,3 @@ TEST_CASE(reshape_variable_input_test)
auto
prog
=
optimize_onnx
(
"reshape_variable_input_test.onnx"
);
auto
prog
=
optimize_onnx
(
"reshape_variable_input_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/resize_downsample_c_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
resize_downsample_c_test
)
TEST_CASE
(
resize_downsample_c_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -28,5 +27,3 @@ TEST_CASE(resize_downsample_c_test)
...
@@ -28,5 +27,3 @@ TEST_CASE(resize_downsample_c_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/resize_downsample_f_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
resize_downsample_f_test
)
TEST_CASE
(
resize_downsample_f_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -27,5 +26,3 @@ TEST_CASE(resize_downsample_f_test)
...
@@ -27,5 +26,3 @@ TEST_CASE(resize_downsample_f_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/resize_downsample_linear_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
resize_downsample_linear_test
)
TEST_CASE
(
resize_downsample_linear_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -69,5 +68,3 @@ TEST_CASE(resize_downsample_linear_test)
...
@@ -69,5 +68,3 @@ TEST_CASE(resize_downsample_linear_test)
auto
prog
=
migraphx
::
parse_onnx
(
"resize_downsample_linear_test.onnx"
);
auto
prog
=
migraphx
::
parse_onnx
(
"resize_downsample_linear_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/resize_nonstd_input_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
resize_nonstd_input_test
)
TEST_CASE
(
resize_nonstd_input_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -30,5 +29,3 @@ TEST_CASE(resize_nonstd_input_test)
...
@@ -30,5 +29,3 @@ TEST_CASE(resize_nonstd_input_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/resize_outsize_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
resize_outsize_test
)
TEST_CASE
(
resize_outsize_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -28,5 +27,3 @@ TEST_CASE(resize_outsize_test)
...
@@ -28,5 +27,3 @@ TEST_CASE(resize_outsize_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/resize_upsample_linear_ac_test.cpp
View file @
f9691e2e
...
@@ -2,12 +2,9 @@
...
@@ -2,12 +2,9 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <onnx_test_utils.hpp>
#include <onnx_test_utils.hpp>
TEST_CASE
(
resize_upsample_linear_ac_test
)
TEST_CASE
(
resize_upsample_linear_ac_test
)
{
{
auto
p
=
create_upsample_linear_prog
();
auto
p
=
create_upsample_linear_prog
();
auto
prog
=
migraphx
::
parse_onnx
(
"resize_upsample_linear_ac_test.onnx"
);
auto
prog
=
migraphx
::
parse_onnx
(
"resize_upsample_linear_ac_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/resize_upsample_linear_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
resize_upsample_linear_test
)
TEST_CASE
(
resize_upsample_linear_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -96,5 +95,3 @@ TEST_CASE(resize_upsample_linear_test)
...
@@ -96,5 +95,3 @@ TEST_CASE(resize_upsample_linear_test)
auto
prog
=
migraphx
::
parse_onnx
(
"resize_upsample_linear_test.onnx"
);
auto
prog
=
migraphx
::
parse_onnx
(
"resize_upsample_linear_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/resize_upsample_pc_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
resize_upsample_pc_test
)
TEST_CASE
(
resize_upsample_pc_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -28,5 +27,3 @@ TEST_CASE(resize_upsample_pc_test)
...
@@ -28,5 +27,3 @@ TEST_CASE(resize_upsample_pc_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/resize_upsample_pf_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
resize_upsample_pf_test
)
TEST_CASE
(
resize_upsample_pf_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -28,5 +27,3 @@ TEST_CASE(resize_upsample_pf_test)
...
@@ -28,5 +27,3 @@ TEST_CASE(resize_upsample_pf_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reversesequence_batch_axis_err_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reversesequence_batch_axis_err_test
)
TEST_CASE
(
reversesequence_batch_axis_err_test
)
{
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"reversesequence_batch_axis_err_test.onnx"
);
}));
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"reversesequence_batch_axis_err_test.onnx"
);
}));
}
}
test/onnx/parse/reversesequence_batch_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reversesequence_batch_test
)
TEST_CASE
(
reversesequence_batch_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -44,5 +43,3 @@ TEST_CASE(reversesequence_batch_test)
...
@@ -44,5 +43,3 @@ TEST_CASE(reversesequence_batch_test)
auto
prog
=
migraphx
::
parse_onnx
(
"reversesequence_batch_test.onnx"
);
auto
prog
=
migraphx
::
parse_onnx
(
"reversesequence_batch_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
Prev
1
…
15
16
17
18
19
20
21
22
23
…
25
Next
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