awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repositorios

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

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • webassembly/binaryenAvatar de WebAssembly

    WebAssembly/binaryen

    8,354Ver en 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
    Ver en GitHub↗8,354
  • tile-ai/tilelangAvatar de tile-ai

    tile-ai/tilelang

    5,226Ver en 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
    Ver en GitHub↗5,226
  • wemobiledev/articleAvatar de WeMobileDev

    WeMobileDev/article

    4,395Ver en 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.

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

Explorar subetiquetas

  • Schedule Block Inlining1 sub-etiquetaInlining 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.