Caffe2 - C++ API
A deep learning, cross platform ML framework
typed_axpy.h
1 #pragma once
2 
3 namespace caffe2 {
4 
5 // Similar to Axpy that calculate y = a * x + y, but allowing x and y to be
6 // of different data types.
7 // It also provides a performance optimization hint (use_a) to see if a is going
8 // to be 1 or not.
9 template <typename IN, typename OUT>
10 void TypedAxpy(int N, const OUT a, const IN* x, OUT* y);
11 
12 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13