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 b090d85 commit 5027e64Copy full SHA for 5027e64
bitsandbytes/cextension.py
@@ -116,7 +116,10 @@ def get_native_library() -> BNBNativeLibrary:
116
except Exception as e:
117
lib = None
118
if not is_ipex_available:
119
- logger.error(f"Could not load bitsandbytes native library: {e}", exc_info=True)
+ logger.error(
120
+ f"Could not load bitsandbytes native library: {e}. If you use Intel CPU or XPU, please pip install intel_extension_for_pytorch",
121
+ exc_info=True,
122
+ )
123
if torch.cuda.is_available():
124
logger.warning(
125
f"""
0 commit comments