| 341 | |
| 342 | template <typename Dtype> |
| 343 | void BaseConvolutionLayer<Dtype>::forward_gpu_bias(Dtype* output, |
| 344 | const Dtype* bias) { |
| 345 | caffe_gpu_gemm<Dtype>(CblasNoTrans, CblasNoTrans, num_output_, |
| 346 | out_spatial_dim_, 1, (Dtype)1., bias, bias_multiplier_.gpu_data(), |
| 347 | (Dtype)1., output); |
| 348 | } |
| 349 | |
| 350 | template <typename Dtype> |
| 351 | void BaseConvolutionLayer<Dtype>::backward_gpu_gemm(const Dtype* output, |