| 112 | |
| 113 | template <typename Dtype> |
| 114 | Dtype* Blob<Dtype>::mutable_cpu_data() { |
| 115 | CHECK(data_); |
| 116 | return static_cast<Dtype*>(data_->mutable_cpu_data()); |
| 117 | } |
| 118 | |
| 119 | template <typename Dtype> |
| 120 | Dtype* Blob<Dtype>::mutable_gpu_data() { |
no outgoing calls