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 ba5c114 commit fe63028Copy full SHA for fe63028
helion/_compat.py
@@ -70,7 +70,9 @@ def _min_dot_size(
70
return (16, 16, 16)
71
72
if torch.xpu.is_available():
73
- from triton.backends.intel.compiler import min_dot_size as min_dot_size_xpu
+ from triton.backends.intel.compiler import (
74
+ min_dot_size as min_dot_size_xpu, # pyright: ignore[reportMissingImports]
75
+ )
76
77
device_properties = torch.xpu.get_device_properties()
78
gpu_target_info = {
0 commit comments