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:
copilot-swe-agent[bot]
2025-12-19 20:51:24 +00:00
parent a7b3913cff
commit fd5f018a05

View File

@@ -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;