example_gemm_schedule.py 1.98 KB
Newer Older
1
2
3
4
5
6
7
import tilelang
import tilelang.language as T


def matmul(M, N, K, block_M, block_N, block_K, dtype="float16", accum_dtype="float"):

    @T.prim_func
8
    def gemm_schedule(
9
10
11
            A: T.Tensor((M, K), dtype),
            B: T.Tensor((K, N), dtype),
            C: T.Tensor((M, N), dtype),
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
    ):
        with T.Kernel(T.ceildiv(N, block_N), T.ceildiv(M, block_M), threads=128) as (bx, by):
            A_shared = T.alloc_shared((block_M, block_K), dtype)
            B_shared = T.alloc_shared((block_K, block_N), dtype)
            C_local = T.alloc_fragment((block_M, block_N), accum_dtype)

            # Enable rasterization for better L2 Cache Locality
            T.use_swizzle(panel_size=10)

            # Clear the local buffer
            T.clear(C_local)

            # Auto pipeline the computation
            for ko in T.Pipelined(T.ceildiv(K, block_K), num_stages=3):
                T.copy(A[by * block_M, ko * block_K], A_shared)

                # Instead of using
                # T.copy(B[k * block_K, bx * block_N], B_shared)
                # we can also use Parallel to auto map the thread
                # bindings and vectorize the copy operation.
                for k, j in T.Parallel(block_K, block_N):
                    B_shared[k, j] = B[ko * block_K + k, bx * block_N + j]

                T.gemm(A_shared, B_shared, C_local)

            T.copy(C_local, C[by * block_M, bx * block_N])

39
    return gemm_schedule
40
41


42
43
def main():
    func = matmul(1024, 1024, 1024, 128, 128, 32)
44

45
    print(func)
46

47
    kernel = tilelang.compile(func, out_idx=-1)
48

49
    import torch
50

51
52
    a = torch.randn(1024, 1024).cuda().half()
    b = torch.randn(1024, 1024).cuda().half()
53

54
    c = kernel(a, b)
55

56
    ref_c = a @ b
57

58
59
60
61
    print("c:")
    print(c)
    print("ref_c:")
    print(ref_c)
62

63
64
    torch.testing.assert_close(c, ref_c, rtol=1e-2, atol=1e-2)
    print("All check passed.")
65

66
67
68
    # Get CUDA Source
    print("CUDA Source:")
    print(kernel.get_kernel_source())
69

70
71
72

if __name__ == "__main__":
    main()