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/flatten_nonstd_test.cpp
test/onnx/parse/flatten_nonstd_test.cpp
+0
-3
test/onnx/parse/flatten_test.cpp
test/onnx/parse/flatten_test.cpp
+0
-3
test/onnx/parse/floor_test.cpp
test/onnx/parse/floor_test.cpp
+0
-3
test/onnx/parse/gather_dyn_test.cpp
test/onnx/parse/gather_dyn_test.cpp
+0
-3
test/onnx/parse/gather_elements_axis0_test.cpp
test/onnx/parse/gather_elements_axis0_test.cpp
+0
-3
test/onnx/parse/gather_elements_axis1_test.cpp
test/onnx/parse/gather_elements_axis1_test.cpp
+0
-3
test/onnx/parse/gather_scalar_test.cpp
test/onnx/parse/gather_scalar_test.cpp
+0
-3
test/onnx/parse/gather_test.cpp
test/onnx/parse/gather_test.cpp
+0
-3
test/onnx/parse/gathernd_batch_dims_test.cpp
test/onnx/parse/gathernd_batch_dims_test.cpp
+0
-3
test/onnx/parse/gathernd_dyn_test.cpp
test/onnx/parse/gathernd_dyn_test.cpp
+0
-3
test/onnx/parse/gathernd_test.cpp
test/onnx/parse/gathernd_test.cpp
+0
-3
test/onnx/parse/gemm_brcst_C_test.cpp
test/onnx/parse/gemm_brcst_C_test.cpp
+0
-3
test/onnx/parse/gemm_dyn_bias_test.cpp
test/onnx/parse/gemm_dyn_bias_test.cpp
+0
-3
test/onnx/parse/gemm_dyn_inner_test.cpp
test/onnx/parse/gemm_dyn_inner_test.cpp
+0
-3
test/onnx/parse/gemm_dyn_outer_test.cpp
test/onnx/parse/gemm_dyn_outer_test.cpp
+0
-3
test/onnx/parse/gemm_half_test.cpp
test/onnx/parse/gemm_half_test.cpp
+0
-3
test/onnx/parse/gemm_no_C_test.cpp
test/onnx/parse/gemm_no_C_test.cpp
+0
-3
test/onnx/parse/gemm_rank_error.cpp
test/onnx/parse/gemm_rank_error.cpp
+0
-3
test/onnx/parse/gemm_test.cpp
test/onnx/parse/gemm_test.cpp
+0
-3
test/onnx/parse/globalavgpool_dyn_test.cpp
test/onnx/parse/globalavgpool_dyn_test.cpp
+0
-3
No files found.
test/onnx/parse/flatten_nonstd_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
flatten_nonstd_test
)
TEST_CASE
(
flatten_nonstd_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -17,5 +16,3 @@ TEST_CASE(flatten_nonstd_test)
...
@@ -17,5 +16,3 @@ TEST_CASE(flatten_nonstd_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/flatten_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
flatten_test
)
TEST_CASE
(
flatten_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(flatten_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(flatten_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/floor_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
floor_test
)
TEST_CASE
(
floor_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(floor_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(floor_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gather_dyn_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
gather_dyn_test
)
TEST_CASE
(
gather_dyn_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -24,5 +23,3 @@ TEST_CASE(gather_dyn_test)
...
@@ -24,5 +23,3 @@ TEST_CASE(gather_dyn_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gather_elements_axis0_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
gather_elements_axis0_test
)
TEST_CASE
(
gather_elements_axis0_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -30,5 +29,3 @@ TEST_CASE(gather_elements_axis0_test)
...
@@ -30,5 +29,3 @@ TEST_CASE(gather_elements_axis0_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gather_elements_axis1_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
gather_elements_axis1_test
)
TEST_CASE
(
gather_elements_axis1_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -30,5 +29,3 @@ TEST_CASE(gather_elements_axis1_test)
...
@@ -30,5 +29,3 @@ TEST_CASE(gather_elements_axis1_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gather_scalar_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
gather_scalar_test
)
TEST_CASE
(
gather_scalar_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -16,5 +15,3 @@ TEST_CASE(gather_scalar_test)
...
@@ -16,5 +15,3 @@ TEST_CASE(gather_scalar_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gather_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
gather_test
)
TEST_CASE
(
gather_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -14,5 +13,3 @@ TEST_CASE(gather_test)
...
@@ -14,5 +13,3 @@ TEST_CASE(gather_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gathernd_batch_dims_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
gathernd_batch_dims_test
)
TEST_CASE
(
gathernd_batch_dims_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -14,5 +13,3 @@ TEST_CASE(gathernd_batch_dims_test)
...
@@ -14,5 +13,3 @@ TEST_CASE(gathernd_batch_dims_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gathernd_dyn_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
gathernd_dyn_test
)
TEST_CASE
(
gathernd_dyn_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -19,5 +18,3 @@ TEST_CASE(gathernd_dyn_test)
...
@@ -19,5 +18,3 @@ TEST_CASE(gathernd_dyn_test)
auto
prog
=
migraphx
::
parse_onnx
(
"gathernd_dyn_test.onnx"
,
options
);
auto
prog
=
migraphx
::
parse_onnx
(
"gathernd_dyn_test.onnx"
,
options
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gathernd_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
gathernd_test
)
TEST_CASE
(
gathernd_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(gathernd_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(gathernd_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gemm_brcst_C_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <migraphx/apply_alpha_beta.hpp>
#include <migraphx/apply_alpha_beta.hpp>
TEST_CASE
(
gemm_brcst_C_test
)
TEST_CASE
(
gemm_brcst_C_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -28,5 +27,3 @@ TEST_CASE(gemm_brcst_C_test)
...
@@ -28,5 +27,3 @@ TEST_CASE(gemm_brcst_C_test)
auto
prog
=
optimize_onnx
(
"gemm_brcst_C_test.onnx"
);
auto
prog
=
optimize_onnx
(
"gemm_brcst_C_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gemm_dyn_bias_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
gemm_dyn_bias_test
)
TEST_CASE
(
gemm_dyn_bias_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -21,5 +20,3 @@ TEST_CASE(gemm_dyn_bias_test)
...
@@ -21,5 +20,3 @@ TEST_CASE(gemm_dyn_bias_test)
auto
prog
=
parse_onnx
(
"gemm_dyn_bias_test.onnx"
,
options
);
auto
prog
=
parse_onnx
(
"gemm_dyn_bias_test.onnx"
,
options
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gemm_dyn_inner_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <migraphx/apply_alpha_beta.hpp>
#include <migraphx/apply_alpha_beta.hpp>
TEST_CASE
(
gemm_dyn_inner_test
)
TEST_CASE
(
gemm_dyn_inner_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -23,5 +22,3 @@ TEST_CASE(gemm_dyn_inner_test)
...
@@ -23,5 +22,3 @@ TEST_CASE(gemm_dyn_inner_test)
auto
prog
=
migraphx
::
parse_onnx
(
"gemm_dyn_inner_test.onnx"
,
options
);
auto
prog
=
migraphx
::
parse_onnx
(
"gemm_dyn_inner_test.onnx"
,
options
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gemm_dyn_outer_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <migraphx/apply_alpha_beta.hpp>
#include <migraphx/apply_alpha_beta.hpp>
TEST_CASE
(
gemm_dyn_outer_test
)
TEST_CASE
(
gemm_dyn_outer_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -23,5 +22,3 @@ TEST_CASE(gemm_dyn_outer_test)
...
@@ -23,5 +22,3 @@ TEST_CASE(gemm_dyn_outer_test)
auto
prog
=
migraphx
::
parse_onnx
(
"gemm_dyn_outer_test.onnx"
,
options
);
auto
prog
=
migraphx
::
parse_onnx
(
"gemm_dyn_outer_test.onnx"
,
options
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gemm_half_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <migraphx/apply_alpha_beta.hpp>
#include <migraphx/apply_alpha_beta.hpp>
TEST_CASE
(
gemm_half_test
)
TEST_CASE
(
gemm_half_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -32,5 +31,3 @@ TEST_CASE(gemm_half_test)
...
@@ -32,5 +31,3 @@ TEST_CASE(gemm_half_test)
auto
prog
=
optimize_onnx
(
"gemm_half_test.onnx"
);
auto
prog
=
optimize_onnx
(
"gemm_half_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gemm_no_C_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <migraphx/apply_alpha_beta.hpp>
#include <migraphx/apply_alpha_beta.hpp>
TEST_CASE
(
gemm_no_C_test
)
TEST_CASE
(
gemm_no_C_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -28,5 +27,3 @@ TEST_CASE(gemm_no_C_test)
...
@@ -28,5 +27,3 @@ TEST_CASE(gemm_no_C_test)
auto
prog
=
optimize_onnx
(
"gemm_no_C_test.onnx"
);
auto
prog
=
optimize_onnx
(
"gemm_no_C_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/gemm_rank_error.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
gemm_rank_error
)
TEST_CASE
(
gemm_rank_error
)
{
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"gemm_rank_error.onnx"
);
}));
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"gemm_rank_error.onnx"
);
}));
}
}
test/onnx/parse/gemm_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <migraphx/apply_alpha_beta.hpp>
#include <migraphx/apply_alpha_beta.hpp>
TEST_CASE
(
gemm_test
)
TEST_CASE
(
gemm_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -25,5 +24,3 @@ TEST_CASE(gemm_test)
...
@@ -25,5 +24,3 @@ TEST_CASE(gemm_test)
auto
prog
=
optimize_onnx
(
"gemm_test.onnx"
);
auto
prog
=
optimize_onnx
(
"gemm_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/globalavgpool_dyn_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <migraphx/op/pooling.hpp>
#include <migraphx/op/pooling.hpp>
TEST_CASE
(
globalavgpool_dyn_test
)
TEST_CASE
(
globalavgpool_dyn_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -22,5 +21,3 @@ TEST_CASE(globalavgpool_dyn_test)
...
@@ -22,5 +21,3 @@ TEST_CASE(globalavgpool_dyn_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
Prev
1
…
4
5
6
7
8
9
10
11
12
…
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