Skip to content

Commit 73d5a35

Browse files
committed
fix ufmt
1 parent c256340 commit 73d5a35

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tritonbench/operators/launch_latency/operator.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ def nop_cutedsl_tvm_ffi(self, *args):
104104
cute_args.append(cute.runtime.from_dlpack(arg, enable_tvm_ffi=True))
105105
else:
106106
cute_args.append(arg)
107-
kernel = cute.compile(cutedsl_nop_with_args_kernel, *cute_args, options="--enable-tvm-ffi")
107+
kernel = cute.compile(
108+
cutedsl_nop_with_args_kernel, *cute_args, options="--enable-tvm-ffi"
109+
)
108110
# remove constexpr args
109111
cute_args = cute_args[:-5]
110112
return lambda: kernel(*cute_args)

0 commit comments

Comments
 (0)