mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-06-24 02:14:17 +00:00
* add dtype class * dtypes * buffers are lazy * dtype is tracked by lazybuffer and GenericShape * fix types in llvm * llvm store * dtype tests * fix tests maybe * fix flop counter * fix CI * CI fix and check format * fix dtype and dtype check * fix custom test * fix test graph
13 lines
317 B
Bash
Executable file
13 lines
317 B
Bash
Executable file
#!/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 $@
|