* @brief Using the GPU device, compute the layer output. * Fall back to Forward_cpu() if unavailable. */
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected