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
·

3 repositorios

Awesome GitHub RepositoriesGPU Stream Scheduling

Management of hardware execution streams to overlap compute and data transfer operations.

Distinct from Asynchronous Thread Schedulers: Focuses on CUDA stream management for overlapping async operations, not OS thread scheduling.

Explore 3 awesome GitHub repositories matching operating systems & systems programming · GPU Stream Scheduling. Refine with filters or upvote what's useful.

Awesome GPU Stream Scheduling GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • rapidsai/cudfAvatar de rapidsai

    rapidsai/cudf

    9,672Ver en GitHub↗

    cuDF is a GPU-accelerated dataframe library and data processing engine designed for manipulating and analyzing large tabular datasets. It provides a high-level API for executing filtering, joining, and aggregating operations directly on GPU hardware. The project integrates the Apache Arrow memory format to enable zero-copy data transfers and includes a just-in-time compiler for executing custom user-defined functions on the GPU. The library features specialized acceleration for existing workflows by redirecting standard Pandas dataframe calls and Polars query plans to a GPU backend. It also p

    Assigns individual CUDA streams to host threads to overlap asynchronous data copies with kernel execution.

    C++
    Ver en GitHub↗9,672
  • nvidia/warpAvatar de NVIDIA

    NVIDIA/warp

    6,233Ver en GitHub↗

    Warp is a Python framework that JIT-compiles Python functions into CUDA kernels for GPU-accelerated parallel computation, with built-in automatic differentiation and multi-framework array interoperability. At its core, it provides a GPU kernel compilation system that enables writing and executing custom GPU kernels directly from Python, while supporting automatic gradient computation through those kernels for integration with machine learning pipelines. The framework also includes tile-based cooperative computing, where thread blocks partition into tiles for shared-memory and tensor-core opera

    Groups GPU operations into ordered sequences that execute concurrently on the same device to overlap compute and data transfers.

    Pythoncudadifferentiable-programminggpu
    Ver en GitHub↗6,233
  • juliagpu/cuda.jlAvatar de JuliaGPU

    JuliaGPU/CUDA.jl

    1,409Ver en GitHub↗

    CUDA.jl provides a programming interface for executing custom kernels and performing parallel array computing directly on NVIDIA graphics hardware using the Julia language. It serves as a framework for compiling and scheduling user-defined functions across multiple processing cores, enabling high-performance data processing and task synchronization. The library distinguishes itself through a custom compiler backend that translates high-level language functions into hardware-specific machine code. It manages complex hardware interactions through asynchronous stream scheduling, unified memory m

    Manages hardware execution streams to overlap computation and data transfer for maximum throughput.

    Juliacudagpuhacktoberfest
    Ver en GitHub↗1,409
  1. Home
  2. Operating Systems & Systems Programming
  3. GPU Stream Scheduling