From a27a559650b1531ba00622bdae013f1fee910a4e Mon Sep 17 00:00:00 2001 From: "Xu, Shuo" <100334393+ATMxsp01@users.noreply.github.com> Date: Wed, 5 Jun 2024 17:57:42 +0800 Subject: [PATCH] Add some information in FAQ to help users solve "RuntimeError: could not create a primitive" error on Windows (#11221) * Add some information to help users to solve "could not create a primitive" error in Windows. * Small update --------- Co-authored-by: ATMxsp01 Co-authored-by: Yuwen Hu --- docs/readthedocs/source/doc/LLM/Overview/FAQ/faq.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/readthedocs/source/doc/LLM/Overview/FAQ/faq.md b/docs/readthedocs/source/doc/LLM/Overview/FAQ/faq.md index c86d109e..caf8bd51 100644 --- a/docs/readthedocs/source/doc/LLM/Overview/FAQ/faq.md +++ b/docs/readthedocs/source/doc/LLM/Overview/FAQ/faq.md @@ -73,3 +73,7 @@ Make sure intel-basekit>=2024.0.1-43 and intel-level-zero-gpu>=1.3.27191.42-775~ ### 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. \ No newline at end of file