| 193 | } |
| 194 | |
| 195 | int64_t Array::doComputeSizeInBytes(const nvcv::Array::Requirements &reqs) |
| 196 | { |
| 197 | int64_t size_inbytes; |
| 198 | util::CheckThrow(nvcvMemRequirementsCalcTotalSizeBytes(&(reqs.mem.cudaMem), &size_inbytes)); |
| 199 | return size_inbytes; |
| 200 | } |
| 201 | |
| 202 | int64_t Array::GetSizeInBytes() const |
| 203 | { |
nothing calls this directly
no test coverage detected