Caffe2 - C++ API
A deep learning, cross platform ML framework
transform_gpu.h
1 #ifndef CAFFE2_IMAGE_TRANSFORM_GPU_H_
2 #define CAFFE2_IMAGE_TRANSFORM_GPU_H_
3 
29 #include "caffe2/core/context.h"
30 
31 namespace caffe2 {
32 
33 template <typename T_IN, typename T_OUT, class Context>
34 bool TransformOnGPU(
35  Tensor& X,
36  Tensor* Y,
37  Tensor& mean,
38  Tensor& std,
39  Context* context);
40 
41 } // namespace caffe2
42 
43 #endif
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13