Denis Yaroshevskiy - my first SIMD - Meeting C++ online
A talk on implementing STL Algorithms with SIMD
Denis Yaroshevskiy - my first SIMD - Meeting C++ online
June 16-21, Sofia, Bulgaria
By Meeting C++ | Nov 25, 2020 10:55 AM | Tags: performance meetingcpp experimental efficiency community basics advanced
A talk on implementing STL Algorithms with SIMD
Denis Yaroshevskiy - my first SIMD - Meeting C++ online
By Meeting C++ | Nov 5, 2020 03:32 AM | Tags: performance meetingcpp experimental efficiency community basics advanced
Taking a look at next weeks keynote by Teresa Johnson
Teresa Johnsons Center Keynote: ThinLTO Whole Program Optimization: Past, Present and Future
by Jens Weller
From the article:
Whole program optimization enables higher performance in C++ applications, because of the expanded scope for analysis and optimization. Traditionally, whole program optimization is not scalable in memory or time, and doesn't support effective incremental builds. ThinLTO (Thin Link Time Optimization) is a new compilation model that...
By Meeting C++ | Nov 3, 2020 07:33 AM | Tags: performance meetingcpp intermediate experimental efficiency community c++17 c++14 basics advanced
Looking at how next weeks Meeting C++ 2020 will be online
A look at next weeks Meeting C++ 2020 online conference
by Jens Weller
From the article:
First, Meeting C++ 2020 is an online conference, the planned onsite part is canceled. More about this in the last paragraph, as first, lets look whats happening next week!
The online part
Next weeks conference will consist of two tracks hosted in remo, one for talks and one for communication/networking/live video chat...
By Meeting C++ | Oct 29, 2020 03:05 AM | Tags: performance meetingcpp efficiency conference community c++17 c++14 c++11 basics advanced
Some details for the opening keynote of Meeting C++ 2020 in two weeks!
Jonathan Boccaras Meeting C++ 2020 opening keynote: meta-polymorphism
by Jens Weller
From the article:
When you hear polymorphism you may think virtual functions, but this is just one speck of dust in the polymorphism universe.
By Meeting C++ | Sep 29, 2020 03:29 AM | Tags: meetingcpp conference community basics advanced
Some news about this years Meeting C++ conference: we'll have 2 AMAs!
Adding ask me anything to Meeting C++ 2020
by Jens Weller
From the article:
Some news on Meeting C++ 2020! Attendees will be able to attend AMA sessions with...
During CppCon I noticed how well AMA sessions went and that they are a great feature for an online conference. And for some time I knew that this years conference has some extra space for content due to its online nature.
By Meeting C++ | Sep 21, 2020 03:36 AM | Tags: meetingcpp intermediate efficiency community c++20 c++17 c++14 c++11 basics advanced
Zach Laine spoke at the Meeting C++ online group in the beginning of September:
Making Iterators, Views and Containers Easier to Write with Boost.STLInterfaces - Zach Laine
by Zach Laine
By Meeting C++ | Sep 16, 2020 05:50 AM | Tags: meetingcpp intermediate experimental community c++14 basics
Working on an old project, it came to my mind that I do this refactoring from one static path to multiple options for the 2nd time this year...
Refactoring from single to multi purpose
by Jens Weller
From the article:
For the second time this year I'm refactoring a program from a single purpose to have two or more modes of operation. Both times the start and end result is similar, just the processing is different. A classic case of using polymorphism.
The first program was a tool to process videos from speakers, find a face and export the subframe around it into a new video. The first mode was a good approach to test it, and gave results for some speakers. The second mode did a complete scan first, and then gave a smoother video for some videos. Still, both modes had to be retained...
By Meeting C++ | Aug 18, 2020 04:53 AM | Tags: meetingcpp conference community basics
Meeting C++ is looking for sponsors for Meeting C++ 2020 in November
Meeting C++ is looking for sponsors!
by Jens Weller
From the article
With Meeting C++ 2020 slowly taking shape, I decided to also make sponsoring of this years conference available!
By Meeting C++ | Aug 4, 2020 08:06 AM | Tags: meetingcpp intermediate community c++20 c++17 c++11 basics
The programme of Meeting C++ 2020 has been released today!
Meeting C++ 2020 programme & online tickets available!
by Jens Weller
From the article:
Two Sundays ago the voting on this years submissions ended, and with today I'm able to share the talks for Meeting C++ 2020 with you!
By Adrien Hamelin | Jul 20, 2020 09:30 AM | Tags: basics
Quick A: there is no guarantee for a container to work with incomplete types.
Recently on SO:
Recursive unordered_map
STL containers are not required to work with incomplete types. If you don't mind extra indirection, then the workaround is
std::map<int, std::unique_ptr<Node>>
.