| 291 | } |
| 292 | |
| 293 | daliResult_t daliTensorListRefCount(daliTensorList_h tl, int *ref) { |
| 294 | DALI_PROLOG(); |
| 295 | auto *ptr = ToPointer(tl); |
| 296 | CHECK_OUTPUT(ref); |
| 297 | int r = ptr->RefCount(); |
| 298 | *ref = r; |
| 299 | DALI_EPILOG(); |
| 300 | } |
| 301 | |
| 302 | daliResult_t daliTensorListAttachBuffer( |
| 303 | daliTensorList_h tensor_list, |