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
composable_kernel_ROCM
Commits
cf08df6b
Unverified
Commit
cf08df6b
authored
Sep 09, 2024
by
Thomas Ning
Committed by
GitHub
Sep 09, 2024
Browse files
fix the unsupported scenario of Ali TestGemmUniversal (#1501)
parent
caacd388
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
example/01_gemm/run_gemm_example.inc
example/01_gemm/run_gemm_example.inc
+8
-0
No files found.
example/01_gemm/run_gemm_example.inc
View file @
cf08df6b
...
@@ -305,6 +305,14 @@ bool run_gemm(const ProblemType& problem_size, const ExecutionConfig& config)
...
@@ -305,6 +305,14 @@ bool run_gemm(const ProblemType& problem_size, const ExecutionConfig& config)
}
}
#endif
#endif
}
}
else
{
// When the Problem Type and Problem Size does not fit.
std
::
cerr
<<
gemm
.
GetTypeString
()
<<
": the instance does not support the problem config."
<<
std
::
endl
;
return
true
;
}
std
::
size_t
flop
=
2_
uz
*
M
*
N
*
K
;
std
::
size_t
flop
=
2_
uz
*
M
*
N
*
K
;
std
::
size_t
num_btype
=
std
::
size_t
num_btype
=
...
...
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