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
OpenDAS
tilelang
Commits
e3742d33
"examples/wuerstchen/vscode:/vscode.git/clone" did not exist on "4fbd310fd2bf89ade978da4c02da41ca14bd1194"
Unverified
Commit
e3742d33
authored
Oct 16, 2025
by
Yichen Yan
Committed by
GitHub
Oct 16, 2025
Browse files
Allow mma gemm for all cuda (#1047)
parent
0ff4f427
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
src/op/gemm.cc
src/op/gemm.cc
+1
-3
No files found.
src/op/gemm.cc
View file @
e3742d33
...
@@ -194,9 +194,7 @@ GemmInst GemmNode::GetGemmInst(int block_size, Target target) const {
...
@@ -194,9 +194,7 @@ GemmInst GemmNode::GetGemmInst(int block_size, Target target) const {
return
GemmInst
::
kWGMMA
;
return
GemmInst
::
kWGMMA
;
}
else
if
(
TargetIsCDNA
(
target
))
{
}
else
if
(
TargetIsCDNA
(
target
))
{
return
GemmInst
::
kMFMA
;
return
GemmInst
::
kMFMA
;
}
else
if
(
TargetIsVolta
(
target
)
||
TargetIsAmpere
(
target
)
||
}
else
if
(
TargetIsCuda
(
target
))
{
TargetIsTuring
(
target
)
||
TargetIsHopper
(
target
)
||
TargetIsSm100
(
target
))
{
return
GemmInst
::
kMMA
;
return
GemmInst
::
kMMA
;
}
else
{
}
else
{
ICHECK
(
0
)
<<
"Unsupported target for gemm: "
<<
target
->
str
();
ICHECK
(
0
)
<<
"Unsupported target for gemm: "
<<
target
->
str
();
...
...
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