| 160 | |
| 161 | template <typename Dtype> |
| 162 | void Blob<Dtype>::ShareDiff(const Blob& other) { |
| 163 | CHECK_EQ(count_, other.count()); |
| 164 | diff_ = other.diff(); |
| 165 | } |
| 166 | |
| 167 | // The "update" method is used for parameter blobs in a Net, which are stored |
| 168 | // as Blob<float> or Blob<double> -- hence we do not define it for |
no test coverage detected