| 118 | |
| 119 | template <typename Dtype> |
| 120 | Dtype* Blob<Dtype>::mutable_gpu_data() { |
| 121 | CHECK(data_); |
| 122 | return static_cast<Dtype*>(data_->mutable_gpu_data()); |
| 123 | } |
| 124 | |
| 125 | template <typename Dtype> |
| 126 | Dtype* Blob<Dtype>::mutable_cpu_diff() { |
no outgoing calls