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
fe585d42
"src/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "953da9428cbb9e62d3e18f74ab10e07968dc3b94"
Commit
fe585d42
authored
Dec 03, 2023
by
Umang Yadav
Browse files
Disable FP8 tests for the non-gfx940 arches
parent
c522d47a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/targets/gpu/target.cpp
src/targets/gpu/target.cpp
+5
-0
No files found.
src/targets/gpu/target.cpp
View file @
fe585d42
...
...
@@ -112,6 +112,11 @@ std::vector<pass> target::get_passes(migraphx::context& gctx, const compile_opti
unsupported_fp8_ops
.
insert
(
"dot"
);
}
unsupported_fp8_ops
.
insert
(
"pooling"
);
if
(
not
starts_with
(
gpu
::
get_device_name
(),
"gfx94"
))
{
unsupported_fp8_ops
.
insert
(
"conv"
);
unsupported_fp8_ops
.
insert
(
"quant_conv"
);
}
// clang-format off
return
{
...
...
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