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 db054ba commit 0a0aeddCopy full SHA for 0a0aedd
helion/_compat.py
@@ -79,9 +79,10 @@ def _min_dot_size(
79
if not k.startswith("_")
80
}
81
82
- return min_dot_size_xpu(gpu_target_info)(
+ dot_size_val = min_dot_size_xpu(gpu_target_info)(
83
torch_dtype_to_tl(lhs), torch_dtype_to_tl(rhs)
84
)
85
+ return tuple(int(v) for v in dot_size_val) # pyright: ignore[reportReturnType]
86
87
from triton.backends.nvidia.compiler import min_dot_size as min_dot_size_cuda
88
0 commit comments