Skip to content

Commit 4bb1812

Browse files
committed
cleanup
Signed-off-by: Sangkug Lym <[email protected]>
1 parent 2231cc8 commit 4bb1812

File tree

1 file changed

+1
-1
lines changed
  • transformer_engine/pytorch/cpp_extensions

1 file changed

+1
-1
lines changed

transformer_engine/pytorch/cpp_extensions/gemm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def gemm(
286286
), "SPLIT_PIPELINED_RS requires extra output tensor"
287287
# Disable the overlap between GEMM chunks at ampere and below
288288
major, _ = torch.cuda.get_device_capability()
289-
overlap_gemm_chunks = True if major >= 9 else False
289+
overlap_gemm_chunks = major >= 9
290290
args = tuple(
291291
args
292292
+ (

0 commit comments

Comments
 (0)