| 124 | |
| 125 | template <typename Dtype> |
| 126 | const Dtype* Blob<Dtype>::gpu_diff() const { |
| 127 | CHECK(diff_); |
| 128 | return (const Dtype*)diff_->gpu_data(); |
| 129 | } |
| 130 | |
| 131 | template <typename Dtype> |
| 132 | Dtype* Blob<Dtype>::mutable_cpu_data() { |
no test coverage detected