2023-02-18 02:46:44 +00:00
|
|
|
#!/bin/bash
|
2023-03-14 05:02:14 +00:00
|
|
|
ulimit -Sn `ulimit -Hn` # ROCm is a bitch
|
2023-02-17 00:08:27 +00:00
|
|
|
source ./venv/bin/activate
|
2023-02-19 15:01:16 +00:00
|
|
|
python3 ./src/main.py "$@"
|
2023-02-17 00:08:27 +00:00
|
|
|
deactivate
|