https://github.com/jefflarkin/stdexec_experiments
https://github.com/jefflarkin/stdexec_experiments
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jefflarkin/stdexec_experiments
- Owner: jefflarkin
- Created: 2023-01-06T19:00:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T19:06:57.000Z (about 3 years ago)
- Last Synced: 2025-03-27T03:13:26.319Z (12 months ago)
- Language: C++
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
STDEXEC Experiments
===================
This is just a series of small codes to help me understand the design patterns
of [C++ p2300](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2300r5.html).
Codes
-----
* [hello/hello.cpp](hello/hello.cpp) - A simple hello world.
* [hello/hello\_deferred.cpp](hello/hello_deferred.cpp) - A simple hello world that attaches to the
scheduler later.
* [vecadd/vecadd.cpp](vecadd/vecadd.cpp) - A simple vector addition. Set STDEXEC\_NUM\_THREADS to
vary number of threads used.