We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following instructions from https://github.com/intel-analytics/BigDL/tree/main/python/llm/example/GPU/LLM-Finetuning/QLoRA/simple-example to set up exaple
Facing the following error:
import linear_q4_0 ImportError: /lib64/libc.so.6: version GLIBC_2.32' not found`
import linear_q4_0 ImportError: /lib64/libc.so.6: version
The text was updated successfully, but these errors were encountered:
upgrade the GLIC version
Sorry, something went wrong.
GLIBC_2.32' not found`
Hi @devpramod This error is caused by glibc out of date. In most cases, it's due to OS out of date.
But don't upgrade glibc because it's OS and kernel-related. It may cause your system.
Please try docker container https://github.com/intel-analytics/BigDL/tree/main/docker/llm/finetune/qlora/xpu/docker. Or install glibc in conda.
Thanks @qiyuangong Is it possible to install glibc through conda only?
Yes. It's possible but still risky (it may also crash your conda env or application). Please use the docker solution. It's much safer.
You can use this command to check your glibc version.
strings /lib64/libc.so.6 | grep GLIBC
qiyuangong
No branches or pull requests
Following instructions from https://github.com/intel-analytics/BigDL/tree/main/python/llm/example/GPU/LLM-Finetuning/QLoRA/simple-example to set up exaple
Facing the following error:
import linear_q4_0 ImportError: /lib64/libc.so.6: version
GLIBC_2.32' not found`The text was updated successfully, but these errors were encountered: