| 64 | } |
| 65 | |
| 66 | bool doIsCompatible(const nvcvpy::IKey &that_) const override |
| 67 | { |
| 68 | const Key &that = static_cast<const Key &>(that_); |
| 69 | return that.canBeUsedWith(m_maxShape, m_maxOctaveLayers); |
| 70 | } |
| 71 | |
| 72 | int3 m_maxShape; |
| 73 | int m_maxOctaveLayers; |
nothing calls this directly
no test coverage detected