Explore >> Select a destination


You are here

jguegant.github.io
| | mcyoung.xyz
4.2 parsecs away

Travel
| |
| | www.cppstories.com
4.4 parsecs away

Travel
| | When you see an article about new C++ features, most of the time you'll have a description of major elements. Looking at C++17, there are a lot of posts (including articles from this blog) about structured bindings, filesystem, parallel algorithms, if constexpr, std::optional, std::variant... and other prominent C++17 additions. But how about some smaller parts?
| | boostorg.github.io
3.3 parsecs away

Travel
| |
| | migocpp.wordpress.com
21.9 parsecs away

Travel
| The CUDA C/C++ platform allows different programming modes for invoking code on a GPU device. Probably the more familiar and definitely simpler way is writing a single .cu file which contains both the kernel function and the host wrapper with "<<< >>>" invocation syntax. The NVCC compiler would transparently embed compiled device code and all...