| 97 | } |
| 98 | |
| 99 | int64_t ImageBatchVarShape::GetSizeInBytes() const |
| 100 | { |
| 101 | // m_size_inbytes == -1 indicates failure case and value has not been computed yet |
| 102 | NVCV_ASSERT(m_size_inbytes != -1 |
| 103 | && "ImageBatchVarShape has m_size_inbytes == -1, ie m_size_inbytes has not been correctly set"); |
| 104 | return m_size_inbytes; |
| 105 | } |
| 106 | |
| 107 | const nvcv::ImageBatchVarShape &ImageBatchVarShape::impl() const |
| 108 | { |
nothing calls this directly
no outgoing calls
no test coverage detected