| 142 | |
| 143 | template <typename Dtype> |
| 144 | void Blob<Dtype>::ShareDiff(const Blob& other) { |
| 145 | CHECK_EQ(count_, other.count()); |
| 146 | diff_ = other.diff(); |
| 147 | } |
| 148 | |
| 149 | // The "update" method is used for parameter blobs in a Net, which are stored |
| 150 | // as Blob<float> or Blob<double> -- hence we do not define it for |
no test coverage detected