| 154 | |
| 155 | template <typename Dtype> |
| 156 | void Blob<Dtype>::ShareData(const Blob& other) { |
| 157 | CHECK_EQ(count_, other.count()); |
| 158 | data_ = other.data(); |
| 159 | } |
| 160 | |
| 161 | template <typename Dtype> |
| 162 | void Blob<Dtype>::ShareDiff(const Blob& other) { |
no test coverage detected