awesome-repositories.com
Blog
MCP
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 dépôts

Awesome GitHub RepositoriesPartial Inlining

Inlining only specific portions of a function, such as initial branches, to reduce overhead.

Distinct from Function Inliners: Distinct from full Function Inlining by selectively inlining only the entry logic rather than the whole body.

Explore 3 awesome GitHub repositories matching programming languages & runtimes · Partial Inlining. Refine with filters or upvote what's useful.

Awesome Partial Inlining GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • webassembly/binaryenAvatar de WebAssembly

    WebAssembly/binaryen

    8,354Voir sur GitHub↗

    Binaryen is a WebAssembly compiler toolchain and optimizer designed to transform, validate, and shrink binary modules. It provides a comprehensive intermediate representation framework that converts binary code into a single-assignment form to enable advanced program analysis and code transformation. The project includes a specialized transformation engine that applies iterative optimization passes to increase execution speed and reduce binary size. Additionally, it functions as a transpiler that translates WebAssembly binary modules into executable JavaScript for environments that lack nativ

    Inlines initial conditional branches of functions to reduce call overhead without inlining the entire body.

    WebAssemblyc-plus-pluscompilersemscripten
    Voir sur GitHub↗8,354
  • tile-ai/tilelangAvatar de tile-ai

    tile-ai/tilelang

    5,226Voir sur GitHub↗

    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

    Inlines schedule blocks in kernels to reduce execution overhead.

    Python
    Voir sur GitHub↗5,226
  • wemobiledev/articleAvatar de WeMobileDev

    WeMobileDev/article

    4,395Voir sur GitHub↗

    This repository is a collection of technical knowledge and solutions focused on mobile application development, particularly for Android and iOS platforms. It covers a wide range of practical engineering challenges, including hotfix and patching techniques, database management and repair, network communication, logging, and video processing. The content is presented as shared knowledge, documenting real-world problems and their implementations. The project provides detailed guidance on applying hotfixes to running Android applications through multiple methods, such as class replacement, full

    Documents techniques to prevent ART compiler inlining for preserving hotfix correctness.

    Voir sur GitHub↗4,395
  1. Home
  2. Programming Languages & Runtimes
  3. Function Inliners
  4. Partial Inlining

Explorer les sous-tags

  • Schedule Block Inlining1 sous-tagInlining selected compiler schedule blocks into their consumers to simplify kernel code and reduce execution overhead. **Distinct from Partial Inlining:** More specific than Partial Inlining: targets compiler schedule blocks rather than general function inlining.