Unverified Commit fdbf8ccb authored by Illia Silin's avatar Illia Silin Committed by GitHub
Browse files

fix the output formatting (#1282)

parent 0b6b5d17
...@@ -119,7 +119,7 @@ float launch_and_time_kernel_with_preprocess(const StreamConfig& stream_config, ...@@ -119,7 +119,7 @@ float launch_and_time_kernel_with_preprocess(const StreamConfig& stream_config,
{ {
if(ck::EnvIsEnabled(ENV(CK_LOGGING))) 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__, __func__,
grid_dim.x, grid_dim.x,
grid_dim.y, grid_dim.y,
......
...@@ -22,7 +22,7 @@ float launch_and_time_kernel(const StreamConfig& stream_config, ...@@ -22,7 +22,7 @@ float launch_and_time_kernel(const StreamConfig& stream_config,
{ {
if(ck::EnvIsEnabled(ENV(CK_LOGGING))) 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__, __func__,
grid_dim.x, grid_dim.x,
grid_dim.y, grid_dim.y,
...@@ -97,7 +97,7 @@ float launch_and_time_kernel_with_preprocess(const StreamConfig& stream_config, ...@@ -97,7 +97,7 @@ float launch_and_time_kernel_with_preprocess(const StreamConfig& stream_config,
{ {
if(ck::EnvIsEnabled(ENV(CK_LOGGING))) 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__, __func__,
grid_dim.x, grid_dim.x,
grid_dim.y, grid_dim.y,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment