Tags: #library #upgrades
https://developers.redhat.com/blog/2017/03/13/cc-library-upgrades-and-opaque-data-types-in-process-shared-memory/
https://developers.redhat.com/blog/2017/03/13/cc-library-upgrades-and-opaque-data-types-in-process-shared-memory/
Red Hat Developer
C/C++ library upgrades and opaque data types in process shared memory | Red Hat Developer
The problem
C/C++ libraries expect to be able to change the internal implementation details of opaque data types from release to release since such a change has no external ABI consequences.
C/C++ libraries expect to be able to change the internal implementation details of opaque data types from release to release since such a change has no external ABI consequences.
Tags: #neural #network
http://blog.demofox.org/2017/03/13/neural-network-gradients-backpropagation-dual-numbers-finite-differences/
http://blog.demofox.org/2017/03/15/neural-network-recipe-recognize-handwritten-digits-with-95-accuracy/
http://blog.demofox.org/2017/03/13/neural-network-gradients-backpropagation-dual-numbers-finite-differences/
http://blog.demofox.org/2017/03/15/neural-network-recipe-recognize-handwritten-digits-with-95-accuracy/
The blog at the bottom of the sea
Neural Network Gradients: Backpropagation, Dual Numbers, Finite Differences
In the post How to Train Neural Networks With Backpropagation I said that you could also calculate the gradient of a neural network by using dual numbers or finite differences. By special request, …
The Daily C++ via @vote
What is your relationship with C++?
anonymous poll
Student – 166
👍👍👍👍👍👍👍 42%
Learning – 107
👍👍👍👍👍 27%
Full Time Job – 76
👍👍👍 19%
Part Time Job – 26
👍 7%
Other – 20
👍 5%
👥 395 people voted so far.
anonymous poll
Student – 166
👍👍👍👍👍👍👍 42%
Learning – 107
👍👍👍👍👍 27%
Full Time Job – 76
👍👍👍 19%
Part Time Job – 26
👍 7%
Other – 20
👍 5%
👥 395 people voted so far.
Tags: #bool #ternary #stackoverflow
http://stackoverflow.com/questions/43139144/why-is-the-ternary-operator-used-to-define-1-and-0-in-a-macro
http://stackoverflow.com/questions/43139144/why-is-the-ternary-operator-used-to-define-1-and-0-in-a-macro
Stackoverflow
Why is the ternary operator used to define 1 and 0 in a macro?
I'm using an SDK for an embedded project. In this source code I found some code which at least I found peculiar. In many places in the SDK there is source code in this format:
#define ATCI_IS_LOWER(
#define ATCI_IS_LOWER(
Tags: #metaprogramming #design #patterns
http://odinthenerd.blogspot.it/2017/03/tradeoffs-of-tmp-mpl-design.html
http://odinthenerd.blogspot.it/2017/03/tradeoffs-of-tmp-mpl-design.html
odinthenerd.blogspot.co.uk
Tradeoffs of TMP MPL design
I would like to take a break from my design patterns series to talk about some of the tradeoffs when designing a template metaprogramming li...
Tags: #code #example
http://www.techiedelight.com/find-pairs-given-difference-k-array-constant-space-solution/
http://www.techiedelight.com/find-pairs-given-difference-k-array-constant-space-solution/
Techie Delight
Find pairs with difference `k` in an array | Constant Space Solution | Techie Delight
Given an unsorted integer array, find all pairs with a given difference `k` in it without using any extra space.