awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Back to david-haim/concurrencpp

Open-source alternatives to Concurrencpp

30 open-source projects similar to david-haim/concurrencpp, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Concurrencpp alternative.

  • cameron314/concurrentqueuecameron314 的头像

    cameron314/concurrentqueue

    12,070在 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++
    在 GitHub 上查看↗12,070
  • preshing/junctionpreshing 的头像

    preshing/junction

    1,452在 GitHub 上查看↗

    Concurrent data structures in C++

    C++
    在 GitHub 上查看↗1,452
  • bloomen/transwarpbloomen 的头像

    bloomen/transwarp

    633在 GitHub 上查看↗

    A header-only C++ library for task concurrency

    C++
    在 GitHub 上查看↗633
  • taskflow/taskflowtaskflow 的头像

    taskflow/taskflow

    12,013在 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
    在 GitHub 上查看↗12,013

AI 搜索

探索更多 awesome 仓库

用简单的语言描述您的需求 —— AI 将根据相关性为您从数千个精选开源项目中进行排序。

Find more with AI search
  • jctools/jctoolsJCTools 的头像

    JCTools/JCTools

    3,851在 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
    在 GitHub 上查看↗3,851
  • microsoft/rusttrainingmicrosoft 的头像

    microsoft/RustTraining

    14,636在 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
    在 GitHub 上查看↗14,636
  • arrayfire/arrayfirearrayfire 的头像

    arrayfire/arrayfire

    4,888在 GitHub 上查看↗

    ArrayFire is a hardware-agnostic compute framework and JIT-compiled tensor engine designed for high-performance numerical computing. It serves as a GPU numerical computing library and parallel signal processing toolkit that abstracts hardware backends, allowing the same codebase to execute across various GPU architectures and CPUs. The project distinguishes itself through a JIT engine that uses expression compilation to fuse operations and minimize memory overhead. It employs a deferred execution graph to optimize computation chains and provides interoperability primitives to share data and e

    C++arrayfirecc-plus-plus
    在 GitHub 上查看↗4,888
  • apple/swift-corelibs-libdispatchapple 的头像

    apple/swift-corelibs-libdispatch

    2,596在 GitHub 上查看↗

    The libdispatch Project, (a.k.a. Grand Central Dispatch), for concurrency on multicore hardware

    C
    在 GitHub 上查看↗2,596
  • alkenso/execqAlkenso 的头像

    Alkenso/execq

    45在 GitHub 上查看↗

    Smart queue that executes tasks in threadpool-like manner

    C++
    在 GitHub 上查看↗45
  • basiliscos/cpp-rotorbasiliscos 的头像

    basiliscos/cpp-rotor

    388在 GitHub 上查看↗

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

    C++
    在 GitHub 上查看↗388
  • bloomberg/quantumbloomberg 的头像

    bloomberg/quantum

    631在 GitHub 上查看↗

    Powerful multi-threaded coroutine dispatcher and parallel execution engine

    C++
    在 GitHub 上查看↗631
  • ddemidov/vexclddemidov 的头像

    ddemidov/vexcl

    721在 GitHub 上查看↗

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

    C++
    在 GitHub 上查看↗721
  • boostorg/computeboostorg 的头像

    boostorg/compute

    1,654在 GitHub 上查看↗

    A C++ GPU Computing Library for OpenCL

    C++boostc-plus-pluscompute
    在 GitHub 上查看↗1,654
  • borodust/cl-flowborodust 的头像

    borodust/cl-flow

    52在 GitHub 上查看↗

    Reactive computation tree library for non-blocking concurrent Common Lisp

    Common Lisp
    在 GitHub 上查看↗52
  • atgreen/cl-natsatgreen 的头像

    atgreen/cl-nats

    11在 GitHub 上查看↗

    A full-featured NATS messaging client for Common Lisp.

    Common Lisp
    在 GitHub 上查看↗11
  • andreiavrammsd/cpp-channelandreiavrammsd 的头像

    andreiavrammsd/cpp-channel

    584在 GitHub 上查看↗

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

    C++channelconcurrent-queuecpp
    在 GitHub 上查看↗584
  • cameron314/readerwriterqueuecameron314 的头像

    cameron314/readerwriterqueue

    4,576在 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++
    在 GitHub 上查看↗4,576
  • atgreen/cl-etcdatgreen 的头像

    atgreen/cl-etcd

    20在 GitHub 上查看↗

    Run etcd as an asynchronous inferior process

    Common Lisp
    在 GitHub 上查看↗20
  • computationalradiationphysics/alpakaComputationalRadiationPhysics 的头像

    ComputationalRadiationPhysics/alpaka

    4在 GitHub 上查看↗

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

    在 GitHub 上查看↗4
  • computationalradiationphysics/cuplaComputationalRadiationPhysics 的头像

    ComputationalRadiationPhysics/cupla

    4在 GitHub 上查看↗

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

    在 GitHub 上查看↗4
  • concurrencykit/ckconcurrencykit 的头像

    concurrencykit/ck

    2,650在 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
    在 GitHub 上查看↗2,650
  • conorwilliams/libforkConorWilliams 的头像

    ConorWilliams/libfork

    879在 GitHub 上查看↗

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

    C++
    在 GitHub 上查看↗879
  • cosmos72/stmxcosmos72 的头像

    cosmos72/stmx

    258在 GitHub 上查看↗

    High performance Transactional Memory for Common Lisp

    Common Lisp
    在 GitHub 上查看↗258
  • cpp-taskflow/cpp-taskflowcpp-taskflow 的头像

    cpp-taskflow/cpp-taskflow

    12,014在 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++
    在 GitHub 上查看↗12,014
  • bshoshany/thread-poolbshoshany 的头像

    bshoshany/thread-pool

    3,009在 GitHub 上查看↗

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

    C++concurrencycpluspluscplusplus-17
    在 GitHub 上查看↗3,009
  • developerpaul123/thread-poolDeveloperPaul123 的头像

    DeveloperPaul123/thread-pool

    556在 GitHub 上查看↗

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

    C++
    在 GitHub 上查看↗556
  • digital-fabric/polyphonydigital-fabric 的头像

    digital-fabric/polyphony

    662在 GitHub 上查看↗

    Fine-grained concurrency for Ruby

    C
    在 GitHub 上查看↗662
  • eventmachine/eventmachineeventmachine 的头像

    eventmachine/eventmachine

    4,283在 GitHub 上查看↗

    EventMachine is a reactor-pattern network framework for Ruby that provides an asynchronous I/O library for performing non-blocking network and file operations. It functions as a network server framework used to build scalable TCP and UDP servers and clients that process multiple simultaneous requests. The framework implements a concurrency model that dispatches network events to registered handlers using a single-threaded event loop. This approach allows for the management of high-concurrency network connections without the overhead of multi-threaded programming. The library covers the devel

    Ruby
    在 GitHub 上查看↗4,283
  • eyalroz/cuda-api-wrapperseyalroz 的头像

    eyalroz/cuda-api-wrappers

    890在 GitHub 上查看↗

    Thin, unified, C++-flavored wrappers for the CUDA APIs

    C++
    在 GitHub 上查看↗890
  • brown/swank-crewbrown 的头像

    brown/swank-crew

    48在 GitHub 上查看↗

    Common Lisp distributed computation framework implemented using Swank Client

    Common Lisp
    在 GitHub 上查看↗48