pytorch/caffe2/operators/conv_op_cache_cudnn.cc
Orion Reblitz-Richardson 1d5780d42c Remove Apache headers from source.
* LICENSE file contains details, so removing from individual source files.
2018-03-27 13:10:18 -07:00

15 lines
419 B
C++

#include "caffe2/operators/conv_op_cache_cudnn.h"
#include <cudnn.h>
#include "caffe2/core/logging.h"
#include "caffe2/core/tensor.h"
namespace caffe2 {
template class AlgorithmsCache<cudnnConvolutionFwdAlgo_t>;
template class AlgorithmsCache<cudnnConvolutionBwdFilterAlgo_t>;
template class AlgorithmsCache<cudnnConvolutionBwdDataAlgo_t>;
template class AlgorithmsCache<int>; // For testing.
} // namespace caffe2