www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.announce - Eric Niebler will be speaking at Microsoft Nov 20

reply Walter Bright <newshound2 digitalmars.com> writes:
Title
A Unifying Abstraction for Async in C++

Abstract
Async in C++ is in a sad state. The standard tools — promises, futures,
threads, 
locks, and std::async — are either inefficient, broken, or both. Even worse, 
there is no standard way to say _where_ work should happen. Parallel
algorithms, 
heterogeneous computing, networking & IO, reactive streams, and more: all 
critically important foundational technologies that await a standard
abstraction 
for asynchronous computation.

In this talk, Eric Niebler digs into the Standard Committee’s search for the 
basis operations that underpin all asynchronous computation: the long-sought 
Executor concept. The latest iteration of Executors is based on the 
Sender/Receiver programming model, which provides a generalization of many 
existing paradigms in asynchronous programming, including future/promise, 
message passing, continuation passing, channels, and the observer pattern from 
reactive programming. It also has surprising and deep connections to
coroutines, 
which further demonstrates the model’s potential to be a truly unifying 
abstraction for asynchronous programming in C++20 and beyond.

Eric will present the short-term and long-term directions for Executors in ISO 
Standard C++, illustrating the design by walking through several implementation 
examples. They will talk about the direct connection between coroutines and the 
Sender/Receiver model and discuss what it means for the future of asynchronous 
APIs in C++. Finally, he will cover how the restrictions imposed by the 
Executors model should affect the way you write code today so your code is
ready 
for the next big revolution in parallel and concurrent C++ programming.

    -- https://nwcpp.org/

-------

Eric has worked with Andrei and I in the early days of D. He's one of the top 
C++ people in the world, and it is well worth coming to hear him speak.
Besides, 
most importantly, we go out for a beer afterwards!

Come join us, it'll be fun!
Nov 20 2019
next sibling parent reply Les De Ridder <les lesderid.net> writes:
On Wednesday, 20 November 2019 at 08:32:37 UTC, Walter Bright 
wrote:
 Title
 A Unifying Abstraction for Async in C++

 [...]

 Come join us, it'll be fun!
Will this talk be recorded?
Nov 20 2019
parent Walter Bright <newshound2 digitalmars.com> writes:
On 11/20/2019 1:06 AM, Les De Ridder wrote:
 Will this talk be recorded?
They usually are, but sometimes something goes wrong with the camera.
Nov 20 2019
prev sibling parent reply zoujiaqing <zoujiaqing gmail.com> writes:
On Wednesday, 20 November 2019 at 08:32:37 UTC, Walter Bright 
wrote:
 more: all critically important foundational technologies that 
 await a standard abstraction for asynchronous computation.
Looking forward to: DLang using await as a standard abstraction for asynchronous computation.
Jan 12 2020
parent bauss <jj_1337 live.dk> writes:
On Monday, 13 January 2020 at 02:09:14 UTC, zoujiaqing wrote:
 On Wednesday, 20 November 2019 at 08:32:37 UTC, Walter Bright 
 wrote:
 more: all critically important foundational technologies that 
 await a standard abstraction for asynchronous computation.
Looking forward to: DLang using await as a standard abstraction for asynchronous computation.
I wish!
Jan 25 2020