awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 Repos

Awesome GitHub RepositoriesKernel Caching Systems

Mechanisms for persisting hardware-specific operator data to disk to accelerate initialization.

Distinct from Kernel Optimizations: Focuses on the persistence and caching of kernel data, distinct from the implementation of the kernels themselves.

Explore 4 awesome GitHub repositories matching artificial intelligence & ml · Kernel Caching Systems. Refine with filters or upvote what's useful.

Awesome Kernel Caching Systems GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • alibaba/mnnAvatar von alibaba

    alibaba/MNN

    14,242Auf GitHub ansehen↗

    MNN is a high-performance inference engine and framework designed for on-device machine learning. It provides a comprehensive environment for executing, optimizing, and deploying neural network models directly on mobile and resource-constrained edge devices. The framework distinguishes itself through a robust model optimization toolkit that supports quantization, compression, and structural graph manipulation to minimize memory footprint and maximize execution speed. It features a modular architecture that abstracts hardware-specific backends, allowing models to run efficiently across diverse

    Persists hardware-specific kernel data to disk to accelerate model initialization times.

    C++armconvolutiondeep-learning
    Auf GitHub ansehen↗14,242
  • nvidia/warpAvatar von NVIDIA

    NVIDIA/warp

    6,233Auf GitHub ansehen↗

    Warp is a Python framework that JIT-compiles Python functions into CUDA kernels for GPU-accelerated parallel computation, with built-in automatic differentiation and multi-framework array interoperability. At its core, it provides a GPU kernel compilation system that enables writing and executing custom GPU kernels directly from Python, while supporting automatic gradient computation through those kernels for integration with machine learning pipelines. The framework also includes tile-based cooperative computing, where thread blocks partition into tiles for shared-memory and tensor-core opera

    Stores compiled GPU kernels between application runs to skip recompilation on subsequent launches.

    Pythoncudadifferentiable-programminggpu
    Auf GitHub ansehen↗6,233
  • voila-dashboards/voilaAvatar von voila-dashboards

    voila-dashboards/voila

    5,935Auf GitHub ansehen↗

    Voilà is a tool that converts Jupyter notebooks into standalone interactive web applications. It renders notebook cells as HTML web components, preserving live widgets while stripping source code by default, and gives each viewer a dedicated Jupyter kernel for isolated widget state and callback execution. The project runs as a Jupyter server extension, reusing existing server infrastructure for notebook serving and authentication. It supports directory-based notebook hosting, serving all notebooks in a folder as a browsable collection of web applications from a single command. Voilà also prov

    Starts a notebook's kernel before the first user request so the dashboard loads faster.

    Python
    Auf GitHub ansehen↗5,935
  • tile-ai/tilelangAvatar von tile-ai

    tile-ai/tilelang

    5,226Auf GitHub ansehen↗

    TileLang is a Python-embedded domain-specific language compiler that JIT-compiles and autotunes GPU kernels. It uses a tile-based DSL, automatic software pipelining, and parallel autotuning to generate optimized GPU kernels at runtime. It supports tensor core operations with Pythonic syntax, automatic memory management, and thread mapping. The compiler searches over tile sizes, thread counts, and scheduling policies, compiling and benchmarking candidates in parallel to find the fastest kernel. It also caches compiled binaries and tuning results to disk for reuse across sessions. TileLang inc

    Loads compiled kernels from cache to avoid recompilation across sessions.

    Python
    Auf GitHub ansehen↗5,226
  1. Home
  2. Artificial Intelligence & ML
  3. Kernel Optimizations
  4. Kernel Caching Systems

Unter-Tags erkunden

  • Cached Kernel Loading1 Sub-TagReconstructing a compiled kernel adapter from previously cached compilation results to avoid recompilation. **Distinct from Kernel Caching Systems:** More specific than Kernel Caching Systems: focuses on loading from cache, not general persistence.