v4.4 tag release update. (#3032)

This commit is contained in:
Junkai-Wu
2026-02-13 23:27:58 -05:00
committed by GitHub
parent 01687cfba1
commit d4bbf728ca
140 changed files with 41622 additions and 3689 deletions
+3 -3
View File
@@ -31,7 +31,6 @@ import time
from typing import Tuple
import cuda.bindings.driver as cuda
import torch
import cutlass
import cutlass.cute as cute
@@ -643,6 +642,8 @@ def run(
use_cold_l2: bool = False,
**kwargs,
):
import torch
"""Execute SIMT GEMM operation and benchmark performance.
:param mnk: GEMM problem size (M, N, K, L)
@@ -666,6 +667,7 @@ def run(
:return: Execution time of the GEMM kernel in microseconds
:rtype: float
"""
torch.manual_seed(1024)
print("Running Ampere SIMT GEMM example:")
print(f"mnk: {mnk}")
print(f"A major: {a_major}, B major: {b_major}, C major: {c_major}")
@@ -851,8 +853,6 @@ if __name__ == "__main__":
args = parser.parse_args()
print("Running SIMT GEMM example:")
torch.manual_seed(1024)
run(
args.mnk,
args.a_major,