mirror of
https://github.com/ROCm/ROCm.git
synced 2026-04-05 03:01:17 -04:00
[EXAMLPES] remove unnecessary argument (#1243)
Small cleaning of an example calling an old API to display generated IR
This commit is contained in:
@@ -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"])
|
||||
|
||||
Reference in New Issue
Block a user