mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-01-09 06:58:11 -05: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
14 lines
317 B
Bash
Executable File
14 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 $@
|