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/pad_3arg_test.cpp
test/onnx/parse/pad_3arg_test.cpp
+0
-3
test/onnx/parse/pad_4arg_axes_test.cpp
test/onnx/parse/pad_4arg_axes_test.cpp
+0
-3
test/onnx/parse/pad_4arg_invalid_axes_error_test.cpp
test/onnx/parse/pad_4arg_invalid_axes_error_test.cpp
+0
-3
test/onnx/parse/pad_4arg_neg_axes_test.cpp
test/onnx/parse/pad_4arg_neg_axes_test.cpp
+0
-3
test/onnx/parse/pad_asym_invalid_pads_error_test.cpp
test/onnx/parse/pad_asym_invalid_pads_error_test.cpp
+0
-3
test/onnx/parse/pad_asym_test.cpp
test/onnx/parse/pad_asym_test.cpp
+0
-3
test/onnx/parse/pad_attr_dyn_test.cpp
test/onnx/parse/pad_attr_dyn_test.cpp
+0
-3
test/onnx/parse/pad_cnst_dyn_test.cpp
test/onnx/parse/pad_cnst_dyn_test.cpp
+0
-3
test/onnx/parse/pad_dyn_reflect_error.cpp
test/onnx/parse/pad_dyn_reflect_error.cpp
+0
-3
test/onnx/parse/pad_reflect_multiaxis_test.cpp
test/onnx/parse/pad_reflect_multiaxis_test.cpp
+0
-3
test/onnx/parse/pad_reflect_test.cpp
test/onnx/parse/pad_reflect_test.cpp
+0
-3
test/onnx/parse/pad_reflect_with_axes_test.cpp
test/onnx/parse/pad_reflect_with_axes_test.cpp
+0
-3
test/onnx/parse/pad_test.cpp
test/onnx/parse/pad_test.cpp
+0
-3
test/onnx/parse/pow_fp32_i64_test.cpp
test/onnx/parse/pow_fp32_i64_test.cpp
+0
-3
test/onnx/parse/pow_i64_fp32_test.cpp
test/onnx/parse/pow_i64_fp32_test.cpp
+0
-3
test/onnx/parse/pow_test.cpp
test/onnx/parse/pow_test.cpp
+0
-3
test/onnx/parse/prefix_scan_sum_test.cpp
test/onnx/parse/prefix_scan_sum_test.cpp
+0
-3
test/onnx/parse/prelu_brcst_test.cpp
test/onnx/parse/prelu_brcst_test.cpp
+0
-3
test/onnx/parse/qlinearadd_test.cpp
test/onnx/parse/qlinearadd_test.cpp
+0
-3
test/onnx/parse/qlinearaveragepool_notset_test.cpp
test/onnx/parse/qlinearaveragepool_notset_test.cpp
+0
-3
No files found.
test/onnx/parse/pad_3arg_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_3arg_test
)
{
migraphx
::
program
p
;
...
...
@@ -17,5 +16,3 @@ TEST_CASE(pad_3arg_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pad_4arg_axes_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_4arg_axes_test
)
{
migraphx
::
program
p
;
...
...
@@ -21,5 +20,3 @@ TEST_CASE(pad_4arg_axes_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pad_4arg_invalid_axes_error_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_4arg_invalid_axes_error_test
)
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"pad_4arg_invalid_axes_error_test.onnx"
);
}));
}
test/onnx/parse/pad_4arg_neg_axes_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_4arg_neg_axes_test
)
{
migraphx
::
program
p
;
...
...
@@ -21,5 +20,3 @@ TEST_CASE(pad_4arg_neg_axes_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pad_asym_invalid_pads_error_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_asym_invalid_pads_error_test
)
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"pad_asym_invalid_pads_error_test.onnx"
);
}));
}
test/onnx/parse/pad_asym_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_asym_test
)
{
migraphx
::
program
p
;
...
...
@@ -12,5 +11,3 @@ TEST_CASE(pad_asym_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pad_attr_dyn_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_attr_dyn_test
)
{
migraphx
::
program
p
;
...
...
@@ -16,5 +15,3 @@ TEST_CASE(pad_attr_dyn_test)
auto
prog
=
parse_onnx
(
"pad_attr_dyn_test.onnx"
,
options
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pad_cnst_dyn_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_cnst_dyn_test
)
{
migraphx
::
program
p
;
...
...
@@ -17,5 +16,3 @@ TEST_CASE(pad_cnst_dyn_test)
auto
prog
=
parse_onnx
(
"pad_cnst_dyn_test.onnx"
,
options
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pad_dyn_reflect_error.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_dyn_reflect_error
)
{
migraphx
::
onnx_options
options
;
options
.
default_dyn_dim_value
=
{
2
,
4
,
{
2
}};
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"pad_dyn_reflect_error.onnx"
,
options
);
}));
}
test/onnx/parse/pad_reflect_multiaxis_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_reflect_multiaxis_test
)
{
migraphx
::
program
p
;
...
...
@@ -24,5 +23,3 @@ TEST_CASE(pad_reflect_multiaxis_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pad_reflect_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_reflect_test
)
{
migraphx
::
program
p
;
...
...
@@ -21,5 +20,3 @@ TEST_CASE(pad_reflect_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pad_reflect_with_axes_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_reflect_with_axes_test
)
{
migraphx
::
program
p
;
...
...
@@ -22,5 +21,3 @@ TEST_CASE(pad_reflect_with_axes_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pad_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pad_test
)
{
migraphx
::
program
p
;
...
...
@@ -12,5 +11,3 @@ TEST_CASE(pad_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pow_fp32_i64_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pow_fp32_i64_test
)
{
migraphx
::
program
p
;
...
...
@@ -17,5 +16,3 @@ TEST_CASE(pow_fp32_i64_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pow_i64_fp32_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pow_i64_fp32_test
)
{
migraphx
::
program
p
;
...
...
@@ -19,5 +18,3 @@ TEST_CASE(pow_i64_fp32_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/pow_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
pow_test
)
{
migraphx
::
program
p
;
...
...
@@ -14,5 +13,3 @@ TEST_CASE(pow_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/prefix_scan_sum_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
prefix_scan_sum
)
{
migraphx
::
program
p
;
...
...
@@ -16,5 +15,3 @@ TEST_CASE(prefix_scan_sum)
auto
prog
=
migraphx
::
parse_onnx
(
"prefix_scan_sum_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/prelu_brcst_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
prelu_brcst_test
)
{
migraphx
::
program
p
;
...
...
@@ -17,5 +16,3 @@ TEST_CASE(prelu_brcst_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/qlinearadd_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
qlinearadd_test
)
{
migraphx
::
program
p
;
...
...
@@ -54,5 +53,3 @@ TEST_CASE(qlinearadd_test)
EXPECT
(
p
.
sort
()
==
prog
.
sort
());
}
test/onnx/parse/qlinearaveragepool_notset_test.cpp
View file @
f9691e2e
...
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <migraphx/op/pooling.hpp>
TEST_CASE
(
qlinearaveragepool_notset_test
)
{
migraphx
::
program
p
;
...
...
@@ -50,5 +49,3 @@ TEST_CASE(qlinearaveragepool_notset_test)
EXPECT
(
p
==
prog
);
}
Prev
1
…
12
13
14
15
16
17
18
19
20
…
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