mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-23 23:12:04 +08:00
27e12ccad7
======================== * Based on latest openpilot 0.7.8 devel. * Added "Reset DP Settings" button. (Thanks to @LOVEChen) * Alert messages changed to concept UI alike design. * Added ability to execute reset_update.sh when press "Exit" button once manager returned errors.
18 lines
333 B
Bash
Executable File
18 lines
333 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 "$REQUIRED_NEOS_VERSION" ]; then
|
|
export REQUIRED_NEOS_VERSION="14"
|
|
fi
|
|
|
|
if [ -z "$PASSIVE" ]; then
|
|
export PASSIVE="1"
|
|
fi
|
|
|
|
export STAGING_ROOT="/data/safe_staging"
|