mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-07-18 01:28:27 +00:00
Use std::boolalpha for boolean rendering instead of ternary operator
Co-authored-by: aosewski <19374865+aosewski@users.noreply.github.com>
This commit is contained in:
@@ -880,8 +880,8 @@ struct DeviceGroupedGemmMultipleDSplitKXdlCShuffleTwoStage
|
||||
if(ck::EnvIsEnabled(CK_ENV(CK_LOGGING)))
|
||||
{
|
||||
std::cout << "Not all groups have compatible HasMainLoop values! "
|
||||
<< "Group 0: " << (first_has_main_loop ? "TRUE" : "FALSE")
|
||||
<< ", Group " << i << ": " << (has_main_loop ? "TRUE" : "FALSE")
|
||||
<< "Group 0: " << std::boolalpha << first_has_main_loop
|
||||
<< ", Group " << i << ": " << std::boolalpha << has_main_loop
|
||||
<< std::endl;
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user