I often receive messages asking about my health and wishing me well. I am very happy to receive these messages and just want to reply: I feel good. >> My ALS Journey so far << The following gives me a great deal of strength and brings me happiness. Providing Added Value for the C++ Community […]| MC++ BLOG
I already introduced contracts in the article “Contracts in C++26”. In this article and the next ones, I will dive deeper into the details. In this article, I refer mainly to the excellent proposal “Contracts for C++”. Unfortunately, proposal P2900R14 exceeds 100 pages in length. I will therefore try to summarize the most important points […]| MC++ BLOG
Today I want to write about a sad topic. Bureaucracy in the German healthcare system is becoming increasingly absurd. In this world, the Darwin principle reigns supreme: survival of the fittest.| MC++ BLOG
The data-parallel types library has four special algorithms for SIMD vectors. The four special algorithms are min, max, minmax, and clamp. min, max, and minmax The two algorithms min and max have in common that they each accept two SIMD vectors and return a SIMD vector. This contains the element-wise minimum or maximum of the […]| MC++ BLOG
Unfortunately, I had an emergency call last Friday. That’s why this article is appearing a little earlier than usual.| MC++ BLOG
In this article, I will discuss reduction and mask reduction for data-parallel types. Reduction A reduction reduces the SIMD vector to a single element. The library provides three functions for this purpose: reduce, hmin, and hmax.The following program shows how these functions are used. // reduction.cpp #include <array> #include <experimental/simd> #include <functional> #include <iostream> #include […]| MC++ BLOG
Cippi went on her first big trip. First, she went to Belgium to visit Tom Tesch, and then she flew to Toronto to CppNorth, where she was warmly welcomed by Kate Gregory. In addition, I would like to strongly recommend my current care service, Ce La Vie.| MC++ BLOG
Thanks to simd_mask, conditional execution of operations on data-parallel types is possible. Unfortunately, in my last article, Data-Parallel Types – A First Example, I forgot to introduce one of the new library functions. I will make up for that in this article. Where Expression The new keyword where creates a so-called where expression. This allows […]| MC++ BLOG
Today, I want to share with you some of my everyday problems.| MC++ BLOG
After providing a theoretical introduction to the new C++ 26 feature in my last article, “Data-Parallel Types (SIMD),” I would like to follow up today with a practical example.| MC++ BLOG
The data-parallel types (SIMD) library provides data-parallel types and operations on them. Today, I want to take a closer look at this.| MC++ BLOG