mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-28 18:12:05 +08:00
a00c91cafc
* neos16 staging * neos 16.1 * prod * turn off for now old-commit-hash: de1d82658b2c63b306a5f603d4b72630d568115a
24 lines
415 B
Bash
Executable File
24 lines
415 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
export OMP_NUM_THREADS=1
|
|
export MKL_NUM_THREADS=1
|
|
export NUMEXPR_NUM_THREADS=1
|
|
export OPENBLAS_NUM_THREADS=1
|
|
export VECLIB_MAXIMUM_THREADS=1
|
|
|
|
#export QT=1
|
|
|
|
if [ -z "$REQUIRED_NEOS_VERSION" ]; then
|
|
export REQUIRED_NEOS_VERSION="16.1"
|
|
fi
|
|
|
|
if [ -z "$AGNOS_VERSION" ]; then
|
|
export AGNOS_VERSION="0.8"
|
|
fi
|
|
|
|
if [ -z "$PASSIVE" ]; then
|
|
export PASSIVE="1"
|
|
fi
|
|
|
|
export STAGING_ROOT="/data/safe_staging"
|