README: ops_cpu and ops_torch have been removed (#3539)

Removed by pull #3399
This commit is contained in:
Mark McLoughlin
2024-02-29 15:22:11 +00:00
committed by GitHub
parent b05776ef3e
commit 2e82c5b7a4

View File

@@ -76,13 +76,11 @@ See [examples/beautiful_mnist.py](examples/beautiful_mnist.py) for the full vers
tinygrad already supports numerous accelerators, including:
- [x] [CPU](tinygrad/runtime/ops_cpu.py)
- [x] [GPU (OpenCL)](tinygrad/runtime/ops_gpu.py)
- [x] [C Code (Clang)](tinygrad/runtime/ops_clang.py)
- [x] [LLVM](tinygrad/runtime/ops_llvm.py)
- [x] [METAL](tinygrad/runtime/ops_metal.py)
- [x] [CUDA](tinygrad/runtime/ops_cuda.py)
- [x] [PyTorch](tinygrad/runtime/ops_torch.py)
- [x] [HIP](tinygrad/runtime/ops_hip.py)
And it is easy to add more! Your accelerator of choice only needs to support a total of ~25 low level ops.