You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: toolchain/scripts/lib/config_manager.sh
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -567,6 +567,11 @@ config_apply_env_logic() {
567
567
echo"Using MKL, so fftw is disabled."
568
568
CONFIG_CACHE["with_fftw"]="__DONTUSE__"
569
569
fi
570
+
if [ "${CONFIG_CACHE[with_libtorch]}"="__INSTALL__" ];then
571
+
report_error ${LINENO} \
572
+
"Installing the current prebuilt libtorch package is disabled for oneMKL builds due to known conflicts between bundled and externally linked oneMKL libraries. Please provide a compatible libtorch installation via --with-libtorch=system or --with-libtorch=<path>."
573
+
exit 1
574
+
fi
570
575
fi
571
576
572
577
# Select the correct compute number based on the GPU architecture
0 commit comments