Skip to content

Commit fe63028

Browse files
committed
Fix lint issue
1 parent ba5c114 commit fe63028

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

helion/_compat.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ def _min_dot_size(
7070
return (16, 16, 16)
7171

7272
if torch.xpu.is_available():
73-
from triton.backends.intel.compiler import min_dot_size as min_dot_size_xpu
73+
from triton.backends.intel.compiler import (
74+
min_dot_size as min_dot_size_xpu, # pyright: ignore[reportMissingImports]
75+
)
7476

7577
device_properties = torch.xpu.get_device_properties()
7678
gpu_target_info = {

0 commit comments

Comments
 (0)