Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Sangkug Lym <[email protected]>
  • Loading branch information
erhoo82 committed Nov 6, 2024
1 parent 2231cc8 commit 4bb1812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transformer_engine/pytorch/cpp_extensions/gemm.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def gemm(
), "SPLIT_PIPELINED_RS requires extra output tensor"
# Disable the overlap between GEMM chunks at ampere and below
major, _ = torch.cuda.get_device_capability()
overlap_gemm_chunks = True if major >= 9 else False
overlap_gemm_chunks = major >= 9
args = tuple(
args
+ (
Expand Down

0 comments on commit 4bb1812

Please sign in to comment.