MCPcopy Create free account
hub / github.com/BVLC/caffe / forward_gpu_bias

Method forward_gpu_bias

src/caffe/layers/base_conv_layer.cpp:343–348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

341
342template <typename Dtype>
343void 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
350template <typename Dtype>
351void BaseConvolutionLayer<Dtype>::backward_gpu_gemm(const Dtype* output,

Callers

nothing calls this directly

Calls 1

gpu_dataMethod · 0.45

Tested by

no test coverage detected