| 273 | } |
| 274 | |
| 275 | daliResult_t daliTensorListIncRef(daliTensorList_h tl, int *new_ref) { |
| 276 | DALI_PROLOG(); |
| 277 | auto *ptr = ToPointer(tl); |
| 278 | int r = ptr->IncRef(); |
| 279 | if (new_ref) |
| 280 | *new_ref = r; |
| 281 | DALI_EPILOG(); |
| 282 | } |
| 283 | |
| 284 | daliResult_t daliTensorListDecRef(daliTensorList_h tl, int *new_ref) { |
| 285 | DALI_PROLOG(); |