| 200 | } |
| 201 | |
| 202 | int64_t Array::GetSizeInBytes() const |
| 203 | { |
| 204 | // m_size_inbytes == -1 indicates failure case and value has not been computed yet |
| 205 | NVCV_ASSERT(m_size_inbytes != -1 && "Array has m_size_inbytes == -1, ie m_size_inbytes has not been correctly set"); |
| 206 | return m_size_inbytes; |
| 207 | } |
| 208 | |
| 209 | std::shared_ptr<Array> Array::shared_from_this() |
| 210 | { |
no outgoing calls
no test coverage detected