Remove webgpu, back to 5k lines (#3040)

* remove webgpu

* max 5000 lines
This commit is contained in:
George Hotz
2024-01-08 09:10:07 -08:00
committed by GitHub
parent cf2eea961c
commit 8cbcd1b342
8 changed files with 44 additions and 84 deletions

View File

@@ -82,10 +82,8 @@ tinygrad already supports numerous accelerators, including:
- [x] [LLVM](tinygrad/runtime/ops_llvm.py)
- [x] [METAL](tinygrad/runtime/ops_metal.py)
- [x] [CUDA](tinygrad/runtime/ops_cuda.py)
- [x] [Triton](extra/triton/triton.py)
- [x] [PyTorch](tinygrad/runtime/ops_torch.py)
- [x] [HIP](tinygrad/runtime/ops_hip.py)
- [x] [WebGPU](tinygrad/runtime/ops_webgpu.py)
And it is easy to add more! Your accelerator of choice only needs to support a total of ~25 low level ops.
More information can be found in the [documentation for adding new accelerators](/docs/adding_new_accelerators.md).