Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Xia-Weiwen committed May 7, 2024
1 parent 97e41b8 commit 295bb97
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion bitsandbytes/backends/cpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from bitsandbytes.utils import QuantState

from .base import Backend

from .cpu_xpu_common import (
double_quant_impl,
igemmlt_impl,
Expand Down
1 change: 1 addition & 0 deletions bitsandbytes/backends/cpu_xpu_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
try:
# to support Intel CPU/GPU (XPU) backend
import intel_extension_for_pytorch as ipex

ipex_cpu = ipex if ipex._C._has_cpu() else None
ipex_xpu = ipex if ipex._C._has_xpu() else None
except:
Expand Down

0 comments on commit 295bb97

Please sign in to comment.