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
"tests/models/olmo/__init__.py" did not exist on "0bab55d5d52e4d538888980d05d73acc6da6274a"
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/randomuniform_generated_seed_test.cpp
test/onnx/parse/randomuniform_generated_seed_test.cpp
+0
-3
test/onnx/parse/randomuniform_shape_error_test.cpp
test/onnx/parse/randomuniform_shape_error_test.cpp
+0
-3
test/onnx/parse/randomuniform_test.cpp
test/onnx/parse/randomuniform_test.cpp
+0
-3
test/onnx/parse/randomuniformlike_test.cpp
test/onnx/parse/randomuniformlike_test.cpp
+0
-3
test/onnx/parse/randomuniformlike_type_error_test.cpp
test/onnx/parse/randomuniformlike_type_error_test.cpp
+0
-3
test/onnx/parse/range_float_test.cpp
test/onnx/parse/range_float_test.cpp
+0
-3
test/onnx/parse/range_test.cpp
test/onnx/parse/range_test.cpp
+0
-3
test/onnx/parse/recip_test.cpp
test/onnx/parse/recip_test.cpp
+0
-3
test/onnx/parse/reduce_log_sum_exp_test.cpp
test/onnx/parse/reduce_log_sum_exp_test.cpp
+0
-3
test/onnx/parse/reduce_log_sum_test.cpp
test/onnx/parse/reduce_log_sum_test.cpp
+0
-3
test/onnx/parse/reducel1_dyn_test.cpp
test/onnx/parse/reducel1_dyn_test.cpp
+0
-3
test/onnx/parse/reducel1_test.cpp
test/onnx/parse/reducel1_test.cpp
+0
-3
test/onnx/parse/reducel2_test.cpp
test/onnx/parse/reducel2_test.cpp
+0
-3
test/onnx/parse/reducemax_dyn_test.cpp
test/onnx/parse/reducemax_dyn_test.cpp
+0
-3
test/onnx/parse/reducemax_test.cpp
test/onnx/parse/reducemax_test.cpp
+0
-3
test/onnx/parse/reducemean_keepdims_test.cpp
test/onnx/parse/reducemean_keepdims_test.cpp
+0
-3
test/onnx/parse/reducemean_test.cpp
test/onnx/parse/reducemean_test.cpp
+0
-3
test/onnx/parse/reducemin_test.cpp
test/onnx/parse/reducemin_test.cpp
+0
-3
test/onnx/parse/reduceprod_test.cpp
test/onnx/parse/reduceprod_test.cpp
+0
-3
test/onnx/parse/reducesum_empty_axes_test.cpp
test/onnx/parse/reducesum_empty_axes_test.cpp
+0
-3
No files found.
test/onnx/parse/randomuniform_generated_seed_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
randomuniform_generated_seed_test
)
TEST_CASE
(
randomuniform_generated_seed_test
)
{
{
auto
p1
=
optimize_onnx
(
"randomuniform_generated_seed_test.onnx"
);
auto
p1
=
optimize_onnx
(
"randomuniform_generated_seed_test.onnx"
);
...
@@ -9,5 +8,3 @@ TEST_CASE(randomuniform_generated_seed_test)
...
@@ -9,5 +8,3 @@ TEST_CASE(randomuniform_generated_seed_test)
EXPECT
(
p1
!=
p2
);
EXPECT
(
p1
!=
p2
);
}
}
test/onnx/parse/randomuniform_shape_error_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
randomuniform_shape_error_test
)
TEST_CASE
(
randomuniform_shape_error_test
)
{
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"randomuniform_shape_error_test.onnx"
);
}));
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"randomuniform_shape_error_test.onnx"
);
}));
}
}
test/onnx/parse/randomuniform_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <random>
#include <random>
TEST_CASE
(
randomuniform_test
)
TEST_CASE
(
randomuniform_test
)
{
{
float
high
=
1.0
;
float
high
=
1.0
;
...
@@ -25,5 +24,3 @@ TEST_CASE(randomuniform_test)
...
@@ -25,5 +24,3 @@ TEST_CASE(randomuniform_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/randomuniformlike_test.cpp
View file @
f9691e2e
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
#include <onnx_test.hpp>
#include <onnx_test.hpp>
#include <random>
#include <random>
TEST_CASE
(
randomuniformlike_test
)
TEST_CASE
(
randomuniformlike_test
)
{
{
float
high
=
10.0
;
float
high
=
10.0
;
...
@@ -26,5 +25,3 @@ TEST_CASE(randomuniformlike_test)
...
@@ -26,5 +25,3 @@ TEST_CASE(randomuniformlike_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/randomuniformlike_type_error_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
randomuniformlike_type_error_test
)
TEST_CASE
(
randomuniformlike_type_error_test
)
{
{
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"randomuniformlike_type_error_test.onnx"
);
}));
EXPECT
(
test
::
throws
([
&
]
{
migraphx
::
parse_onnx
(
"randomuniformlike_type_error_test.onnx"
);
}));
}
}
test/onnx/parse/range_float_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
range_float_test
)
TEST_CASE
(
range_float_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -15,5 +14,3 @@ TEST_CASE(range_float_test)
...
@@ -15,5 +14,3 @@ TEST_CASE(range_float_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/range_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
range_test
)
TEST_CASE
(
range_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -15,5 +14,3 @@ TEST_CASE(range_test)
...
@@ -15,5 +14,3 @@ TEST_CASE(range_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/recip_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
recip_test
)
TEST_CASE
(
recip_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(recip_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(recip_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reduce_log_sum_exp_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reduce_log_sum_exp_test
)
TEST_CASE
(
reduce_log_sum_exp_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -14,5 +13,3 @@ TEST_CASE(reduce_log_sum_exp_test)
...
@@ -14,5 +13,3 @@ TEST_CASE(reduce_log_sum_exp_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reduce_log_sum_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reduce_log_sum_test
)
TEST_CASE
(
reduce_log_sum_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(reduce_log_sum_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(reduce_log_sum_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducel1_dyn_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducel1_dyn_test
)
TEST_CASE
(
reducel1_dyn_test
)
{
{
{
{
...
@@ -45,5 +44,3 @@ TEST_CASE(reducel1_dyn_test)
...
@@ -45,5 +44,3 @@ TEST_CASE(reducel1_dyn_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
}
}
test/onnx/parse/reducel1_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducel1_test
)
TEST_CASE
(
reducel1_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -14,5 +13,3 @@ TEST_CASE(reducel1_test)
...
@@ -14,5 +13,3 @@ TEST_CASE(reducel1_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducel2_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducel2_test
)
TEST_CASE
(
reducel2_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -15,5 +14,3 @@ TEST_CASE(reducel2_test)
...
@@ -15,5 +14,3 @@ TEST_CASE(reducel2_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducemax_dyn_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducemax_dyn_test
)
TEST_CASE
(
reducemax_dyn_test
)
{
{
// input shape with 4 dynamic dimensions
// input shape with 4 dynamic dimensions
...
@@ -19,5 +18,3 @@ TEST_CASE(reducemax_dyn_test)
...
@@ -19,5 +18,3 @@ TEST_CASE(reducemax_dyn_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducemax_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducemax_test
)
TEST_CASE
(
reducemax_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -12,5 +11,3 @@ TEST_CASE(reducemax_test)
...
@@ -12,5 +11,3 @@ TEST_CASE(reducemax_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducemean_keepdims_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducemean_keepdims_test
)
TEST_CASE
(
reducemean_keepdims_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -12,5 +11,3 @@ TEST_CASE(reducemean_keepdims_test)
...
@@ -12,5 +11,3 @@ TEST_CASE(reducemean_keepdims_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducemean_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducemean_test
)
TEST_CASE
(
reducemean_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(reducemean_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(reducemean_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducemin_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducemin_test
)
TEST_CASE
(
reducemin_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -13,5 +12,3 @@ TEST_CASE(reducemin_test)
...
@@ -13,5 +12,3 @@ TEST_CASE(reducemin_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reduceprod_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reduceprod_test
)
TEST_CASE
(
reduceprod_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -12,5 +11,3 @@ TEST_CASE(reduceprod_test)
...
@@ -12,5 +11,3 @@ TEST_CASE(reduceprod_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
test/onnx/parse/reducesum_empty_axes_test.cpp
View file @
f9691e2e
#include <onnx_test.hpp>
#include <onnx_test.hpp>
TEST_CASE
(
reducesum_empty_axes_test
)
TEST_CASE
(
reducesum_empty_axes_test
)
{
{
migraphx
::
program
p
;
migraphx
::
program
p
;
...
@@ -16,5 +15,3 @@ TEST_CASE(reducesum_empty_axes_test)
...
@@ -16,5 +15,3 @@ TEST_CASE(reducesum_empty_axes_test)
EXPECT
(
p
==
prog
);
EXPECT
(
p
==
prog
);
}
}
Prev
1
…
14
15
16
17
18
19
20
21
22
…
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