Troubleshooting
General Usage
Problem: FP64 data type is unsupported on current platform.
Cause: FP64 is not natively supported by the Intel® Data Center GPU Flex Series and Intel® Arc™ A-Series Graphics platforms. If you run any AI workload on that platform and receive this error message, it means a kernel requires FP64 instructions that are not supported and the execution is stopped.
Problem: Runtime error
invalid device pointer
ifimport horovod.torch as hvd
beforeimport intel_extension_for_pytorch
.Cause: Intel® Optimization for Horovod* uses utilities provided by Intel® Extension for PyTorch*. The improper import order causes Intel® Extension for PyTorch* to be unloaded before Intel® Optimization for Horovod* at the end of the execution and triggers this error.
Solution: Do
import intel_extension_for_pytorch
beforeimport horovod.torch as hvd
.
Problem: Number of dpcpp devices should be greater than zero.
Cause: If you use Intel® Extension for PyTorch* in a conda environment, you might encounter this error. Conda also ships the libstdc++.so dynamic library file that may conflict with the one shipped in the OS.
Solution: Export the
libstdc++.so
file path in the OS to an environment variableLD_PRELOAD
.
Problem: Symbol undefined caused by
_GLIBCXX_USE_CXX11_ABI
.ImportError: undefined symbol: _ZNK5torch8autograd4Node4nameB5cxx11Ev
Cause: Intel® Extension for PyTorch* is compiled with
_GLIBCXX_USE_CXX11_ABI=1
. This symbol undefined issue appears when PyTorch* is compiled with_GLIBCXX_USE_CXX11_ABI=0
.Solution: Pass
export GLIBCXX_USE_CXX11_ABI=1
and compile PyTorch* with particular compiler which supports_GLIBCXX_USE_CXX11_ABI=1
. We recommend using prebuilt wheels in download server to avoid this issue.
Problem:
-997 runtime error
when running some AI models on Intel® Arc™ Graphics family.Cause: Some of the
-997 runtime error
are actually out-of-memory errors. As Intel® Arc™ Graphics GPUs have less device memory than Intel® Data Center GPU Flex Series 170 and Intel® Data Center GPU Max Series, running some AI models on them may trigger out-of-memory errors and cause them to report failure such as-997 runtime error
most likely. This is expected. Memory usage optimization is working in progress to allow Intel® Arc™ Graphics GPUs to support more AI models.
Problem: Building from source for Intel® Arc™ A-Series GPUs fails on WSL2 without any error thrown.
Cause: Your system probably does not have enough RAM, so Linux kernel’s Out-of-memory killer was invoked. You can verify this by running
dmesg
on bash (WSL2 terminal).Solution: If the OOM killer had indeed killed the build process, then you can try increasing the swap-size of WSL2, and/or decreasing the number of parallel build jobs with the environment variable
MAX_JOBS
(by default, it’s equal to the number of logical CPU cores. So, settingMAX_JOBS
to 1 is a very conservative approach that would slow things down a lot).
Problem: Some workloads terminate with an error
CL_DEVICE_NOT_FOUND
after some time on WSL2.Cause: This issue is due to the TDR feature on Windows.
Solution: Try increasing TDRDelay in your Windows Registry to a large value, such as 20 (it is 2 seconds, by default), and reboot.
Library Dependencies
Problem: Cannot find oneMKL library when building Intel® Extension for PyTorch* without oneMKL.
/usr/bin/ld: cannot find -lmkl_sycl /usr/bin/ld: cannot find -lmkl_intel_ilp64 /usr/bin/ld: cannot find -lmkl_core /usr/bin/ld: cannot find -lmkl_tbb_thread dpcpp: error: linker command failed with exit code 1 (use -v to see invocation)
Cause: When PyTorch* is built with oneMKL library and Intel® Extension for PyTorch* is built without MKL library, this linker issue may occur.
Solution: Resolve the issue by setting:
export USE_ONEMKL=OFF export MKL_DPCPP_ROOT=${HOME}/intel/oneapi/mkl/latest
Then clean build Intel® Extension for PyTorch*.
Problem: Undefined symbol:
mkl_lapack_dspevd
. Intel MKL FATAL ERROR: cannot loadlibmkl_vml_avx512.so.2
or `libmkl_vml_def.so.2.Cause: This issue may occur when Intel® Extension for PyTorch* is built with oneMKL library and PyTorch* is not build with any MKL library. The oneMKL kernel may run into CPU backend incorrectly and trigger this issue.
Solution: Resolve the issue by installing the oneMKL library from conda:
conda install mkl conda install mkl-include
Then clean build PyTorch*.
Problem: OSError:
libmkl_intel_lp64.so.2
: cannot open shared object file: No such file or directory.Cause: Wrong MKL library is used when multiple MKL libraries exist in system.
Solution: Preload oneMKL by:
export LD_PRELOAD=${MKL_DPCPP_ROOT}/lib/intel64/libmkl_intel_lp64.so.2:${MKL_DPCPP_ROOT}/lib/intel64/libmkl_intel_ilp64.so.2:${MKL_DPCPP_ROOT}/lib/intel64/libmkl_gnu_thread.so.2:${MKL_DPCPP_ROOT}/lib/intel64/libmkl_core.so.2:${MKL_DPCPP_ROOT}/lib/intel64/libmkl_sycl.so.2
If you continue seeing similar issues for other shared object files, add the corresponding files under
${MKL_DPCPP_ROOT}/lib/intel64/
byLD_PRELOAD
. Note that the suffix of the libraries may change (e.g. from .1 to .2), if more than one oneMKL library is installed on the system.
Problem: If you encounter issues related to MPI environment variable configuration when running distributed tasks.
Cause: MPI environment variable configuration not correct.
Solution:
conda deactivate
and thenconda activate
to activate the correct MPI environment variable automatically.conda deactivate conda activate
Problem: If you encounter issues Runtime error related to C++ compiler with
torch.compile
. Runtime Error: Failed to find C++ compiler. Please specify via CXX environment variable.Cause: Not install and activate DPC++/C++ Compiler correctly.
Solution: Install DPC++/C++ Compiler and activate it by following commands.
# {dpcpproot} is the location for dpcpp ROOT path and it is where you installed oneAPI DPCPP, usually it is /opt/intel/oneapi/compiler/latest or ~/intel/oneapi/compiler/latest source {dpcpproot}/env/vars.sh
Problem: RuntimeError: Cannot find a working triton installation. Either the package is not installed or it is too old. More information on installing Triton can be found at https://github.com/openai/triton
Cause: No pytorch-triton-xpu installed
Solution: Resolve the issue with following command:
# Install correct version of pytorch-triton-xpu pip install --pre pytorch-triton-xpu==3.1.0+91b14bf559 --index-url https://download.pytorch.org/whl/nightly/xpu
Problem: LoweringException: ImportError: cannot import name ‘intel’ from ‘triton._C.libtriton’
Cause: Installing Triton causes pytorch-triton-xpu to stop working.
Solution: Resolve the issue with following command:
pip list | grep triton # If triton related packages are listed, remove them pip uninstall triton pip uninstall pytorch-triton-xpu # Reinstall correct version of pytorch-triton-xpu pip install --pre pytorch-triton-xpu==3.1.0+91b14bf559 --index-url https://download.pytorch.org/whl/nightly/xpu
Performance Issue
Problem: Extended durations for data transfers from the host system to the device (H2D) and from the device back to the host system (D2H).
Cause: Absence of certain Dynamic Kernel Module Support (DKMS) packages on Ubuntu 22.04 or earlier versions.
Solution: For those running Ubuntu 22.04 or below, it’s crucial to follow all the recommended installation procedures, including those labeled as optional. These steps are likely necessary to install the missing DKMS packages and ensure your system is functioning optimally. The Kernel Mode Driver (KMD) package that addresses this issue has been integrated into the Linux kernel for Ubuntu 23.04 and subsequent releases.