Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: huggingface/kernels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.1
Choose a base ref
...
head repository: huggingface/kernels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.11.2
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Dec 4, 2025

  1. Support noarch build variants

    This change adds support for noarch build variants. So far we have used
    the universal variant for kernels that do not have any AoT-compiled code.
    However, the universal variant has two important issues:
    
    1. A kernel without AoT-compiled might still be backend-specific. E.g.
      NVIDIA CuTe-based kernels are not universal in the sense that they
      don't work on non-NVIDIA GPUs.
    2. We cannot specify dependencies per backend.
    
    To solve these issues, we introduce the noarch variants to replace
    universal kernels. Noarch kernels have variants of the shape
    `torch-<backend>` (e.g. `torch-xpu`). This resolves the issues outlined.
    
    This change introduces support for loading noarch kernels. In the
    future, we will start emitting deprecation warnings for universal
    kernels (to eventually remove support).
    danieldk committed Dec 4, 2025
    Configuration menu
    Copy the full SHA
    d258c3c View commit details
    Browse the repository at this point in the history
  2. Set version to 0.11.2

    danieldk committed Dec 4, 2025
    Configuration menu
    Copy the full SHA
    4a7c041 View commit details
    Browse the repository at this point in the history
Loading