Caffe2 - C++ API
A deep learning, cross platform ML framework
broadcast.h
1 #ifndef CAFFE2_UTILS_MATH_BROADCAST_H_
2 #define CAFFE2_UTILS_MATH_BROADCAST_H_
3 
4 #include "caffe2/core/common.h"
5 #include "caffe2/core/types.h"
6 
7 namespace caffe2 {
8 namespace math {
9 
10 template <typename T, class Context, StorageOrder kOrder>
11 CAFFE2_API void AffineChannel(
12  const int N,
13  const int C,
14  const int HxW,
15  const T* X,
16  const T* scale,
17  const T* bias,
18  T* Y,
19  Context* context);
20 
21 } // namespace math
22 } // namespace caffe2
23 
24 #endif // CAFFE2_UTILS_MATH_BROADCAST_H_
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13
Definition: static.cpp:64