Fix pthread_affinity OpenVINO crash issue

This commit is contained in:
vhsdream 2025-05-05 16:42:01 -04:00
parent f28b2e3d70
commit 6173a5e71c

View File

@ -332,6 +332,9 @@ else
fi fi
cd "$SRC_DIR" || exit cd "$SRC_DIR" || exit
cp -a machine-learning/{ann,immich_ml} "$ML_DIR" cp -a machine-learning/{ann,immich_ml} "$ML_DIR"
if [[ "$intel_hw" = 1 ]]; then
sed -i "/intra_op/s/int = 0/int = os.cpu_count() or 0/" "$ML_DIR"/immich_ml/config.py
fi
ln -sf "$APP_DIR"/resources "$INSTALL_DIR" ln -sf "$APP_DIR"/resources "$INSTALL_DIR"
cd "$APP_DIR" || exit cd "$APP_DIR" || exit