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

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
Back to bloomen/transwarp

Projects sharing features with Transwarp

30 open-source projects similar to bloomen/transwarp, ranked by shared indexed features. Tags may describe platforms or build tools rather than the same primary purpose. Check each project’s use case, license, and deployment requirements before treating it as a replacement.

  • taskflow/taskflowtaskflow avatar

    taskflow/taskflow

    12,013View on GitHub↗

    Taskflow is a C++ task-parallel framework designed to build high-performance parallel workflows and complex dependency graphs. It provides a programming model that organizes computational work into directed acyclic graphs, enabling developers to manage concurrency, resource scheduling, and task dependencies across multi-core CPUs and GPU accelerators. The framework distinguishes itself through its ability to orchestrate heterogeneous systems, allowing for the integration of hardware-accelerated kernels and memory operations into unified execution pipelines. It supports dynamic runtime subflow

    C++concurrent-programmingcuda-programminggpu-programming
    View on GitHub↗12,013
  • facebookincubator/dispensofacebookincubator avatar

    facebookincubator/dispenso

    282View on GitHub↗

    The project provides high-performance concurrency, enabling highly parallel computation.

    C++
    View on GitHub↗282
  • david-haim/concurrencppDavid-Haim avatar

    David-Haim/concurrencpp

    2,755View on GitHub↗

    Modern concurrency for C++. Tasks, executors, timers and C++20 coroutines to rule them all

    C++
    View on GitHub↗2,755
  • cameron314/concurrentqueuecameron314 avatar

    cameron314/concurrentqueue

    12,070View on GitHub↗

    ConcurrentQueue is a header-only C++ template library that provides a lock-free data structure for multi-producer multi-consumer thread communication. It functions as a synchronization primitive designed to coordinate data flow between concurrent execution units using atomic operations rather than traditional mutex locking. The library distinguishes itself through a design that minimizes contention and synchronization overhead. It utilizes sub-queue token mapping to distribute workloads across partitioned internal queues and supports bulk operations to transfer multiple data elements in singl

    C++
    View on GitHub↗12,070

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Find more with AI search
  • stellar-group/hpxSTEllAR-GROUP avatar

    STEllAR-GROUP/hpx

    2,858View on GitHub↗

    The C++ Standard Library for Parallelism and Concurrency

    C++
    View on GitHub↗2,858
  • kokkos/kokkoskokkos avatar

    kokkos/kokkos

    2,571View on GitHub↗

    Kokkos C++ Performance Portability Programming Ecosystem: The Programming Model - Parallel Execution and Memory Abstraction

    C++
    View on GitHub↗2,571
  • preshing/junctionpreshing avatar

    preshing/junction

    1,452View on GitHub↗

    Concurrent data structures in C++

    C++
    View on GitHub↗1,452
  • jctools/jctoolsJCTools avatar

    JCTools/JCTools

    3,851View on GitHub↗

    JCTools is a Java concurrency library providing a collection of lock-less and wait-free data structures. It serves as a toolkit for managing thread-safe data exchange, specifically designed to optimize high-throughput messaging and producer-consumer patterns in multi-threaded applications. The library distinguishes itself by implementing specialized queue structures that minimize contention and maximize throughput. By utilizing techniques such as cache-line padding, memory-barrier-based synchronization, and relaxed-consistency memory ordering, it avoids the performance bottlenecks often assoc

    Javaawesomebenchmarksconcurrency
    View on GitHub↗3,851
  • microsoft/rusttrainingmicrosoft avatar

    microsoft/RustTraining

    14,636View on GitHub↗

    This project is a structured Rust programming curriculum and systems programming course designed to take learners from beginner to expert levels. It provides a comprehensive set of training materials focused on mastering the core syntax, idioms, and technical foundations of the Rust language. The project features a specialized language transition framework that maps concepts from C++, managed languages, and dynamic typing to Rust idioms. This allows developers from different ecosystems to translate architectural patterns and memory models into idiomatic Rust. The training covers a broad rang

    Rust
    View on GitHub↗14,636
  • andreiavrammsd/cpp-channelandreiavrammsd avatar

    andreiavrammsd/cpp-channel

    584View on GitHub↗

    C++11 thread-safe container for sharing data between threads (synchronized queue)

    C++channelconcurrent-queuecpp
    View on GitHub↗584
  • basiliscos/cpp-rotorbasiliscos avatar

    basiliscos/cpp-rotor

    388View on GitHub↗

    Event loop friendly C++ actor micro-framework, supervisable

    C++
    View on GitHub↗388
  • atgreen/cl-natsatgreen avatar

    atgreen/cl-nats

    11View on GitHub↗

    A full-featured NATS messaging client for Common Lisp.

    Common Lisp
    View on GitHub↗11
  • bloomberg/quantumbloomberg avatar

    bloomberg/quantum

    631View on GitHub↗

    Powerful multi-threaded coroutine dispatcher and parallel execution engine

    C++
    View on GitHub↗631
  • boostorg/computeboostorg avatar

    boostorg/compute

    1,654View on GitHub↗

    A C++ GPU Computing Library for OpenCL

    C++boostc-plus-pluscompute
    View on GitHub↗1,654
  • amanieu/asyncplusplusAmanieu avatar

    Amanieu/asyncplusplus

    1,417View on GitHub↗

    Async++ concurrency framework for C++11

    C++
    View on GitHub↗1,417
  • ahoward/forkoffahoward avatar

    ahoward/forkoff

    74View on GitHub↗

    brain-dead simple parallel processing for ruby

    Ruby
    View on GitHub↗74
  • atgreen/cl-etcdatgreen avatar

    atgreen/cl-etcd

    20View on GitHub↗

    Run etcd as an asynchronous inferior process

    Common Lisp
    View on GitHub↗20
  • computationalradiationphysics/alpakaComputationalRadiationPhysics avatar

    ComputationalRadiationPhysics/alpaka

    4View on GitHub↗

    The project alpaka has moved to https://github.com/alpaka-group/alpaka

    View on GitHub↗4
  • cameron314/readerwriterqueuecameron314 avatar

    cameron314/readerwriterqueue

    4,576View on GitHub↗

    This project is a single-producer single-consumer concurrent queue for C++ designed for lock-free data exchange between threads. It provides a thread-safe mechanism to transfer data without the use of mutexes or locks. The queue is implemented as a contiguous circular buffer that supports dynamic capacity growth to prevent data loss when the queue reaches its limit. It utilizes atomic synchronization and wait-free index management to coordinate data access between the writing and reading threads. The library covers inter-thread communication and buffer management, offering both blocking and

    C++
    View on GitHub↗4,576
  • atgreen/cl-cancelatgreen avatar

    atgreen/cl-cancel

    5View on GitHub↗

    Cancellation propagation library for Common Lisp with deadlines and timeouts

    Common Lisp
    View on GitHub↗5
  • computationalradiationphysics/cuplaComputationalRadiationPhysics avatar

    ComputationalRadiationPhysics/cupla

    4View on GitHub↗

    The project alpaka has moved to https://github.com/alpaka-group/cupla

    View on GitHub↗4
  • concurrencykit/ckconcurrencykit avatar

    concurrencykit/ck

    2,650View on GitHub↗

    Concurrency primitives, safe memory reclamation mechanisms and non-blocking (including lock-free) data structures designed to aid in the research, design and implementation of high performance concurrent systems developed in C99+.

    C
    View on GitHub↗2,650
  • conorwilliams/libforkConorWilliams avatar

    ConorWilliams/libfork

    879View on GitHub↗

    A bleeding-edge, lock-free, wait-free, continuation-stealing tasking library built on C++20's coroutines

    C++
    View on GitHub↗879
  • cosmos72/stmxcosmos72 avatar

    cosmos72/stmx

    258View on GitHub↗

    High performance Transactional Memory for Common Lisp

    Common Lisp
    View on GitHub↗258
  • cpp-taskflow/cpp-taskflowcpp-taskflow avatar

    cpp-taskflow/cpp-taskflow

    12,014View on GitHub↗

    Cpp-taskflow is a C++ task-parallelism framework and task graph scheduler designed to manage and execute complex dependency graphs of parallel tasks across CPU and GPU hardware. It provides a parallel algorithm library for high-performance implementations of reductions, sorts, pipelines, and iterations. The framework distinguishes itself through its ability to offload heavy computational workloads from a task graph to graphics processors for acceleration. It also includes a task profiling tool and a performance analysis interface for visualizing task execution flow and dependency structures t

    C++
    View on GitHub↗12,014
  • datenlord/async-rdmadatenlord avatar

    datenlord/async-rdma

    438View on GitHub↗

    A framework for writing RDMA applications with high-level abstraction and asynchronous APIs.

    Rust
    View on GitHub↗438
  • alpaka-group/alpakaalpaka-group avatar

    alpaka-group/alpaka

    416View on GitHub↗

    alpaka - Abstraction Library for Parallel Kernel Acceleration

    C++
    View on GitHub↗416
  • ddemidov/vexclddemidov avatar

    ddemidov/vexcl

    721View on GitHub↗

    VexCL is a C++ vector expression template library for OpenCL/CUDA/OpenMP

    C++
    View on GitHub↗721
  • developerpaul123/thread-poolDeveloperPaul123 avatar

    DeveloperPaul123/thread-pool

    556View on GitHub↗

    A modern, fast, lightweight thread pool library based on C++2x

    C++
    View on GitHub↗556
  • bshoshany/thread-poolbshoshany avatar

    bshoshany/thread-pool

    3,009View on GitHub↗

    BS::thread_pool: a fast, lightweight, modern, and easy-to-use C++17 / C++20 / C++23 thread pool library

    C++concurrencycpluspluscplusplus-17
    View on GitHub↗3,009