* add faq and API doc link in README.md * add missing quickstart link * update links in FAQ * update links in FAQ * update faq * update faq text
		
			
				
	
	
	
	
		
			5.6 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	Frequently Asked Questions (FAQ)
General Info & Concepts
GGUF format usage with IPEX-LLM?
IPEX-LLM supports running GGUF/AWQ/GPTQ models on both CPU and GPU.
Please also refer to here for our latest support.
How to Resolve Errors
Fail to install ipex-llm via pip on Intel GPU
If you encounter errors when installing ipex-llm on Intel GPU using either
pip install --pre --upgrade ipex-llm[xpu] --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/
or
pip install --pre --upgrade ipex-llm[xpu] --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/cn/
You can try install ipex-llm dependencies from source archives:
PyTorch is not linked with support for xpu devices
- Before running on Intel GPUs, please make sure you've prepared environment follwing installation instruction.
 - If you are using an older version of 
ipex-llm(specifically, older than 2.5.0b20240104), you need to manually addimport intel_extension_for_pytorch as ipexat the beginning of your code. - After optimizing the model with IPEX-LLM, you need to move model to GPU through 
model = model.to('xpu'). - If you have mutil GPUs, you could refer to here for details about GPU selection.
 - If you do inference using the optimized model on Intel GPUs, you also need to set 
to('xpu')for input tensors. 
Import intel_extension_for_pytorch error on Windows GPU
Please refer to here for detailed guide. We list the possible missing requirements in environment which could lead to this error.
XPU device count is zero
It's recommended to reinstall driver:
Error such as The size of tensor a (33) must match the size of tensor b (17) at non-singleton dimension 2 duing attention forward function
If you are using IPEX-LLM PyTorch API, please try to set optimize_llm=False manually when call optimize_model function to work around. As for IPEX-LLM transformers-style API, you could try to set optimize_model=False manually when call from_pretrained function to work around.
ValueError: Unrecognized configuration class
This error is not quite relevant to IPEX-LLM. It could be that you're using the incorrect AutoClass, or the transformers version is not updated, or transformers does not support using AutoClasses to load this model. You need to refer to the model card in huggingface to confirm these information. Besides, if you load the model from local path, please also make sure you download the complete model files.
mixed dtype (CPU): expect input to have scalar type of BFloat16 during inference
You could solve this error by converting the optimized model to bf16 through model.to(torch.bfloat16) before inference.
Native API failed. Native API returns: -5 (PI_ERROR_OUT_OF_RESOURCES) -5 (PI_ERROR_OUT_OF_RESOURCES)
This error is caused by out of GPU memory. Some possible solutions to decrease GPU memory uage:
- If you run several models continuously, please make sure you have released GPU memory of previous model through 
del modeltimely. - You could try 
model = model.float16()ormodel = model.bfloat16()before moving model to GPU to use less GPU memory. - You could try set 
cpu_embedding=Truewhen callfrom_pretrainedof AutoClass oroptimize_modelfunction. 
Failed to enable AMX
You could use export BIGDL_LLM_AMX_DISABLED=1 to disable AMX manually and solve this error.
oneCCL: comm_selector.cpp:57 create_comm_impl: EXCEPTION: ze_data was not initialized
You may encounter this error during finetuning on multi GPUs. Please try sudo apt install level-zero-dev to fix it.
Random and unreadable output of Gemma-7b-it on Arc770 ubuntu 22.04 due to driver and OneAPI missmatching.
If driver and OneAPI missmatching, it will lead to some error when IPEX-LLM uses XMX(short prompts) for speeding up.
The output of What's AI? may like below:
wiedzy Artificial Intelligence meliti: Artificial Intelligence undenti beng beng beng beng beng beng beng beng beng beng beng beng beng beng beng beng beng beng beng beng beng beng
If you meet this error. Please check your driver version and OneAPI version. Commnad is sudo apt list --installed | egrep "intel-basekit|intel-level-zero-gpu".
Make sure intel-basekit>=2024.0.1-43 and intel-level-zero-gpu>=1.3.27191.42-775~22.04.
Too many open files
You may encounter this error during finetuning, expecially when run 70B model. Please raise the system open file limit using ulimit -n 1048576.
RuntimeError: could not create a primitive on Windows
This error may happen when multiple GPUs exists for Windows Users. To solve this error, you can open Device Manager (search "Device Manager" in your start menu). Then click the "Display adapter" option, and disable all the GPU device you do not want to use. Restart your computer and try again. IPEX-LLM should work fine this time.