mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 05:24:06 +08:00
* agnos 8 * update to python 3.11.4 (#27452) * rebase * optional * lower cython * TEMP don't pull cl to use python3.11 * Revert "lower cython" This reverts commit c5132f8a2727c212bdfc01e77aa53e50a17ead9d. * fix cython * remove tensorrt * carla + opencv * macos * update timm and smp * pynvc * https * downgrade numpy * pin scipy --------- Co-authored-by: Maxime Desroches <desroches.maxime@gmail.com> Co-authored-by: Yassine <yassine.y10@gmail.com> * revert that * fix linter --------- Co-authored-by: Maxime Desroches <desroches.maxime@gmail.com> Co-authored-by: Yassine <yassine.y10@gmail.com>
18 lines
318 B
Bash
Executable File
18 lines
318 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
|
|
|
|
if [ -z "$AGNOS_VERSION" ]; then
|
|
export AGNOS_VERSION="8.2"
|
|
fi
|
|
|
|
if [ -z "$PASSIVE" ]; then
|
|
export PASSIVE="1"
|
|
fi
|
|
|
|
export STAGING_ROOT="/data/safe_staging"
|