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
·

6 repositorios

Awesome GitHub RepositoriesNumPy-Compatible Frameworks

Numerical computing frameworks that extend the NumPy API with automatic differentiation and JIT compilation.

Distinct from Automatic Differentiation Frameworks: Existing candidates focus on differentiation engines, not the specific identity of being a NumPy-compatible numerical framework.

Explore 6 awesome GitHub repositories matching scientific & mathematical computing · NumPy-Compatible Frameworks. Refine with filters or upvote what's useful.

Awesome NumPy-Compatible Frameworks GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • google/jaxAvatar de google

    google/jax

    35,835Ver en GitHub↗

    JAX is a hardware-accelerated array library and automatic differentiation system for numerical computing. It provides a framework compatible with NumPy that extends array operations with a just-in-time compiler to transform Python functions into optimized kernels for execution on GPU and TPU accelerators. The system differentiates itself through the use of an XLA-based compiler and a single program multiple data sharding model. These capabilities allow the library to distribute large-scale computations across multiple hardware accelerators using both automatic parallelization and manual shard

    Extends NumPy with automatic differentiation and JIT compilation for high-performance numerical computing.

    Python
    Ver en GitHub↗35,835
  • pybind/pybind11Avatar de pybind

    pybind/pybind11

    17,913Ver en GitHub↗

    pybind11 is a header-only C++ binding library that exposes C++ functions and classes as Python modules. It serves as a language bridge, mapping native types, inheritance hierarchies, and lambda functions into compatible Python objects to enable high-performance native code execution. The library includes specialized integration for NumPy arrays, utilizing buffer protocols to bind native C++ data without copying memory. It provides a toolkit for mapping C++ standard library data structures and smart pointers into the Python environment while maintaining cross-language memory management. The p

    Provides a bridge that makes native C++ data fully compatible with NumPy frameworks.

    C++
    Ver en GitHub↗17,913
  • exaloop/codonAvatar de exaloop

    exaloop/codon

    16,803Ver en GitHub↗

    Codon is an LLVM-based Python compiler and statically typed implementation that translates source code into optimized machine instructions. It functions as a high-performance numerical backend and a GPU computing framework designed to remove runtime overhead. The project implements a compiled alternative to NumPy, translating array logic directly into machine code. It differentiates itself by generating specialized hardware kernels for graphics processors and utilizing static type inference to enable aggressive machine-code optimization. The system provides capabilities for parallel workload

    Provides a high-performance numerical backend that implements array operations via direct machine-code translation.

    Python
    Ver en GitHub↗16,803
  • dusty-nv/jetson-inferenceAvatar de dusty-nv

    dusty-nv/jetson-inference

    8,734Ver en GitHub↗

    jetson-inference is a set of libraries and tools for executing optimized deep learning models on embedded GPU hardware. Its primary purpose is to enable real-time computer vision and AI inference at the edge with low latency and high throughput. The project distinguishes itself through high-performance streaming analytics and the ability to execute concurrent AI pipelines on auto-grade silicon. It provides specialized support for multi-sensor stream processing, utilizing zero-copy data transport to load camera frames directly into GPU memory. The codebase covers a broad surface of capabiliti

    Executes NumPy API operations across multiple GPUs and nodes to handle large-scale numerical computing.

    C++caffecomputer-visiondeep-learning
    Ver en GitHub↗8,734
  • nvidia/isaac-gr00tAvatar de NVIDIA

    NVIDIA/Isaac-GR00T

    6,222Ver en GitHub↗

    Runs existing NumPy code unchanged across thousands of GPUs on multiple nodes.

    Jupyter Notebook
    Ver en GitHub↗6,222
  • xtensor-stack/xtensorAvatar de xtensor-stack

    xtensor-stack/xtensor

    3,748Ver en GitHub↗

    xtensor is a C++ multidimensional array library for numerical computing that provides N-dimensional containers with an interface mirroring the NumPy API. It utilizes a lazy evaluation expression engine to defer numerical computations until assignment, which minimizes memory allocations and intermediate copies. The library features a foreign memory array adaptor that allows it to wrap external buffers, such as NumPy arrays, to perform numerical operations in-place without duplicating data. It further optimizes performance through lazy broadcasting and a system that manages the lifetime of temp

    Provides a C++ implementation of array operations and syntax designed to mirror the NumPy API for data science.

    C++c-plus-plus-14multidimensional-arraysnumpy
    Ver en GitHub↗3,748
  1. Home
  2. Scientific & Mathematical Computing
  3. NumPy-Compatible Frameworks

Explorar subetiquetas

  • Compiled Numerical BackendsHigh-performance numerical frameworks that replace interpreted array logic with direct machine-code translation. **Distinct from NumPy-Compatible Frameworks:** Distinct from general compatible frameworks by focusing on the compiled nature of the backend rather than just API compatibility or JIT
  • Distributed NumPy WorkflowsExecution of NumPy API operations distributed across multiple GPU nodes without modifying source code. **Distinct from NumPy-Compatible Frameworks:** Specifically focuses on the distributed execution of the NumPy API, not just NumPy compatibility.