We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c256340 commit 73d5a35Copy full SHA for 73d5a35
tritonbench/operators/launch_latency/operator.py
@@ -104,7 +104,9 @@ def nop_cutedsl_tvm_ffi(self, *args):
104
cute_args.append(cute.runtime.from_dlpack(arg, enable_tvm_ffi=True))
105
else:
106
cute_args.append(arg)
107
- kernel = cute.compile(cutedsl_nop_with_args_kernel, *cute_args, options="--enable-tvm-ffi")
+ kernel = cute.compile(
108
+ cutedsl_nop_with_args_kernel, *cute_args, options="--enable-tvm-ffi"
109
+ )
110
# remove constexpr args
111
cute_args = cute_args[:-5]
112
return lambda: kernel(*cute_args)
0 commit comments