Caffe2 - C++ API
A deep learning, cross platform ML framework
conv_op_cache_cudnn.cc
1 #include "caffe2/operators/conv_op_cache_cudnn.h"
2 
3 #include <cudnn.h>
4 
5 #include "caffe2/core/logging.h"
6 #include "caffe2/core/tensor.h"
7 
8 namespace caffe2 {
9 
10 template class AlgorithmsCache<cudnnConvolutionFwdAlgo_t>;
11 template class AlgorithmsCache<cudnnConvolutionBwdFilterAlgo_t>;
12 template class AlgorithmsCache<cudnnConvolutionBwdDataAlgo_t>;
13 template class AlgorithmsCache<int>; // For testing.
14 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13