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/conv_transpose_input_pads_asymm_1d_test.cpp
test/onnx/parse/conv_transpose_input_pads_asymm_1d_test.cpp
+0
-3
test/onnx/parse/conv_transpose_input_pads_asymm_test.cpp
test/onnx/parse/conv_transpose_input_pads_asymm_test.cpp
+0
-3
test/onnx/parse/conv_transpose_input_pads_strides_test.cpp
test/onnx/parse/conv_transpose_input_pads_strides_test.cpp
+0
-3
test/onnx/parse/conv_transpose_output_padding_3d_test.cpp
test/onnx/parse/conv_transpose_output_padding_3d_test.cpp
+0
-3
test/onnx/parse/conv_transpose_output_padding_test.cpp
test/onnx/parse/conv_transpose_output_padding_test.cpp
+0
-3
test/onnx/parse/conv_transpose_output_shape_3d_test.cpp
test/onnx/parse/conv_transpose_output_shape_3d_test.cpp
+0
-3
test/onnx/parse/conv_transpose_output_shape_test.cpp
test/onnx/parse/conv_transpose_output_shape_test.cpp
+0
-3
test/onnx/parse/conv_transpose_test.cpp
test/onnx/parse/conv_transpose_test.cpp
+0
-3
test/onnx/parse/convinteger_bias_test.cpp
test/onnx/parse/convinteger_bias_test.cpp
+0
-3
test/onnx/parse/cos_test.cpp
test/onnx/parse/cos_test.cpp
+0
-3
test/onnx/parse/cosh_test.cpp
test/onnx/parse/cosh_test.cpp
+0
-3
test/onnx/parse/depthtospace_crd_test.cpp
test/onnx/parse/depthtospace_crd_test.cpp
+0
-3
test/onnx/parse/depthtospace_simple_test.cpp
test/onnx/parse/depthtospace_simple_test.cpp
+0
-3
test/onnx/parse/depthtospace_test.cpp
test/onnx/parse/depthtospace_test.cpp
+0
-3
test/onnx/parse/dequantizelinear_axis_test.cpp
test/onnx/parse/dequantizelinear_axis_test.cpp
+0
-3
test/onnx/parse/dequantizelinear_neg_axis_test.cpp
test/onnx/parse/dequantizelinear_neg_axis_test.cpp
+0
-3
test/onnx/parse/dequantizelinear_test.cpp
test/onnx/parse/dequantizelinear_test.cpp
+0
-3
test/onnx/parse/dequantizelinear_zero_point_test.cpp
test/onnx/parse/dequantizelinear_zero_point_test.cpp
+0
-3
test/onnx/parse/dropout_test.cpp
test/onnx/parse/dropout_test.cpp
+0
-3
test/onnx/parse/dynamicquantizelinear_2d_test.cpp
test/onnx/parse/dynamicquantizelinear_2d_test.cpp
+0
-3
No files found.
test/onnx/parse/conv_transpose_input_pads_asymm_1d_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
conv_transpose_input_pads_asymm_1d_test
)
{
migraphx
::
program
p
;
...
...
@@ -19,5 +18,3 @@ TEST_CASE(conv_transpose_input_pads_asymm_1d_test)
auto
prog
=
optimize_onnx
(
"conv_transpose_input_pads_asymm_1d_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/conv_transpose_input_pads_asymm_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
conv_transpose_input_pads_asymm_test
)
{
migraphx
::
program
p
;
...
...
@@ -18,5 +17,3 @@ TEST_CASE(conv_transpose_input_pads_asymm_test)
auto
prog
=
optimize_onnx
(
"conv_transpose_input_pads_asymm_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/conv_transpose_input_pads_strides_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
conv_transpose_input_pads_strides_test
)
{
migraphx
::
program
p
;
...
...
@@ -16,5 +15,3 @@ TEST_CASE(conv_transpose_input_pads_strides_test)
auto
prog
=
optimize_onnx
(
"conv_transpose_input_pads_strides_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/conv_transpose_output_padding_3d_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
conv_transpose_output_padding_3d_test
)
{
migraphx
::
program
p
;
...
...
@@ -18,5 +17,3 @@ TEST_CASE(conv_transpose_output_padding_3d_test)
auto
prog
=
optimize_onnx
(
"conv_transpose_output_padding_3d_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/conv_transpose_output_padding_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
conv_transpose_output_padding_test
)
{
migraphx
::
program
p
;
...
...
@@ -17,5 +16,3 @@ TEST_CASE(conv_transpose_output_padding_test)
auto
prog
=
optimize_onnx
(
"conv_transpose_output_padding_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/conv_transpose_output_shape_3d_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
conv_transpose_output_shape_3d_test
)
{
migraphx
::
program
p
;
...
...
@@ -18,5 +17,3 @@ TEST_CASE(conv_transpose_output_shape_3d_test)
auto
prog
=
optimize_onnx
(
"conv_transpose_output_shape_3d_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/conv_transpose_output_shape_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
conv_transpose_output_shape_test
)
{
migraphx
::
program
p
;
...
...
@@ -17,5 +16,3 @@ TEST_CASE(conv_transpose_output_shape_test)
auto
prog
=
optimize_onnx
(
"conv_transpose_output_shape_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/conv_transpose_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
conv_transpose_test
)
{
migraphx
::
program
p
;
...
...
@@ -13,5 +12,3 @@ TEST_CASE(conv_transpose_test)
auto
prog
=
optimize_onnx
(
"conv_transpose_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/convinteger_bias_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
convinteger_bias_test
)
{
migraphx
::
program
p
;
...
...
@@ -18,5 +17,3 @@ TEST_CASE(convinteger_bias_test)
auto
prog
=
optimize_onnx
(
"convinteger_bias_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/cos_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
cos_test
)
{
migraphx
::
program
p
;
...
...
@@ -12,5 +11,3 @@ TEST_CASE(cos_test)
auto
prog
=
optimize_onnx
(
"cos_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/cosh_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
cosh_test
)
{
migraphx
::
program
p
;
...
...
@@ -13,5 +12,3 @@ TEST_CASE(cosh_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/depthtospace_crd_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
depthtospace_crd_test
)
{
migraphx
::
program
p
;
...
...
@@ -15,5 +14,3 @@ TEST_CASE(depthtospace_crd_test)
auto
prog
=
optimize_onnx
(
"depthtospace_crd_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/depthtospace_simple_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
depthtospace_simple_test
)
{
migraphx
::
program
p
;
...
...
@@ -15,5 +14,3 @@ TEST_CASE(depthtospace_simple_test)
auto
prog
=
optimize_onnx
(
"depthtospace_simple_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/depthtospace_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
depthtospace_test
)
{
migraphx
::
program
p
;
...
...
@@ -15,5 +14,3 @@ TEST_CASE(depthtospace_test)
auto
prog
=
optimize_onnx
(
"depthtospace_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/dequantizelinear_axis_test.cpp
View file @
f9691e2e
...
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test_utils.hpp>
TEST_CASE
(
dequantizelinear_axis_test
)
{
migraphx
::
program
p
=
make_dequantizelinear_axis_prog
();
...
...
@@ -10,5 +9,3 @@ TEST_CASE(dequantizelinear_axis_test)
auto
prog
=
optimize_onnx
(
"dequantizelinear_axis_test.onnx"
,
true
);
EXPECT
(
p
.
sort
()
==
prog
.
sort
());
}
test/onnx/parse/dequantizelinear_neg_axis_test.cpp
View file @
f9691e2e
...
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test_utils.hpp>
TEST_CASE
(
dequantizelinear_neg_axis_test
)
{
migraphx
::
program
p
=
make_dequantizelinear_axis_prog
();
...
...
@@ -10,5 +9,3 @@ TEST_CASE(dequantizelinear_neg_axis_test)
auto
prog
=
optimize_onnx
(
"dequantizelinear_neg_axis_test.onnx"
,
true
);
EXPECT
(
p
.
sort
()
==
prog
.
sort
());
}
test/onnx/parse/dequantizelinear_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
dequantizelinear_test
)
{
migraphx
::
program
p
;
...
...
@@ -19,5 +18,3 @@ TEST_CASE(dequantizelinear_test)
auto
prog
=
optimize_onnx
(
"dequantizelinear_test.onnx"
,
true
);
EXPECT
(
p
.
sort
()
==
prog
.
sort
());
}
test/onnx/parse/dequantizelinear_zero_point_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
dequantizelinear_zero_point_test
)
{
migraphx
::
program
p
;
...
...
@@ -28,5 +27,3 @@ TEST_CASE(dequantizelinear_zero_point_test)
auto
prog
=
optimize_onnx
(
"dequantizelinear_zero_point_test.onnx"
,
true
);
EXPECT
(
p
.
sort
()
==
prog
.
sort
());
}
test/onnx/parse/dropout_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
dropout_test
)
{
migraphx
::
program
p
;
...
...
@@ -16,5 +15,3 @@ TEST_CASE(dropout_test)
auto
prog
=
migraphx
::
parse_onnx
(
"dropout_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/dynamicquantizelinear_2d_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
dynamicquantizelinear_2d_test
)
{
migraphx
::
program
p
;
...
...
@@ -45,5 +44,3 @@ TEST_CASE(dynamicquantizelinear_2d_test)
auto
prog
=
optimize_onnx
(
"dynamicquantizelinear_2d_test.onnx"
);
EXPECT
(
p
==
prog
);
}
Prev
1
2
3
4
5
6
7
8
9
10
…
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