| 130 | |
| 131 | template <typename Dtype> |
| 132 | Dtype* Blob<Dtype>::mutable_cpu_data() { |
| 133 | CHECK(data_); |
| 134 | return static_cast<Dtype*>(data_->mutable_cpu_data()); |
| 135 | } |
| 136 | |
| 137 | template <typename Dtype> |
| 138 | Dtype* Blob<Dtype>::mutable_gpu_data() { |
no outgoing calls