* @param param provides ConvolutionParameter convolution_param, * with ConvolutionLayer options: * - num_output. The number of filters. * - kernel_size / kernel_h / kernel_w. The filter dimensions, given by * kernel_size for square filters or kernel_h and kernel_w for rectangular * filters. * - stride / stride_h / stride_w (\b optional, default 1). The filter * stride
| 62 | * kernels + stream parallelism) engines. |
| 63 | */ |
| 64 | explicit ConvolutionLayer(const LayerParameter& param) |
| 65 | : BaseConvolutionLayer<Dtype>(param) {} |
| 66 | |
| 67 | virtual inline const char* type() const { return "Convolution"; } |
| 68 |
nothing calls this directly
no outgoing calls
no test coverage detected