google/marl
A hybrid thread / fiber task scheduler written in C++ 11 observed · 2026-08-28
Health v2 · maintenance only
10/100
- Activity 79
- Release rhythm 35
- Longevity 100
Flags: no_releases archived
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.
- gap_med: n/a
- age_days: 2556
- days_rel: n/a
- days_push: 128
- n_releases_24m: 0
Adoption not part of the score
2000 stars · 204 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded
Marl is a hybrid thread/fiber task scheduler library written in C++11 that lets you run tasks across a fixed pool of hardware threads. It uses fibers so tasks can block without wasting threads, and it has no external dependencies.
Use cases
- schedule many tasks across a fixed thread pool in C++
- run blocking tasks efficiently without spawning extra threads
- parallelize workloads with fibers and coroutines in C++11
- build a task runner for cross-platform C++ applications
- coordinate async tasks with events and wait groups
- compile a task scheduler to WebAssembly with Emscripten
When to choose
- you need efficient blocking-friendly task scheduling in C++ with zero dependencies
- you want a lightweight, portable scheduler across desktop, mobile, and wasm targets
- your workload has many tasks that block and you want to keep hardware thread usage fixed
When to avoid
- you need a general-purpose async I/O runtime or event loop rather than a task scheduler
- you are not writing C++ or need higher-level parallelism primitives built into the language
- you need GPU or distributed parallelism rather than single-process task scheduling
Facets
library · maturity stable
concurrency scheduling developer-tools performance cross-platform cpp windows wasm cross-platform fibers task-scheduler thread-pool coroutines c++11 parallelism linux macos android ios
1 source
- readme: https://github.com/google/marl · fetched 2026-08-28 · 1ec20562b9f3
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| google/marl | main | 10 |
For agents
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem