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
fd6e1f1f
"test/ut/sdk/test_protocol.py" did not exist on "892d3c1ee469be78d67b23a7c0229d1c57dcea3c"
Commit
fd6e1f1f
authored
Oct 25, 2023
by
Artur Wojcik
Browse files
Merge branch 'develop' into uif2-initial
parents
201dd395
52203fa4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
CMakeLists.txt
CMakeLists.txt
+2
-1
src/onnx/parse_slice.cpp
src/onnx/parse_slice.cpp
+1
-1
test/onnx/.onnxrt-commit
test/onnx/.onnxrt-commit
+1
-1
No files found.
CMakeLists.txt
View file @
fd6e1f1f
...
...
@@ -85,7 +85,8 @@ include(ROCMSetupVersion)
option
(
BUILD_DEV
"Build for development purpose only"
OFF
)
rocm_setup_version
(
VERSION 2.8.0
)
set
(
MIGRAPHX_SO_VERSION
${
PROJECT_VERSION_MAJOR
}
.
${
PROJECT_VERSION_MINOR
}
)
math
(
EXPR MIGRAPHX_SO_MAJOR_VERSION
"(
${
PROJECT_VERSION_MAJOR
}
* 1000 * 1000) + (
${
PROJECT_VERSION_MINOR
}
* 1000) +
${
PROJECT_VERSION_PATCH
}
"
)
set
(
MIGRAPHX_SO_VERSION
${
MIGRAPHX_SO_MAJOR_VERSION
}
.0
)
option
(
BUILD_SHARED_LIBS
"Build as a shared library"
ON
)
...
...
src/onnx/parse_slice.cpp
View file @
fd6e1f1f
...
...
@@ -137,7 +137,7 @@ struct parse_slice : op_parser<parse_slice>
sd
.
always_insert
(
args
.
at
(
0
));
// If axes arg is not given, the default is all of them.
if
(
sd
.
op
.
axes
.
empty
()
and
sd
.
op_args
.
size
()
<
3
)
if
(
sd
.
op
.
axes
.
empty
()
and
sd
.
op_args
.
size
()
<
=
3
)
{
std
::
vector
<
int64_t
>
axes
(
args
[
0
]
->
get_shape
().
ndim
());
std
::
iota
(
axes
.
begin
(),
axes
.
end
(),
int64_t
{
0
});
...
...
test/onnx/.onnxrt-commit
View file @
fd6e1f1f
635d3faa3b3908d2806d009dc6872152cfcfcdda
cc7e8cc21f83df3a41d9736dba9211bb832764ad
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