- 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
14 lines
312 B
Bash
Executable File
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[@]}" |