mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-02 03:52:11 +08:00
f6885dcbec
* Revert "dmonitoringmodeld: use cl transform (#34235)" This reverts commit684b0b9d4d. * Revert "load model before calling convert_fp16_to_fp32" This reverts commit31606a7d15. * Revert "bump tinygrad" This reverts commit44f58ff758. * Revert "Tinygrad runner (#34171)" This reverts commit7b5a4fbb03. * Allow init buffer * typo
11 lines
220 B
Bash
Executable File
11 lines
220 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
|
cd "$DIR/../../"
|
|
|
|
if [ -f "$DIR/libthneed.so" ]; then
|
|
export LD_PRELOAD="$DIR/libthneed.so"
|
|
fi
|
|
|
|
exec "$DIR/dmonitoringmodeld.py" "$@"
|