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

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

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 مستودعات

Awesome GitHub RepositoriesGraph-Based

Intermediate representations that structure code as node networks for parallel execution.

Distinct from Bytecode: Distinct from general bytecode: focuses on node-oriented graph structures for parallel hardware traversal.

Explore 2 awesome GitHub repositories matching programming languages & runtimes · Graph-Based. Refine with filters or upvote what's useful.

Awesome Graph-Based GitHub Repositories

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

    HigherOrderCO/Bend

    19,175عرض على GitHub↗

    Bend is a high-level parallel programming language and compiler designed to execute code across multi-core CPUs and GPUs automatically. By translating functional source code into a graph-based intermediate representation, it enables massive parallel execution without requiring manual management of threads, locks, or atomic operations. The runtime operates as an interaction net engine, where computations are represented as networks of nodes that reduce through local rewriting rules. This model utilizes a work-stealing scheduler to distribute tasks across thousands of hardware threads, ensuring

    Transforms source code into a compact, node-oriented intermediate representation for efficient parallel processing.

    Rust
    عرض على GitHub↗19,175
  • google/blocklyالصورة الرمزية لـ google

    google/blockly

    13,436عرض على GitHub↗

    Blockly is a block-based coding library and visual programming editor that allows users to build programs by interlocking graphical blocks. It functions as a visual code generator, translating these arrangements of logic blocks and variables into executable source code for various programming languages. The library provides a framework for creating custom visual programming languages and low-code logic designers. It utilizes an SVG-based UI library to render interactive, draggable elements on a web canvas. The system is designed as an accessible web UI framework with integrated keyboard navi

    Maintains the program structure as a tree of connected nodes mapping visual blocks to a logical hierarchy.

    JavaScript
    عرض على GitHub↗13,436
  1. Home
  2. Programming Languages & Runtimes
  3. Compiler and Interpreter Internals
  4. Compiler Infrastructure
  5. Intermediate Representations
  6. Bytecode
  7. Graph-Based

استكشف الوسوم الفرعية

  • Visual Block RepresentationsIntermediate representations that map graphical block arrangements to a logical tree hierarchy. **Distinct from Graph-Based:** Specifically maps visual block interfaces to ASTs, whereas Graph-Based is generally for parallel hardware execution.