mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-01 05:33:49 +08:00
42b6ecb535
This reverts commitbd4ed9d316, reversing changes made tof047a7d008.
14 lines
271 B
Bash
Executable File
14 lines
271 B
Bash
Executable File
#!/usr/bin/env 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
|
|
|
|
if [ -z "$AGNOS_VERSION" ]; then
|
|
export AGNOS_VERSION="12.4"
|
|
fi
|
|
|
|
export STAGING_ROOT="/data/safe_staging"
|