awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم 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

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • webassembly/binaryenالصورة الرمزية لـ WebAssembly

    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/tilelangالصورة الرمزية لـ tile-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/articleالصورة الرمزية لـ WeMobileDev

    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.