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/split_test.cpp
test/onnx/parse/split_test.cpp
+0
-3
test/onnx/parse/split_test_default.cpp
test/onnx/parse/split_test_default.cpp
+0
-3
test/onnx/parse/split_test_invalid_num_outputs.cpp
test/onnx/parse/split_test_invalid_num_outputs.cpp
+0
-3
test/onnx/parse/split_test_invalid_split.cpp
test/onnx/parse/split_test_invalid_split.cpp
+0
-3
test/onnx/parse/split_test_no_attribute.cpp
test/onnx/parse/split_test_no_attribute.cpp
+0
-3
test/onnx/parse/split_test_no_attribute_invalid_input_split.cpp
...nnx/parse/split_test_no_attribute_invalid_input_split.cpp
+0
-3
test/onnx/parse/split_test_no_attribute_invalid_split.cpp
test/onnx/parse/split_test_no_attribute_invalid_split.cpp
+0
-3
test/onnx/parse/split_test_uneven.cpp
test/onnx/parse/split_test_uneven.cpp
+0
-3
test/onnx/parse/split_test_uneven_num_outputs.cpp
test/onnx/parse/split_test_uneven_num_outputs.cpp
+0
-3
test/onnx/parse/sqrt_test.cpp
test/onnx/parse/sqrt_test.cpp
+0
-3
test/onnx/parse/squeeze_axes_input_test.cpp
test/onnx/parse/squeeze_axes_input_test.cpp
+0
-3
test/onnx/parse/squeeze_empty_axes_test.cpp
test/onnx/parse/squeeze_empty_axes_test.cpp
+0
-3
test/onnx/parse/squeeze_unsqueeze_dyn_test.cpp
test/onnx/parse/squeeze_unsqueeze_dyn_test.cpp
+0
-3
test/onnx/parse/squeeze_unsqueeze_test.cpp
test/onnx/parse/squeeze_unsqueeze_test.cpp
+0
-3
test/onnx/parse/sub_bcast_test.cpp
test/onnx/parse/sub_bcast_test.cpp
+0
-3
test/onnx/parse/sub_scalar_test.cpp
test/onnx/parse/sub_scalar_test.cpp
+0
-3
test/onnx/parse/sum_int_test.cpp
test/onnx/parse/sum_int_test.cpp
+0
-3
test/onnx/parse/sum_test.cpp
test/onnx/parse/sum_test.cpp
+0
-3
test/onnx/parse/sum_type_test.cpp
test/onnx/parse/sum_type_test.cpp
+0
-3
test/onnx/parse/tan_test.cpp
test/onnx/parse/tan_test.cpp
+0
-3
No files found.
test/onnx/parse/split_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
split_test
)
{
migraphx
::
program
p
;
...
...
@@ -18,5 +17,3 @@ TEST_CASE(split_test)
auto
prog
=
migraphx
::
parse_onnx
(
"split_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/split_test_default.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
split_test_default
)
{
migraphx
::
program
p
;
...
...
@@ -16,5 +15,3 @@ TEST_CASE(split_test_default)
auto
prog
=
migraphx
::
parse_onnx
(
"split_test_default.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/split_test_invalid_num_outputs.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
split_test_invalid_num_outputs
)
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"split_test_invalid_num_outputs.onnx"
);
}));
}
test/onnx/parse/split_test_invalid_split.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
split_test_invalid_split
)
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"split_test_invalid_split.onnx"
);
}));
}
test/onnx/parse/split_test_no_attribute.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
split_test_no_attribute
)
{
migraphx
::
program
p
;
...
...
@@ -26,5 +25,3 @@ TEST_CASE(split_test_no_attribute)
auto
prog
=
migraphx
::
parse_onnx
(
"split_test_no_attribute.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/split_test_no_attribute_invalid_input_split.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
split_test_no_attribute_invalid_input_split
)
{
EXPECT
(
test
::
throws
(
[
&
]
{
migraphx
::
parse_onnx
(
"split_test_no_attribute_invalid_input_split.onnx"
);
}));
}
test/onnx/parse/split_test_no_attribute_invalid_split.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
split_test_no_attribute_invalid_split
)
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"split_test_no_attribute_invalid_split.onnx"
);
}));
}
test/onnx/parse/split_test_uneven.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
split_test_uneven
)
{
migraphx
::
program
p
;
...
...
@@ -22,5 +21,3 @@ TEST_CASE(split_test_uneven)
auto
prog
=
migraphx
::
parse_onnx
(
"split_test_uneven.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/split_test_uneven_num_outputs.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
split_test_uneven_num_outputs
)
{
migraphx
::
program
p
;
...
...
@@ -20,5 +19,3 @@ TEST_CASE(split_test_uneven_num_outputs)
auto
prog
=
migraphx
::
parse_onnx
(
"split_test_uneven_num_outputs.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/sqrt_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
sqrt_test
)
{
migraphx
::
program
p
;
...
...
@@ -12,5 +11,3 @@ TEST_CASE(sqrt_test)
auto
prog
=
optimize_onnx
(
"sqrt_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/squeeze_axes_input_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
squeeze_axes_input_test
)
{
migraphx
::
program
p
;
...
...
@@ -15,5 +14,3 @@ TEST_CASE(squeeze_axes_input_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/squeeze_empty_axes_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
squeeze_empty_axes_test
)
{
migraphx
::
program
p
;
...
...
@@ -15,5 +14,3 @@ TEST_CASE(squeeze_empty_axes_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/squeeze_unsqueeze_dyn_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
squeeze_unsqueeze_dyn_test
)
{
migraphx
::
program
p
;
...
...
@@ -23,5 +22,3 @@ TEST_CASE(squeeze_unsqueeze_dyn_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/squeeze_unsqueeze_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
squeeze_unsqueeze_test
)
{
migraphx
::
program
p
;
...
...
@@ -16,5 +15,3 @@ TEST_CASE(squeeze_unsqueeze_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/sub_bcast_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
sub_bcast_test
)
{
migraphx
::
program
p
;
...
...
@@ -16,5 +15,3 @@ TEST_CASE(sub_bcast_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/sub_scalar_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
sub_scalar_test
)
{
migraphx
::
program
p
;
...
...
@@ -15,5 +14,3 @@ TEST_CASE(sub_scalar_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/sum_int_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
sum_int_test
)
{
migraphx
::
program
p
;
...
...
@@ -23,5 +22,3 @@ TEST_CASE(sum_int_test)
auto
prog
=
optimize_onnx
(
"sum_int_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/sum_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
sum_test
)
{
migraphx
::
program
p
;
...
...
@@ -15,5 +14,3 @@ TEST_CASE(sum_test)
auto
prog
=
optimize_onnx
(
"sum_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/sum_type_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
sum_type_test
)
{
migraphx
::
program
p
;
...
...
@@ -51,5 +50,3 @@ TEST_CASE(sum_type_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/tan_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
tan_test
)
{
migraphx
::
program
p
;
...
...
@@ -12,5 +11,3 @@ TEST_CASE(tan_test)
auto
prog
=
optimize_onnx
(
"tan_test.onnx"
);
EXPECT
(
p
==
prog
);
}
Prev
1
…
19
20
21
22
23
24
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