True parallelism, with no concept of threads - Alfred Bratterud
A talk on doing multithreading without threads...
True parallelism, with no concept of threads
by Alfred Bratterud
June 17-20, Folkestone, UK
September 12-18, Aurora, CO, USA
November 16-21, Búzios, Rio De Janeiro, Brazil
November 26-28, Berlin, Germany
By Meeting C++ | Feb 10, 2018 11:16 AM | Tags: performance parallelism multithreading meetingcpp
A talk on doing multithreading without threads...
True parallelism, with no concept of threads
by Alfred Bratterud
By Meeting C++ | Feb 1, 2018 03:08 AM | Tags: performance multithreading meetingcpp efficiency
A talk on understanding when a reader-writer lock beats a mutex, and when not.
Reader-Writer Lock versus Mutex
by Jeffrey Mendelsohn
By Adrien Hamelin | Jan 29, 2018 06:29 PM | Tags: performance community
Isn't that a good question?
Do compilers take inline as a hint?
by Simon Brand
From the article:
If you’ve spent any time in C or C++ communities online, you’ve probably seen someone say this:
inline used to be a hint for compilers to inline the definition, but no compilers actually take that into account any more.
You shouldn’t believe everything you see on the internet...
By Meeting C++ | Jan 26, 2018 02:45 AM | Tags: stl performance meetingcpp intermediate functional c++14 c++11
Is a better std::function possible?
Is std::function really the best we can do?
by Lukas Bergdoll
By Meeting C++ | Jan 25, 2018 03:20 AM | Tags: performance parallelism multithreading meetingcpp concurrency boost
This talk is about a new future, used in Sean Parents Concurrency library
There is a new future
by Felix Petriconi
By Meeting C++ | Jan 23, 2018 02:26 AM | Tags: tools performance meetingcpp hpc efficiency advanced
A new video from Meeting C++ 2017:
The performance Addict's Toolbox
by Peter Steinbach
By Meeting C++ | Jan 22, 2018 05:07 AM | Tags: performance meetingcpp efficiency advanced
New Video from Meeting C++ 2017
Modern C++ testing with Catch2
by Phil Nash
By Jordi Mon Companys | Jan 10, 2018 12:06 PM | Tags: performance efficiency community
Conan reaches maturity milestone
Conan C/C++ Package Manager Hits 1.0
A commitment to stability
From the article:
Conan 1.0 is mainly a commitment to stability and robustness. Maintaining your scripts and projects will only mean upgrading them to use new features without having to modify them in any way to keep supporting existing ones.
By Meeting C++ | Sep 14, 2017 06:13 AM | Tags: performance meetingcpp intermediate experimental efficiency community c++14 c++11 boost basics advanced
The Schedule for Meeting C++ 2017 is live:
Meeting C++ 2017 Schedule
by Jens Weller
Overview:
For 3 days there is a keynote per day and 4 tracks in parallel of very good C++ Content.
By Adrien Hamelin | Aug 28, 2017 01:02 PM | Tags: performance community
Have you registered for CppCon 2017 in September? Don’t delay – Registration is open now.
While we wait for this year’s event, we’re featuring videos of some of the 100+ talks from CppCon 2016 for you to enjoy. Here is today’s feature:
My Little Optimizer: Undefined Behavior is Magic
by Michael Spencer
Summary of the talk:
Compiler exploitation of undefined behavior has been a topic of recent discussion in the programming community. This talk will explore the magic of Undefined Behavior, Covering how and why modern optimizers exploit undefined behavior in C++ programs.