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

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repository-uri

Awesome GitHub RepositoriesData Dependency Analysis

Analyzing how data flows through a program to identify inputs that influence specific outputs.

Distinct from Inter-procedural Data Flow: Focuses on analyzing dependencies for program behavior rather than just inter-procedural taint tracking.

Explore 3 awesome GitHub repositories matching web development · Data Dependency Analysis. Refine with filters or upvote what's useful.

Awesome Data Dependency Analysis GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • angr/angrAvatar angr

    angr/angr

    8,898Vezi pe GitHub↗

    Angr is a binary analysis framework and static analysis tool used for reverse engineering compiled binaries. It serves as a binary decompiler and a lifting platform that translates machine code into a common intermediate representation to enable cross-architecture analysis. The framework integrates a symbolic execution engine and constraint solvers to determine the inputs required to reach specific program states. It also employs untrusted code sandboxing to isolate guest code from the host environment during analysis. Its capabilities cover control flow and data flow analysis, including the

    Identifies data dependencies to determine how specific inputs influence program outputs and internal behaviors.

    Python
    Vezi pe GitHub↗8,898
  • day8/re-frameAvatar day8

    day8/re-frame

    5,532Vezi pe GitHub↗

    re-frame este un framework funcțional pentru construirea de aplicații single-page în ClojureScript. Acesta oferă o bază de date centralizată și imutabilă care servește drept unică sursă de adevăr pentru întreaga stare a aplicației, impunând un flux de date unidirecțional strict, unde evenimentele declanșează tranziții de stare și actualizări ulterioare ale vizualizărilor. Framework-ul se distinge printr-un graf de semnale reactive și un pipeline de middleware bazat pe interceptoare. Tratând logica aplicației ca pe o secvență de evenimente bazate pe date și efecte secundare declarative, acesta decuplează logica de business de stratul de vizualizare. Această arhitectură permite dezvoltatorilor să gestioneze tranziții complexe de stare și operațiuni externe prin funcții pure, asigurându-se că efectele secundare sunt executate de un interpretor separat, nu prin apeluri imperative. Sistemul include o suită cuprinzătoare de capabilități pentru gestionarea arhitecturii aplicației, inclusiv derivarea reactivă a datelor, reconcilierea vizualizărilor bazată pe abonamente și gestionarea stării bazată pe evenimente. Suportă fluxuri de lucru avansate, cum ar fi trasarea evenimentelor, checkpoint-uri de stare și capacitatea de a simula (stub) efecte secundare pentru testare izolată. Proiectul este conceput pentru integrarea cu React, utilizând reconcilierea virtual DOM pentru a actualiza eficient interfețele utilizator. Oferă un set robust de utilitare pentru gestionarea problemelor transversale, gestionarea grafurilor complexe de flux de date și coordonarea operațiunilor asincrone într-un pipeline de evenimente secvențial și predictibil.

    Links data transformation nodes into dependency graphs to ensure downstream calculations execute after upstream updates.

    Clojureclojurescriptre-framereact
    Vezi pe GitHub↗5,532
  • tiramisu-compiler/tiramisuAvatar Tiramisu-Compiler

    Tiramisu-Compiler/tiramisu

    960Vezi pe GitHub↗

    Tiramisu is a polyhedral C++ compiler framework designed to express and optimize data-parallel algorithms for diverse hardware accelerators. It provides a programming interface that allows developers to define mathematical expressions, manage loop iteration spaces, and organize functions targeting heterogeneous architectures. The system features an advanced compilation infrastructure that abstracts computations into a hardware-agnostic intermediate representation before lowering them into native machine code or hardware configuration bitstreams. It calculates exact data flow dependencies thro

    Calculates exact data flow dependencies between array accesses to guarantee safety during automated loop restructuring.

    C++code-generationcompilerdeep-neural-networks
    Vezi pe GitHub↗960
  1. Home
  2. Web Development
  3. Data Flow Architectures
  4. Taint Analysis Engines
  5. Inter-procedural Data Flow
  6. Data Dependency Analysis

Explorează sub-etichetele

  • Dependent Flow CompositionLinks multiple data transformation nodes together into a dependency graph so that downstream calculations execute only after upstream inputs are updated. **Distinct from Data Dependency Analysis:** Distinct from Data Dependency Analysis: focuses on the composition of transformation flows, rather than analysis of data dependencies.
  • Polyhedral Dependence AnalysesCalculates exact data flow dependencies between array accesses to guarantee safety during automated loop restructuring. **Distinct from Data Dependency Analysis:** Distinct from general data dependency analysis: calculates exact data flow dependencies using polyhedral analysis for safe loop restructuring.