Files
tinygrad/run_multibackend.sh
George Hotz 1826ff6b89 dtypes nice and clean (#673)
* 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
2023-03-10 16:56:07 -08:00

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 $@