Skip to content

NVIDIA/stdexec

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3,182 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

stdexec β€” Senders for C++

A reference implementation of std::execution ([exec]), the C++26 model for asynchronous and parallel programming.

CI (CPU) CI (GPU) License C++ Try on Godbolt Documentation

stdexec lets you express asynchronous work as composable, lazy sender pipelines that can run on threads, thread pools, GPUs, or any custom execution context β€” with structured concurrency guarantees.

Warning

stdexec is experimental and tracks an evolving standard. APIs may change without notice. NVIDIA does not guarantee fitness for any particular purpose.

Table of contents

Example

Run three pieces of work concurrently on the system thread pool. Try it live on godbolt.

#include <stdexec/execution.hpp>
#include <cstdio>

namespace ex = stdexec;

int main() {
    auto sched = ex::get_parallel_scheduler();
    auto fun   = [](int i) { return i * i; };

    // Build a lazy pipeline: three squares, computed in parallel.
    auto work = ex::when_all(ex::on(sched, ex::just(0) | ex::then(fun)),
                             ex::on(sched, ex::just(1) | ex::then(fun)),
                             ex::on(sched, ex::just(2) | ex::then(fun)));

    // Launch the work and wait for the result.
    auto [i, j, k] = ex::sync_wait(std::move(work)).value();
    std::printf("%d %d %d\n", i, j, k); // prints "0 1 4"
}

Features

  • C++26 reference implementation of std::execution (P2300).
  • Header-only, no external dependencies.
  • Composable algorithms: then, let_value, when_all, bulk, split, transfer, upon_*, ...
  • Structured concurrency primitives: async_scope, task, finally, when_any, repeat_n, ...
  • Pluggable schedulers: system parallel scheduler, static thread pool, Linux io_uring context, NVIDIA GPU contexts, your own.
  • GPU offload via nvexec schedulers (nvc++ compiler).
  • Coroutine interop: senders are awaitable; awaitables are senders.
  • Generic extensions (<exec/...>) for primitives not (yet) in the standard.

Compiler support

Compiler Minimum version Notes
GCC 12
Clang 16
MSVC 14.43
Xcode (Apple Clang) 16
nvc++ 25.9 required for GPU support

Requires -std=c++20 or later.

Note

stdexec does not yet support NVIDIA's nvcc compiler.

Installation

Pick whichever fits your project.

CPM (recommended)

CPM fetches and configures stdexec automatically from your CMakeLists.txt:

CPMAddPackage(
  NAME stdexec
  GITHUB_REPOSITORY NVIDIA/stdexec
  GIT_TAG main  # or a specific tag
)

target_link_libraries(my_target PRIVATE STDEXEC::stdexec)

add_subdirectory

Clone alongside your project and add it as a subdirectory:

git clone https://github.com/NVIDIA/stdexec.git
add_subdirectory(stdexec)
target_link_libraries(my_target PRIVATE STDEXEC::stdexec)

Conan

A conanfile.py is provided for use with the Conan package manager.

NVIDIA HPC SDK

Starting with NVHPC SDK 22.11, stdexec is bundled with nvc++. Pass --experimental-stdpar to put stdexec headers on the include path. Add -stdpar=gpu for GPU features. See the godbolt example.

Manual include path

stdexec is header-only, so adding -I<stdexec root>/include to your compile command is sufficient. Using the CMake target is recommended because it sets the required compile flags.

Quick start

A minimal CMakeLists.txt using CPM:

cmake_minimum_required(VERSION 3.25.0)
project(stdexec_example LANGUAGES CXX)

include(CPM.cmake)  # see https://github.com/cpm-cmake/CPM.cmake#adding-cpm

CPMAddPackage(
  NAME stdexec
  GITHUB_REPOSITORY NVIDIA/stdexec
  GIT_TAG main
)

add_executable(example example.cpp)
target_link_libraries(example PRIVATE STDEXEC::stdexec)

GPU support

stdexec ships GPU schedulers in <nvexec/...> for use with nvc++ -stdpar=gpu:

Scheduler Header Description
nvexec::stream_scheduler <nvexec/stream_context.cuh> Single-GPU scheduler (device 0).
nvexec::multi_gpu_stream_scheduler <nvexec/multi_gpu_context.cuh> Multi-GPU scheduler across all visible devices.

Live example: https://godbolt.org/z/h7rh5qGhj

Examples gallery

The examples/ directory contains runnable programs demonstrating the library.

Example What it shows
hello_world.cpp The "hello world" of senders.
hello_coro.cpp Awaiting a sender from a coroutine.
then.cpp Writing a then algorithm from scratch.
retry.cpp Writing a retry algorithm from scratch.
scope.cpp Structured concurrency with async_scope.
io_uring.cpp Async I/O via the Linux io_uring context.
sudoku.cpp A parallel sudoku solver.
server_theme/ Server-style patterns (let_value, split, bulk, transfer).
nvexec/ GPU schedulers, including the Maxwell solver.

Documentation

πŸ“– Full documentation: https://nvidia.github.io/stdexec

The library is organized into three namespaces:

Namespace Headers Contents
::stdexec <stdexec/...> Things in (or proposed for) the C++ standard.
::exec <exec/...> Generic additions and extensions.
::nvexec <nvexec/...> NVIDIA-specific schedulers and customizations.

Building tests and examples

The library itself is header-only β€” these steps are only needed if you want to build the test suite or the examples.

cmake -S . -B build -G Ninja
cmake --build build
ctest --test-dir build

To select a specific compiler:

cmake -S . -B build/clang -DCMAKE_CXX_COMPILER=$(which clang++)
cmake --build build/clang

To use libc++ with Clang:

cmake -S . -B build/libcxx \
    -DCMAKE_CXX_COMPILER=$(which clang++) \
    -DCMAKE_CXX_FLAGS=-stdlib=libc++
cmake --build build/libcxx

IDE support

A VSCode extension is available that colorizes compiler diagnostics from stdexec, making the long template error messages much easier to read. Source and configuration: https://github.com/ericniebler/buildoutputcolorizer.

Resources

Standards papers

Talks

Articles and blog posts

NVIDIA

Contributing

Contributions are welcome. Before opening a PR, please review:

Bug reports and feature requests belong in GitHub Issues; design discussion in GitHub Discussions.

Citation

If you reference stdexec in academic work, please cite the standards proposal:

@techreport{P2300,
  author = {Niebler, Eric and Shoop, Kirk and Baker, Lewis and Dominiak, MichaΕ‚ and
            Evtushenko, Georgy and Teodorescu, Lucian Radu and Howes, Lee and Garland,
            Michael and Lelbach, Bryce Adelstein}
  title  = {{P2300R10}: \texttt{std::execution}},
  institution = {ISO/IEC JTC1/SC22/WG21},
  year   = {2024},
  url    = {https://wg21.link/p2300}
}

License

stdexec is licensed under the Apache License 2.0 with LLVM Exceptions. See LICENSE.txt for the full text.

About

`std::execution`, the standard C++ framework for asynchronous and parallel programming.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

 
 
 

Contributors