[EXAMLPES] remove unnecessary argument (#1243)

Small cleaning of an example calling an old API to display generated IR
This commit is contained in:
Michaël Benesty
2023-02-23 18:15:32 +01:00
committed by GitHub
parent a38d2defb8
commit 66ddd17e72

View File

@@ -15,5 +15,5 @@ def kernel(X, stride_xm,
tl.store(Zs, tl.load(Xs))
ret = triton.compile(kernel, signature="*fp32,i32,*fp32,i32", constants={"BLOCK_M": 64, "BLOCK_N": 64}, output="ttgir")
print(ret)
ret = triton.compile(kernel, signature="*fp32,i32,*fp32,i32", constants={"BLOCK_M": 64, "BLOCK_N": 64})
print(ret.asm["ttgir"])