| 106 | |
| 107 | template <typename Dtype> |
| 108 | const Dtype* Blob<Dtype>::gpu_diff() const { |
| 109 | CHECK(diff_); |
| 110 | return (const Dtype*)diff_->gpu_data(); |
| 111 | } |
| 112 | |
| 113 | template <typename Dtype> |
| 114 | Dtype* Blob<Dtype>::mutable_cpu_data() { |
no test coverage detected