awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Back to mtmucha/coros

Open-source alternatives to Coros

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

  • microsoft/rusttrainingالصورة الرمزية لـ microsoft

    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
  • amanieu/asyncplusplusالصورة الرمزية لـ Amanieu

    Amanieu/asyncplusplus

    1,417عرض على GitHub↗

    Async++ concurrency framework for C++11

    C++
    عرض على GitHub↗1,417
  • bshoshany/thread-poolالصورة الرمزية لـ bshoshany

    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
  • apple/swift-corelibs-libdispatchالصورة الرمزية لـ apple

    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

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Find more with AI search
arrayfire/arrayfireالصورة الرمزية لـ arrayfire

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
  • atgreen/cl-cancelالصورة الرمزية لـ atgreen

    atgreen/cl-cancel

    5عرض على GitHub↗

    Cancellation propagation library for Common Lisp with deadlines and timeouts

    Common Lisp
    عرض على GitHub↗5
  • atgreen/cl-etcdالصورة الرمزية لـ atgreen

    atgreen/cl-etcd

    20عرض على GitHub↗

    Run etcd as an asynchronous inferior process

    Common Lisp
    عرض على GitHub↗20
  • atgreen/cl-natsالصورة الرمزية لـ atgreen

    atgreen/cl-nats

    11عرض على GitHub↗

    A full-featured NATS messaging client for Common Lisp.

    Common Lisp
    عرض على GitHub↗11
  • basiliscos/cpp-rotorالصورة الرمزية لـ basiliscos

    basiliscos/cpp-rotor

    388عرض على GitHub↗

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

    C++
    عرض على GitHub↗388
  • bloomberg/quantumالصورة الرمزية لـ bloomberg

    bloomberg/quantum

    631عرض على GitHub↗

    Powerful multi-threaded coroutine dispatcher and parallel execution engine

    C++
    عرض على GitHub↗631
  • bloomen/transwarpالصورة الرمزية لـ bloomen

    bloomen/transwarp

    633عرض على GitHub↗

    A header-only C++ library for task concurrency

    C++
    عرض على GitHub↗633
  • boostorg/computeالصورة الرمزية لـ boostorg

    boostorg/compute

    1,654عرض على GitHub↗

    A C++ GPU Computing Library for OpenCL

    C++boostc-plus-pluscompute
    عرض على GitHub↗1,654
  • borodust/cl-flowالصورة الرمزية لـ borodust

    borodust/cl-flow

    52عرض على GitHub↗

    Reactive computation tree library for non-blocking concurrent Common Lisp

    Common Lisp
    عرض على GitHub↗52
  • brown/swank-crewالصورة الرمزية لـ brown

    brown/swank-crew

    48عرض على GitHub↗

    Common Lisp distributed computation framework implemented using Swank Client

    Common Lisp
    عرض على GitHub↗48
  • andreiavrammsd/cpp-channelالصورة الرمزية لـ andreiavrammsd

    andreiavrammsd/cpp-channel

    584عرض على GitHub↗

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

    C++channelconcurrent-queuecpp
    عرض على GitHub↗584
  • cameron314/concurrentqueueالصورة الرمزية لـ cameron314

    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
  • cameron314/readerwriterqueueالصورة الرمزية لـ cameron314

    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
  • computationalradiationphysics/alpakaالصورة الرمزية لـ ComputationalRadiationPhysics

    ComputationalRadiationPhysics/alpaka

    4عرض على GitHub↗

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

    عرض على GitHub↗4
  • computationalradiationphysics/cuplaالصورة الرمزية لـ ComputationalRadiationPhysics

    ComputationalRadiationPhysics/cupla

    4عرض على GitHub↗

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

    عرض على GitHub↗4
  • concurrencykit/ckالصورة الرمزية لـ concurrencykit

    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/libforkالصورة الرمزية لـ ConorWilliams

    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/stmxالصورة الرمزية لـ cosmos72

    cosmos72/stmx

    258عرض على GitHub↗

    High performance Transactional Memory for Common Lisp

    Common Lisp
    عرض على GitHub↗258
  • david-haim/concurrencppالصورة الرمزية لـ David-Haim

    David-Haim/concurrencpp

    2,755عرض على GitHub↗

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

    C++
    عرض على GitHub↗2,755
  • ddemidov/vexclالصورة الرمزية لـ ddemidov

    ddemidov/vexcl

    721عرض على GitHub↗

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

    C++
    عرض على GitHub↗721
  • digital-fabric/polyphonyالصورة الرمزية لـ digital-fabric

    digital-fabric/polyphony

    662عرض على GitHub↗

    Fine-grained concurrency for Ruby

    C
    عرض على GitHub↗662
  • eventmachine/eventmachineالصورة الرمزية لـ eventmachine

    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-wrappersالصورة الرمزية لـ eyalroz

    eyalroz/cuda-api-wrappers

    890عرض على GitHub↗

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

    C++
    عرض على GitHub↗890
  • facebookincubator/dispensoالصورة الرمزية لـ facebookincubator

    facebookincubator/dispenso

    282عرض على GitHub↗

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

    C++
    عرض على GitHub↗282
  • fukamachi/psychiqالصورة الرمزية لـ fukamachi

    fukamachi/psychiq

    57عرض على GitHub↗

    Background job processing for Common Lisp

    Common Lisp
    عرض على GitHub↗57
  • ahoward/forkoffالصورة الرمزية لـ ahoward

    ahoward/forkoff

    74عرض على GitHub↗

    brain-dead simple parallel processing for ruby

    Ruby
    عرض على GitHub↗74