From 02a3fa3b7be17d36421b2c3a51ca6a09e56a0445 Mon Sep 17 00:00:00 2001 From: drbh Date: Wed, 1 Oct 2025 14:03:34 -0400 Subject: [PATCH 1/2] feat: add tiered hardware support --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 1b21b137..2e101598 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,12 @@ docker run --rm \ See [dockerfiles/README.md](./dockerfiles/README.md) for more options, including a user-level container for CI/CD environments. +## 🎯 Hardware Support + +- **First-class support**: NVIDIA GPUs +- **Second-class support**: Apple, AMD and Intel GPUs +- **Third-class support**: Other hardware + # 📚 Documentation - [Writing Hub kernels](./docs/writing-kernels.md) From 3cf5a621e1a83fdbdace12bb12caceffe08b19b4 Mon Sep 17 00:00:00 2001 From: drbh Date: Wed, 1 Oct 2025 16:28:57 -0400 Subject: [PATCH 2/2] feat: improve format and use table --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2e101598..ae5b4686 100644 --- a/README.md +++ b/README.md @@ -55,9 +55,13 @@ See [dockerfiles/README.md](./dockerfiles/README.md) for more options, including ## 🎯 Hardware Support -- **First-class support**: NVIDIA GPUs -- **Second-class support**: Apple, AMD and Intel GPUs -- **Third-class support**: Other hardware +| Hardware | Kernels Support | Kernel-Builder Support | Kernels Validated in CI | Tier | +| ---------- | --------------- | ---------------------- | ----------------------- | ---- | +| CUDA | ✓ | ✓ | ✓ | 1 | +| ROCm | ✓ | ✓ | ✗ | 2 | +| XPU | ✓ | ✓ | ✗ | 2 | +| Metal | ✓ | ✓ | ✗ | 2 | +| Huawei NPU | ✓ | ✗ | ✗ | 3 | # 📚 Documentation