mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 21:14:01 +08:00
* the start of something beautiful * mv that * cleanup * cleanup output * the good stuff --------- Co-authored-by: Comma Device <device@comma.ai>
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="11.8"
|
|
fi
|
|
|
|
export STAGING_ROOT="/data/safe_staging"
|