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
Commits
d9716db9
Commit
d9716db9
authored
Aug 30, 2022
by
Rosty Geyyer
Browse files
Add debug info to DeviceGemmXdl
parent
d780f778
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
include/ck/tensor_operation/gpu/device/device_gemm_xdl.hpp
include/ck/tensor_operation/gpu/device/device_gemm_xdl.hpp
+10
-1
No files found.
include/ck/tensor_operation/gpu/device/device_gemm_xdl.hpp
View file @
d9716db9
...
@@ -527,6 +527,9 @@ struct DeviceGemmXdl : public DeviceGemm<ALayout,
...
@@ -527,6 +527,9 @@ struct DeviceGemmXdl : public DeviceGemm<ALayout,
{
{
auto
str
=
std
::
stringstream
();
auto
str
=
std
::
stringstream
();
std
::
map
<
LoopScheduler
,
std
::
string
>
LoopSchedToString
{
{
LoopScheduler
::
Default
,
"Default"
},
{
LoopScheduler
::
Interwave
,
"Interwave"
}};
// clang-format off
// clang-format off
str
<<
"DeviceGemmXdl"
str
<<
"DeviceGemmXdl"
<<
"<"
<<
"<"
...
@@ -539,7 +542,13 @@ struct DeviceGemmXdl : public DeviceGemm<ALayout,
...
@@ -539,7 +542,13 @@ struct DeviceGemmXdl : public DeviceGemm<ALayout,
<<
NPerXDL
<<
", "
<<
NPerXDL
<<
", "
<<
MXdlPerWave
<<
", "
<<
MXdlPerWave
<<
", "
<<
NXdlPerWave
<<
NXdlPerWave
<<
">"
;
<<
">"
<<
" NumPrefetch: "
<<
NumPrefetch
<<
", "
<<
"LoopScheduler: "
<<
LoopSchedToString
[
LoopSched
].
c_str
()
<<
", "
<<
"PipelineVersion: "
<<
PipelineVersion
;
// clang-format on
// clang-format on
return
str
.
str
();
return
str
.
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