|
| 1 | +# Capability and Support Matrix |
| 2 | + |
| 3 | +This page records which CPU and GPU architectures each PRISM-Q backend supports, |
| 4 | +and where distributed execution stands. CPU backends are written in portable Rust |
| 5 | +and run on every supported architecture; SIMD acceleration (AVX2/FMA/BMI2 on |
| 6 | +x86-64, NEON on ARM64) is selected at runtime where a kernel exists, otherwise a |
| 7 | +scalar path is used. |
| 8 | + |
| 9 | +## Legend |
| 10 | + |
| 11 | +| Mark | Meaning | |
| 12 | +| --- | --- | |
| 13 | +| Yes | Supported | |
| 14 | +| SIMD | Supported with a dedicated SIMD-accelerated kernel on this architecture | |
| 15 | +| Scalar | Runs, but without a dedicated SIMD kernel (portable fallback) | |
| 16 | +| No | Not available for this backend | |
| 17 | +| Planned | Not implemented yet; on the roadmap | |
| 18 | + |
| 19 | +## Backend support by architecture |
| 20 | + |
| 21 | +| Backend | x86-64 | AVX2/FMA/BMI2 | ARM64 | NEON | CUDA (NVIDIA) | ROCm (AMD) | Distributed | |
| 22 | +| --- | --- | --- | --- | --- | --- | --- | --- | |
| 23 | +| Statevector | Yes | SIMD | Yes | SIMD | Yes | Planned | Planned | |
| 24 | +| Stabilizer | Yes | SIMD | Yes | SIMD | Yes | Planned | Planned | |
| 25 | +| Factored Stabilizer | Yes | SIMD | Yes | SIMD | No | Planned | Planned | |
| 26 | +| Sparse | Yes | Scalar | Yes | Scalar | No | Planned | Planned | |
| 27 | +| MPS | Yes | SIMD | Yes | SIMD | No | Planned | Planned | |
| 28 | +| Product State | Yes | Scalar | Yes | Scalar | No | Planned | Planned | |
| 29 | +| Tensor Network | Yes | Scalar | Yes | Scalar | No | Planned | Planned | |
| 30 | +| Factored | Yes | SIMD | Yes | SIMD | No | Planned | Planned | |
| 31 | +| Stabilizer Rank | Yes | SIMD | Yes | SIMD | No | Planned | Planned | |
| 32 | +| Stochastic Pauli | Yes | Scalar | Yes | Scalar | No | Planned | Planned | |
| 33 | +| Deterministic Pauli | Yes | Scalar | Yes | Scalar | No | Planned | Planned | |
| 34 | + |
| 35 | +Notes: |
| 36 | + |
| 37 | +- **AVX2/FMA/BMI2** is the x86-64 SIMD tier. The active tier is chosen at runtime |
| 38 | + (AVX2+FMA, then FMA, then SSE2 baseline). See |
| 39 | + [Threading, SIMD, and Memory Layout](../architecture/threading-simd.md). |
| 40 | +- **NEON** is the ARM64 SIMD tier. Backends marked `SIMD` carry a NEON kernel that |
| 41 | + mirrors the x86-64 path; the rest fall back to scalar code on ARM64. |
| 42 | +- **CUDA** covers the optional `gpu` feature. Only the statevector and stabilizer |
| 43 | + paths have device kernels; every other backend runs on CPU. See the |
| 44 | + [GPU Backend](./gpu.md) guide. |
| 45 | + |
| 46 | +## Not yet supported |
| 47 | + |
| 48 | +| Target | Status | Notes | |
| 49 | +| --- | --- | --- | |
| 50 | +| ROCm (AMD GPU) | Planned | No AMD device kernels; the GPU path is CUDA-only | |
| 51 | +| Distributed CPU | Planned | No multi-node execution | |
| 52 | +| Distributed GPU | Planned | No multi-node GPU execution | |
| 53 | +| Multi-GPU | Planned | A GPU context binds a single device | |
| 54 | + |
| 55 | +These targets are listed so the matrix reflects the roadmap rather than hiding |
| 56 | +the gaps. Distributed execution is not a code path PRISM-Q exposes today. |
0 commit comments