| 28 | namespace nvcvpy::priv { |
| 29 | |
| 30 | size_t TensorBatch::Key::doGetHash() const |
| 31 | { |
| 32 | using util::ComputeHash; |
| 33 | return ComputeHash(m_capacity); |
| 34 | } |
| 35 | |
| 36 | bool TensorBatch::Key::doIsCompatible(const IKey &ithat) const |
| 37 | { |
nothing calls this directly
no test coverage detected