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