@QuixiAI: https://x.com/QuixiAI/status/2073936537213915611

X AI KOLs Following Tools

Summary

QuixiAI released QuixiCore, a family of native high-performance AI kernel libraries for modern accelerators, with standalone implementations for CUDA, Metal, ROCm, XPU, and Gaudi backends, all sharing a common contract but no shared code.

https://t.co/is9QKJwZgO
Original Article
View Cached Full Text

Cached at: 07/06/26, 01:59 AM

QuixiAI/QuixiCore

Source: https://github.com/QuixiAI/QuixiCore

QuixiCore

QuixiCore is a family of native high-performance AI kernel libraries for modern accelerators.

QuixiCore is one kernel library contract with five standalone native implementations: CUDA, Metal, ROCm, XPU, and Gaudi.

Each backend is a standalone implementation written directly for its target platform. The repositories share no implementation code. They share a common kernel contract: the same operations, quant formats, correctness expectations, benchmark methodology, and public library identity.

Backends

BackendPlatformRepository
QuixiCore CUDANVIDIA CUDA, Ampere+QuixiAI/QuixiCore-CUDA
QuixiCore MetalApple Silicon / MetalQuixiAI/QuixiCore-Metal
QuixiCore ROCmAMD ROCm / CDNA2-4QuixiAI/QuixiCore-ROCm
QuixiCore XPUIntel GPU / oneAPI / SYCLQuixiAI/QuixiCore-XPU
QuixiCore GaudiIntel Gaudi2-3 / HPUQuixiAI/QuixiCore-Gaudi

Design Philosophy

QuixiCore is built around one principle:

Native implementations. Shared contract. No shared code.

CUDA kernels should be written like CUDA kernels. Metal kernels should be written like Metal kernels. ROCm kernels should be written like ROCm kernels. XPU kernels should be written for Intel GPU tooling. Gaudi kernels should be written for the Gaudi HPU/TPC stack.

The shared layer is not source code. The shared layer is the definition of what each backend must implement.

Backend Relationship

The umbrella repository links to backend repositories but does not vendor them.

QuixiCore does not use git submodules. Each backend declares the QuixiCore contract version it implements using backend metadata, and implementation work happens in that backend repository.

Repository Role

This repository is the umbrella contract repository for the QuixiCore family. It contains:

  • Backend registry metadata
  • Kernel and quant format registries
  • Correctness and benchmarking specifications
  • Coverage and architecture support matrices
  • Release and naming policy
  • Test-vector organization

It intentionally does not contain backend implementation code, shared kernel code, platform bindings, or build systems.

Contract Version

The initial contract target is v0.1. See roadmap/v0.1-checklist.md for the checklist that turns the current scaffold into a usable compatibility target.

Similar Articles