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
bc8eb7c9
Commit
bc8eb7c9
authored
Oct 28, 2023
by
Artur Wojcik
Browse files
remove support for miopenInt8x4 on Windows
parent
a9651b30
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
src/targets/gpu/include/migraphx/gpu/miopen.hpp
src/targets/gpu/include/migraphx/gpu/miopen.hpp
+7
-0
No files found.
src/targets/gpu/include/migraphx/gpu/miopen.hpp
View file @
bc8eb7c9
...
@@ -143,6 +143,7 @@ inline tensor_descriptor make_tensor(const migraphx::shape& os, bool pack = fals
...
@@ -143,6 +143,7 @@ inline tensor_descriptor make_tensor(const migraphx::shape& os, bool pack = fals
d
=
miopenInt32
;
d
=
miopenInt32
;
else
if
(
s
.
type
()
==
shape
::
int8_type
)
else
if
(
s
.
type
()
==
shape
::
int8_type
)
{
{
#ifndef _WIN32
if
(
pack
)
if
(
pack
)
{
{
// update the lens and corresponding strides
// update the lens and corresponding strides
...
@@ -154,6 +155,12 @@ inline tensor_descriptor make_tensor(const migraphx::shape& os, bool pack = fals
...
@@ -154,6 +155,12 @@ inline tensor_descriptor make_tensor(const migraphx::shape& os, bool pack = fals
{
{
d
=
miopenInt8
;
d
=
miopenInt8
;
}
}
#else
// MIGraphX on Windows is based on the most recent MIOpen.
// The support for miopenInt8x4 has been discontinued.
(
void
)
pack
;
d
=
miopenInt8
;
#endif
}
}
else
else
{
{
...
...
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