awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目MCP 服务器关于排名机制媒体报道
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 个仓库

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

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • webassembly/binaryenWebAssembly 的头像

    WebAssembly/binaryen

    8,354在 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
    在 GitHub 上查看↗8,354
  • tile-ai/tilelangtile-ai 的头像

    tile-ai/tilelang

    5,226在 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
    在 GitHub 上查看↗5,226
  • wemobiledev/articleWeMobileDev 的头像

    WeMobileDev/article

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

    在 GitHub 上查看↗4,395
  1. Home
  2. Programming Languages & Runtimes
  3. Function Inliners
  4. Partial Inlining

探索子标签

  • Schedule Block Inlining1 个子标签Inlining 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.