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/castlike_error_test.cpp
test/onnx/parse/castlike_error_test.cpp
+0
-3
test/onnx/parse/castlike_test.cpp
test/onnx/parse/castlike_test.cpp
+0
-3
test/onnx/parse/ceil_test.cpp
test/onnx/parse/ceil_test.cpp
+0
-3
test/onnx/parse/celu_alpha_test.cpp
test/onnx/parse/celu_alpha_test.cpp
+0
-3
test/onnx/parse/celu_default_test.cpp
test/onnx/parse/celu_default_test.cpp
+0
-3
test/onnx/parse/celu_wrong_type_test.cpp
test/onnx/parse/celu_wrong_type_test.cpp
+0
-3
test/onnx/parse/celu_zero_alpha_test.cpp
test/onnx/parse/celu_zero_alpha_test.cpp
+0
-3
test/onnx/parse/clip_dyn_min_max_test.cpp
test/onnx/parse/clip_dyn_min_max_test.cpp
+0
-3
test/onnx/parse/clip_dyn_min_only_test.cpp
test/onnx/parse/clip_dyn_min_only_test.cpp
+0
-3
test/onnx/parse/clip_test.cpp
test/onnx/parse/clip_test.cpp
+0
-3
test/onnx/parse/clip_test_args_type_mismatch.cpp
test/onnx/parse/clip_test_args_type_mismatch.cpp
+0
-3
test/onnx/parse/clip_test_op11.cpp
test/onnx/parse/clip_test_op11.cpp
+0
-3
test/onnx/parse/clip_test_op11_max_only.cpp
test/onnx/parse/clip_test_op11_max_only.cpp
+0
-3
test/onnx/parse/clip_test_op11_min_only.cpp
test/onnx/parse/clip_test_op11_min_only.cpp
+0
-3
test/onnx/parse/clip_test_op11_no_args.cpp
test/onnx/parse/clip_test_op11_no_args.cpp
+0
-3
test/onnx/parse/clip_test_op11_no_args1.cpp
test/onnx/parse/clip_test_op11_no_args1.cpp
+0
-3
test/onnx/parse/concat_dyn_test.cpp
test/onnx/parse/concat_dyn_test.cpp
+0
-3
test/onnx/parse/concat_test.cpp
test/onnx/parse/concat_test.cpp
+0
-3
test/onnx/parse/const_of_shape_default_test.cpp
test/onnx/parse/const_of_shape_default_test.cpp
+0
-3
test/onnx/parse/const_of_shape_dyn_float_test.cpp
test/onnx/parse/const_of_shape_dyn_float_test.cpp
+0
-3
No files found.
test/onnx/parse/castlike_error_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
castlike_error_test
)
TEST_CASE
(
castlike_error_test
)
{
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"castlike_error_test.onnx"
);
}));
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"castlike_error_test.onnx"
);
}));
}
}
test/onnx/parse/castlike_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
castlike_test
)
TEST_CASE
(
castlike_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -16,5 +15,3 @@ TEST_CASE(castlike_test)
...
@@ -16,5 +15,3 @@ TEST_CASE(castlike_test)
auto
prog
=
optimize_onnx
(
"castlike_test.onnx"
);
auto
prog
=
optimize_onnx
(
"castlike_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/ceil_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
ceil_test
)
TEST_CASE
(
ceil_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(ceil_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(ceil_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/celu_alpha_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <onnx_test_utils.hpp>
#include <onnx_test_utils.hpp>
TEST_CASE
(
celu_alpha_test
)
TEST_CASE
(
celu_alpha_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -15,5 +14,3 @@ TEST_CASE(celu_alpha_test)
...
@@ -15,5 +14,3 @@ TEST_CASE(celu_alpha_test)
auto
prog
=
optimize_onnx
(
"celu_alpha_test.onnx"
);
auto
prog
=
optimize_onnx
(
"celu_alpha_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/celu_default_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <onnx_test_utils.hpp>
#include <onnx_test_utils.hpp>
TEST_CASE
(
celu_default_test
)
TEST_CASE
(
celu_default_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -15,5 +14,3 @@ TEST_CASE(celu_default_test)
...
@@ -15,5 +14,3 @@ TEST_CASE(celu_default_test)
auto
prog
=
optimize_onnx
(
"celu_default_test.onnx"
);
auto
prog
=
optimize_onnx
(
"celu_default_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/celu_wrong_type_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
celu_wrong_type_test
)
TEST_CASE
(
celu_wrong_type_test
)
{
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"celu_wrong_type_test.onnx"
);
}));
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"celu_wrong_type_test.onnx"
);
}));
}
}
test/onnx/parse/celu_zero_alpha_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
celu_zero_alpha_test
)
TEST_CASE
(
celu_zero_alpha_test
)
{
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"celu_zero_alpha_test.onnx"
);
}));
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"celu_zero_alpha_test.onnx"
);
}));
}
}
test/onnx/parse/clip_dyn_min_max_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
clip_dyn_min_max_test
)
TEST_CASE
(
clip_dyn_min_max_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -23,5 +22,3 @@ TEST_CASE(clip_dyn_min_max_test)
...
@@ -23,5 +22,3 @@ TEST_CASE(clip_dyn_min_max_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/clip_dyn_min_only_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
clip_dyn_min_only_test
)
TEST_CASE
(
clip_dyn_min_only_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -20,5 +19,3 @@ TEST_CASE(clip_dyn_min_only_test)
...
@@ -20,5 +19,3 @@ TEST_CASE(clip_dyn_min_only_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/clip_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
clip_test
)
TEST_CASE
(
clip_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -18,5 +17,3 @@ TEST_CASE(clip_test)
...
@@ -18,5 +17,3 @@ TEST_CASE(clip_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/clip_test_args_type_mismatch.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
clip_test_args_type_mismatch
)
TEST_CASE
(
clip_test_args_type_mismatch
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -23,5 +22,3 @@ TEST_CASE(clip_test_args_type_mismatch)
...
@@ -23,5 +22,3 @@ TEST_CASE(clip_test_args_type_mismatch)
auto
prog
=
migraphx
::
parse_onnx
(
"clip_test_args_type_mismatch.onnx"
);
auto
prog
=
migraphx
::
parse_onnx
(
"clip_test_args_type_mismatch.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/clip_test_op11.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
clip_test_op11
)
TEST_CASE
(
clip_test_op11
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -18,5 +17,3 @@ TEST_CASE(clip_test_op11)
...
@@ -18,5 +17,3 @@ TEST_CASE(clip_test_op11)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/clip_test_op11_max_only.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
clip_test_op11_max_only
)
TEST_CASE
(
clip_test_op11_max_only
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -18,5 +17,3 @@ TEST_CASE(clip_test_op11_max_only)
...
@@ -18,5 +17,3 @@ TEST_CASE(clip_test_op11_max_only)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/clip_test_op11_min_only.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
clip_test_op11_min_only
)
TEST_CASE
(
clip_test_op11_min_only
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -15,5 +14,3 @@ TEST_CASE(clip_test_op11_min_only)
...
@@ -15,5 +14,3 @@ TEST_CASE(clip_test_op11_min_only)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/clip_test_op11_no_args.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
clip_test_op11_no_args
)
TEST_CASE
(
clip_test_op11_no_args
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -12,5 +11,3 @@ TEST_CASE(clip_test_op11_no_args)
...
@@ -12,5 +11,3 @@ TEST_CASE(clip_test_op11_no_args)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/clip_test_op11_no_args1.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
clip_test_op11_no_args1
)
TEST_CASE
(
clip_test_op11_no_args1
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -15,5 +14,3 @@ TEST_CASE(clip_test_op11_no_args1)
...
@@ -15,5 +14,3 @@ TEST_CASE(clip_test_op11_no_args1)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/concat_dyn_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
concat_dyn_test
)
TEST_CASE
(
concat_dyn_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -20,5 +19,3 @@ TEST_CASE(concat_dyn_test)
...
@@ -20,5 +19,3 @@ TEST_CASE(concat_dyn_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/concat_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
concat_test
)
TEST_CASE
(
concat_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(concat_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(concat_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/const_of_shape_default_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
const_of_shape_default_test
)
TEST_CASE
(
const_of_shape_default_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -15,5 +14,3 @@ TEST_CASE(const_of_shape_default_test)
...
@@ -15,5 +14,3 @@ TEST_CASE(const_of_shape_default_test)
auto
prog
=
optimize_onnx
(
"const_of_shape_default_test.onnx"
);
auto
prog
=
optimize_onnx
(
"const_of_shape_default_test.onnx"
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/const_of_shape_dyn_float_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
const_of_shape_dyn_float_test
)
TEST_CASE
(
const_of_shape_dyn_float_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -19,5 +18,3 @@ TEST_CASE(const_of_shape_dyn_float_test)
...
@@ -19,5 +18,3 @@ TEST_CASE(const_of_shape_dyn_float_test)
auto
prog
=
parse_onnx
(
"const_of_shape_dyn_float_test.onnx"
,
options
);
auto
prog
=
parse_onnx
(
"const_of_shape_dyn_float_test.onnx"
,
options
);
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
Prev
1
2
3
4
5
6
7
…
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