dppo/gcc_wrapper.sh
ys1087@partner.kit.edu 7e800c9a33 Complete MuJoCo fix and validate hopper fine-tuning
- Add GCC wrapper script to filter Intel compiler flags
- Download missing mujoco-py generated files automatically
- Update installer with comprehensive MuJoCo fixes
- Document complete solution in README and EXPERIMENT_PLAN
- Hopper fine-tuning validated with reward 1415.8471
- All pre-training environments working
- DPPO is now production-ready on HoReKa
2025-08-27 18:27:02 +02:00

14 lines
312 B
Bash
Executable File

#!/bin/bash
# GCC wrapper that filters out Intel compiler flags
args=()
for arg in "$@"; do
case "$arg" in
-xCORE-AVX2|--xCORE-AVX2|-xHost|--xHost)
# Skip Intel-specific flags
;;
*)
args+=("$arg")
;;
esac
done
exec /usr/bin/gcc "${args[@]}"