mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-09 01:23:43 +08:00
659adb6457
date: 2024-03-17T10:14:38 master commit: 7e9a909e0e57ecb31df4c87c5b9a06b1204fd034
14 lines
329 B
Bash
14 lines
329 B
Bash
#!/bin/bash -e
|
|
echo "********* CPU *********"
|
|
CPU=1 python3 "$@"
|
|
echo "********* GPU *********"
|
|
GPU=1 python3 "$@"
|
|
echo "********* METAL *********"
|
|
METAL=1 python3 "$@"
|
|
echo "********* CLANG *********"
|
|
CLANG=1 python3 "$@"
|
|
echo "********* LLVM *********"
|
|
LLVM=1 python3 "$@"
|
|
echo "********* TORCH *********"
|
|
TORCH=1 python3 "$@"
|