Skip to content

Commit 482b93c

Browse files
committed
Fix style
1 parent 0abbf18 commit 482b93c

File tree

1 file changed

+3
-3
lines changed
  • offload/plugins-nextgen/amdgpu/src

1 file changed

+3
-3
lines changed

offload/plugins-nextgen/amdgpu/src/rtl.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,11 +1102,11 @@ struct AMDGPUKernelTy : public GenericKernelTy {
11021102
// When fast reduction is enabled, the number of teams is capped by
11031103
// the MaxCUMultiplier constant.
11041104
// When envar is enabled, use it for computing MaxNumGroup.
1105-
if (EnvarCUMultiplier > 0) {
1105+
if (EnvarCUMultiplier > 0)
11061106
MaxNumGroups = DeviceNumCUs * EnvarCUMultiplier;
1107-
} else {
1107+
else
11081108
MaxNumGroups = DeviceNumCUs * llvm::omp::xteam_red::MaxCUMultiplier;
1109-
}
1109+
11101110
} else {
11111111
// When fast reduction is not enabled, the number of teams is capped
11121112
// by the metadata that clang CodeGen created. The number of teams

0 commit comments

Comments
 (0)