Caffe2 - C++ API
A deep learning, cross platform ML framework
Related Pages
Modules
Data Structures
Files
C++ API
Python API
GitHub
File List
Globals
caffe2
operators
log_op.h
1
#ifndef CAFFE2_OPERATORS_LOG_OP_H_
2
#define CAFFE2_OPERATORS_LOG_OP_H_
3
4
#include "caffe2/operators/elementwise_ops.h"
5
#include "caffe2/utils/math.h"
6
7
namespace
caffe2
{
8
9
template
<
class
Context>
10
struct
LogFunctor
{
11
template
<
typename
T>
12
bool
operator()(
const
int
N,
const
T
* X,
T
* Y, Context* context)
const
{
13
math::Log(N, X, Y, context);
14
return
true
;
15
}
16
};
17
18
}
// namespace caffe2
19
20
#endif // CAFFE2_OPERATORS_LOG_OP_H_
T
Definition:
dataloader.cpp:482
caffe2::LogFunctor
Definition:
log_op.h:10
caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition:
blob.h:13
Generated on Thu Mar 21 2019 13:06:18 for Caffe2 - C++ API by
1.8.11