Caffe2 - C++ API
A deep learning, cross platform ML framework
softmax_shared.h
1 #ifndef CAFFE2_OPERATORS_SOFTMAX_SHARED_H_
2 #define CAFFE2_OPERATORS_SOFTMAX_SHARED_H_
3 
4 #include "caffe2/core/context.h"
5 #include "caffe2/core/operator.h"
6 
7 namespace caffe2 {
8 
9 void SoftmaxCPU(
10  CPUContext& context,
11  const int N,
12  const int D,
13  const float* Xdata,
14  float* Ydata,
15  float* scale,
16  const float* sum_multiplier,
17  bool logarithmic,
18  float* rowmax);
19 } // namespace caffe2
20 
21 #endif // #define CAFFE2_OPERATORS_SOFTMAX_SHARED_H_
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13
Definition: static.cpp:70