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
"pretrain_t5.py" did not exist on "abe36e2e5fb9104eca2456945e12b49f93fce475"
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/group_norm_missing_attribute_error_test.cpp
test/onnx/parse/group_norm_missing_attribute_error_test.cpp
+0
-3
test/onnx/parse/group_norm_small_eps_half_test.cpp
test/onnx/parse/group_norm_small_eps_half_test.cpp
+0
-3
test/onnx/parse/hardsigmoid_default_test.cpp
test/onnx/parse/hardsigmoid_default_test.cpp
+0
-3
test/onnx/parse/hardsigmoid_double_test.cpp
test/onnx/parse/hardsigmoid_double_test.cpp
+0
-3
test/onnx/parse/hardsigmoid_half_test.cpp
test/onnx/parse/hardsigmoid_half_test.cpp
+0
-3
test/onnx/parse/hardswish_test.cpp
test/onnx/parse/hardswish_test.cpp
+0
-3
test/onnx/parse/if_else_test.cpp
test/onnx/parse/if_else_test.cpp
+0
-3
test/onnx/parse/if_else_test_inlined.cpp
test/onnx/parse/if_else_test_inlined.cpp
+0
-3
test/onnx/parse/if_literal_test.cpp
test/onnx/parse/if_literal_test.cpp
+0
-3
test/onnx/parse/if_param_excp1_test.cpp
test/onnx/parse/if_param_excp1_test.cpp
+0
-3
test/onnx/parse/if_param_excp_test.cpp
test/onnx/parse/if_param_excp_test.cpp
+0
-3
test/onnx/parse/if_param_test.cpp
test/onnx/parse/if_param_test.cpp
+0
-3
test/onnx/parse/if_pl_test.cpp
test/onnx/parse/if_pl_test.cpp
+0
-3
test/onnx/parse/if_then_else_multi_output_shapes_inlined_test.cpp
...x/parse/if_then_else_multi_output_shapes_inlined_test.cpp
+0
-3
test/onnx/parse/if_then_else_multi_output_shapes_test.cpp
test/onnx/parse/if_then_else_multi_output_shapes_test.cpp
+0
-3
test/onnx/parse/if_then_test.cpp
test/onnx/parse/if_then_test.cpp
+0
-3
test/onnx/parse/if_then_test_inlined.cpp
test/onnx/parse/if_then_test_inlined.cpp
+0
-3
test/onnx/parse/if_tuple_test.cpp
test/onnx/parse/if_tuple_test.cpp
+0
-3
test/onnx/parse/imagescaler_half_test.cpp
test/onnx/parse/imagescaler_half_test.cpp
+0
-3
test/onnx/parse/imagescaler_test.cpp
test/onnx/parse/imagescaler_test.cpp
+0
-3
No files found.
test/onnx/parse/group_norm_missing_attribute_error_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
group_norm_missing_attribute_error_test
)
{
EXPECT
(
test
::
throws
(
[
&
]
{
migraphx
::
parse_onnx
(
"group_norm_missing_attribute_error_test.onnx"
);
}));
}
test/onnx/parse/group_norm_small_eps_half_test.cpp
View file @
f9691e2e
...
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test_utils.hpp>
TEST_CASE
(
group_norm_small_eps_half_test
)
{
migraphx
::
program
p
=
make_group_norm
(
...
...
@@ -10,5 +9,3 @@ TEST_CASE(group_norm_small_eps_half_test)
auto
prog
=
optimize_onnx
(
"group_norm_small_eps_half_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/hardsigmoid_default_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
hardsigmoid_default_test
)
{
migraphx
::
program
p
;
...
...
@@ -34,5 +33,3 @@ TEST_CASE(hardsigmoid_default_test)
auto
prog
=
optimize_onnx
(
"hardsigmoid_default_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/hardsigmoid_double_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
hardsigmoid_double_test
)
{
migraphx
::
program
p
;
...
...
@@ -34,5 +33,3 @@ TEST_CASE(hardsigmoid_double_test)
auto
prog
=
optimize_onnx
(
"hardsigmoid_double_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/hardsigmoid_half_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
hardsigmoid_half_test
)
{
migraphx
::
program
p
;
...
...
@@ -34,5 +33,3 @@ TEST_CASE(hardsigmoid_half_test)
auto
prog
=
optimize_onnx
(
"hardsigmoid_half_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/hardswish_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
hardswish_test
)
{
migraphx
::
program
p
;
...
...
@@ -36,5 +35,3 @@ TEST_CASE(hardswish_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/if_else_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_else_test
)
{
migraphx
::
program
p
;
...
...
@@ -33,5 +32,3 @@ TEST_CASE(if_else_test)
auto
prog
=
migraphx
::
parse_onnx
(
"if_else_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/if_else_test_inlined.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_else_test_inlined
)
{
migraphx
::
program
p
;
...
...
@@ -26,5 +25,3 @@ TEST_CASE(if_else_test_inlined)
auto
prog
=
migraphx
::
parse_onnx
(
"if_else_test_inlined.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/if_literal_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_literal_test
)
{
migraphx
::
program
p
;
...
...
@@ -30,5 +29,3 @@ TEST_CASE(if_literal_test)
auto
prog
=
migraphx
::
parse_onnx
(
"if_literal_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/if_param_excp1_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_param_excp1_test
)
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"if_param_excp1_test.onnx"
);
}));
}
test/onnx/parse/if_param_excp_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_param_excp_test
)
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"if_param_excp_test.onnx"
);
}));
}
test/onnx/parse/if_param_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_param_test
)
{
migraphx
::
program
p
;
...
...
@@ -31,5 +30,3 @@ TEST_CASE(if_param_test)
auto
prog
=
migraphx
::
parse_onnx
(
"if_param_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/if_pl_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_pl_test
)
{
migraphx
::
program
p
;
...
...
@@ -36,5 +35,3 @@ TEST_CASE(if_pl_test)
auto
prog
=
migraphx
::
parse_onnx
(
"if_pl_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/if_then_else_multi_output_shapes_inlined_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_then_else_multi_output_shapes_inlined_test
)
{
migraphx
::
program
p
;
...
...
@@ -29,5 +28,3 @@ TEST_CASE(if_then_else_multi_output_shapes_inlined_test)
auto
prog
=
migraphx
::
parse_onnx
(
"if_then_else_multi_output_shapes_inlined_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/if_then_else_multi_output_shapes_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_then_else_multi_output_shapes_test
)
{
migraphx
::
program
p
;
...
...
@@ -37,5 +36,3 @@ TEST_CASE(if_then_else_multi_output_shapes_test)
auto
prog
=
migraphx
::
parse_onnx
(
"if_then_else_multi_output_shapes_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/if_then_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_then_test
)
{
migraphx
::
program
p
;
...
...
@@ -33,5 +32,3 @@ TEST_CASE(if_then_test)
auto
prog
=
migraphx
::
parse_onnx
(
"if_then_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/if_then_test_inlined.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_then_test_inlined
)
{
migraphx
::
program
p
;
...
...
@@ -27,5 +26,3 @@ TEST_CASE(if_then_test_inlined)
auto
prog
=
migraphx
::
parse_onnx
(
"if_then_test_inlined.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/if_tuple_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
if_tuple_test
)
{
migraphx
::
program
p
;
...
...
@@ -43,5 +42,3 @@ TEST_CASE(if_tuple_test)
auto
prog
=
migraphx
::
parse_onnx
(
"if_tuple_test.onnx"
);
EXPECT
(
p
==
prog
);
}
test/onnx/parse/imagescaler_half_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
imagescaler_half_test
)
{
migraphx
::
program
p
;
...
...
@@ -23,5 +22,3 @@ TEST_CASE(imagescaler_half_test)
EXPECT
(
p
==
prog
);
}
test/onnx/parse/imagescaler_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
TEST_CASE
(
imagescaler_test
)
{
migraphx
::
program
p
;
...
...
@@ -22,5 +21,3 @@ TEST_CASE(imagescaler_test)
EXPECT
(
p
==
prog
);
}
Prev
1
…
6
7
8
9
10
11
12
13
14
…
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