| 136 | |
| 137 | template <typename Dtype> |
| 138 | void Blob<Dtype>::ShareData(const Blob& other) { |
| 139 | CHECK_EQ(count_, other.count()); |
| 140 | data_ = other.data(); |
| 141 | } |
| 142 | |
| 143 | template <typename Dtype> |
| 144 | void Blob<Dtype>::ShareDiff(const Blob& other) { |
no test coverage detected