Tags: #easylambda #lambda #benchmarks
"EasyLambda aims to provide a high level parallel programming abstraction while incurring minimal overheads."
https://haptork.github.io/easyLambda/docs/benchmarks/
"EasyLambda aims to provide a high level parallel programming abstraction while incurring minimal overheads."
https://haptork.github.io/easyLambda/docs/benchmarks/
easyLambda
Benchmarks
Benchmarks for performance and ease of use
Tags: #cppcon #2016 #video
https://cppcon.org/all-cppcon-2016-videos-are-up/
Channel Youtube: https://www.youtube.com/user/CppCon
https://cppcon.org/all-cppcon-2016-videos-are-up/
Channel Youtube: https://www.youtube.com/user/CppCon
YouTube
CppCon
Visit cppcon.org for details on next year's conference. CppCon sponsors have made it possible to record and freely distribute over 1000 sessions from the first CppCon in 2014 to the present. We hope you enjoy them!
Tags: #multidimensional #array
https://nadeausoftware.com/articles/2012/06/c_c_tip_how_loop_through_multi_dimensional_arrays_quickly
https://nadeausoftware.com/articles/2012/06/c_c_tip_how_loop_through_multi_dimensional_arrays_quickly
Nadeausoftware
C/C++ tip: How to loop through multi-dimensional arrays quickly | Nadeau Software
This article benchmarks nine common multi-dimensional array loop and indexing methods and four common compilers to find the fastest method to loop through multi-dimensional arrays quickly.
Tags: #qtlite #2drenderer
"Qt 5.8 will include IoT-oriented “Qt Lite” technology that enables fine-grained configuration and supports small-footprint IoT gizmos without OpenGL."
https://hackerboards.com/new-qt-lite-adds-2d-renderer-targets-16mb-ram-linux-systems/
"Qt 5.8 will include IoT-oriented “Qt Lite” technology that enables fine-grained configuration and supports small-footprint IoT gizmos without OpenGL."
https://hackerboards.com/new-qt-lite-adds-2d-renderer-targets-16mb-ram-linux-systems/
HackerBoards
New "Qt Lite" adds 2D renderer, targets 16MB RAM Linux systems
Qt 5.8 will include IoT-oriented “Qt Lite” technology that enables fine-grained configuration and supports small-footprint IoT gizmos without OpenGL.
Tags: #detectors #face #deeplearning
"A few years ago I added an implementation of the max-margin object-detection algorithm (MMOD) to dlib. This tool has since become quite popular as it frees the user from tedious tasks like hard negative mining. "
https://blog.dlib.net/2016/10/easily-create-high-quality-object.html
For dogs: https://blog.dlib.net/2016/10/hipsterize-your-dog-with-deep-learning.html
"A few years ago I added an implementation of the max-margin object-detection algorithm (MMOD) to dlib. This tool has since become quite popular as it frees the user from tedious tasks like hard negative mining. "
https://blog.dlib.net/2016/10/easily-create-high-quality-object.html
For dogs: https://blog.dlib.net/2016/10/hipsterize-your-dog-with-deep-learning.html
blog.dlib.net
Easily Create High Quality Object Detectors with Deep Learning
A few years ago I added an implementation of the max-margin object-detection algorithm (MMOD) to dlib. This tool has since become quite po...
Tags: #interview #bjarne #stroustrup #cppcon16
https://channel9.msdn.com/Shows/C9-GoingNative/Bjarne-Stroustrup-Interview-atcppcon-2016
https://channel9.msdn.com/Shows/C9-GoingNative/Bjarne-Stroustrup-Interview-atcppcon-2016
Channel 9
Bjarne Stroustrup Interview at cppcon 2016 (Channel 9)
Steve Carroll and Gabriel Dos Reis chat with Bjarne Stroustrup, the inventor of C++, about his keynote this year at cppcon 2016. Bjarne talks about the past, present, and future of C++
Tags: #stackoverflow #cpp #books #recommended
https://bestprogrammingbooks.com/29-c-programming-books-recommended-stackoverflow/
https://bestprogrammingbooks.com/29-c-programming-books-recommended-stackoverflow/
Best Programming Books
29 C++ Programming Books recommended by Stackoverflow - Best Programming Books
The following 29 C++ Programming books are based on a diversity of topics on Stackoverflow. While posts like these are often closed on Stackoverflow, they often provide good recommendations, and we would like to bring them to your attention by sharing them…
Tags: #llvm #sdcc #toolchain
"The LLVM+SDCC toolchain is meant to allow the use of languages other than C and to evaluate the effect of LLVM optimizations for 8-bit targets. "
https://www.colecovision.eu/llvm+sdcc/
"The LLVM+SDCC toolchain is meant to allow the use of languages other than C and to evaluate the effect of LLVM optimizations for 8-bit targets. "
https://www.colecovision.eu/llvm+sdcc/
www.colecovision.eu
LLVM+SDCC toolchain
The LLVM+SDCC toolchain allows the use of LLVM frontends and optimizations for SDCC targets.
Tags: #cppcon17 #class #proposals
"The conference is asking for instructors to submit proposals for classes to be taught in conjunction with next September’s CppCon 2017."
https://cppcon.org/callforclasses2017/
"The conference is asking for instructors to submit proposals for classes to be taught in conjunction with next September’s CppCon 2017."
https://cppcon.org/callforclasses2017/
Tags: #WinRT #GitHub
"I’m happy to announce that C++/WinRT is now available on GitHub. C++/WinRT is the future of the Modern project and the first public preview coming officially from Microsoft. "
https://moderncpp.com/2016/10/13/cppwinrt-available-on-github/
"I’m happy to announce that C++/WinRT is now available on GitHub. C++/WinRT is the future of the Modern project and the first public preview coming officially from Microsoft. "
https://moderncpp.com/2016/10/13/cppwinrt-available-on-github/
C++/WinRT
C++/WinRT Available on GitHub
I’m happy to announce that C++/WinRT is now available on GitHub. C++/WinRT is the future of the Modern project and the first public preview coming officially from Microsoft. What’s new Since the fi…
Tags: #stackoverflow #overflow
At what point in the loop does integer overflow become undefined behavior?
https://stackoverflow.com/questions/39914788/at-what-point-in-the-loop-does-integer-overflow-become-undefined-behavior
At what point in the loop does integer overflow become undefined behavior?
https://stackoverflow.com/questions/39914788/at-what-point-in-the-loop-does-integer-overflow-become-undefined-behavior
Stack Overflow
At what point in the loop does integer overflow become undefined behavior?
This is an example to illustrate my question which involves some much more complicated code that I can't post here.
#include <stdio.h>
int main()
{
int a = 0;
for (int i = 0; i < ...
#include <stdio.h>
int main()
{
int a = 0;
for (int i = 0; i < ...
Tags: #performance #codefaster #noexcept
"That noexcept keyword is tricky, but just know that if you use it, your coding world will spin faster. "
https://visualstudiomagazine.com/articles/2016/10/01/noexcept.aspx
"That noexcept keyword is tricky, but just know that if you use it, your coding world will spin faster. "
https://visualstudiomagazine.com/articles/2016/10/01/noexcept.aspx
Visual Studio Magazine
Make Your Code Faster with noexcept -- Visual Studio Magazine
That noexcept keyword is tricky, but just know that if you use it, your coding world will spin faster.