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

Method Forward_gpu

include/caffe/layer.hpp:316–320  ·  view source on GitHub ↗

* @brief Using the GPU device, compute the layer output. * Fall back to Forward_cpu() if unavailable. */

Source from the content-addressed store, hash-verified

314 * Fall back to Forward_cpu() if unavailable.
315 */
316 virtual void Forward_gpu(const vector<Blob<Dtype>*>& bottom,
317 const vector<Blob<Dtype>*>& top) {
318 // LOG(WARNING) << "Using CPU code as backup.";
319 return Forward_cpu(bottom, top);
320 }
321
322 /**
323 * @brief Using the CPU device, compute the gradients for any parameters and

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected