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
fdbf8ccb
Unverified
Commit
fdbf8ccb
authored
May 08, 2024
by
Illia Silin
Committed by
GitHub
May 08, 2024
Browse files
fix the output formatting (#1282)
parent
0b6b5d17
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
include/ck/host_utility/flush_cache.hpp
include/ck/host_utility/flush_cache.hpp
+1
-1
include/ck/host_utility/kernel_launch.hpp
include/ck/host_utility/kernel_launch.hpp
+2
-2
No files found.
include/ck/host_utility/flush_cache.hpp
View file @
fdbf8ccb
...
...
@@ -119,7 +119,7 @@ float launch_and_time_kernel_with_preprocess(const StreamConfig& stream_config,
{
if
(
ck
::
EnvIsEnabled
(
ENV
(
CK_LOGGING
)))
{
printf
(
"%s: grid_dim {%
d
, %
d
, %
d
}, block_dim {%
d
, %
d
, %
d
}
\n
"
,
printf
(
"%s: grid_dim {%
u
, %
u
, %
u
}, block_dim {%
u
, %
u
, %
u
}
\n
"
,
__func__
,
grid_dim
.
x
,
grid_dim
.
y
,
...
...
include/ck/host_utility/kernel_launch.hpp
View file @
fdbf8ccb
...
...
@@ -22,7 +22,7 @@ float launch_and_time_kernel(const StreamConfig& stream_config,
{
if
(
ck
::
EnvIsEnabled
(
ENV
(
CK_LOGGING
)))
{
printf
(
"%s: grid_dim {%
d
, %
d
, %
d
}, block_dim {%
d
, %
d
, %
d
}
\n
"
,
printf
(
"%s: grid_dim {%
u
, %
u
, %
u
}, block_dim {%
u
, %
u
, %
u
}
\n
"
,
__func__
,
grid_dim
.
x
,
grid_dim
.
y
,
...
...
@@ -97,7 +97,7 @@ float launch_and_time_kernel_with_preprocess(const StreamConfig& stream_config,
{
if
(
ck
::
EnvIsEnabled
(
ENV
(
CK_LOGGING
)))
{
printf
(
"%s: grid_dim {%
d
, %
d
, %
d
}, block_dim {%
d
, %
d
, %
d
}
\n
"
,
printf
(
"%s: grid_dim {%
u
, %
u
, %
u
}, block_dim {%
u
, %
u
, %
u
}
\n
"
,
__func__
,
grid_dim
.
x
,
grid_dim
.
y
,
...
...
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