| 113 | } |
| 114 | |
| 115 | daliResult_t daliTensorRefCount(daliTensor_h t, int *ref) { |
| 116 | DALI_PROLOG(); |
| 117 | auto *ptr = ToPointer(t); |
| 118 | int r = ptr->RefCount(); |
| 119 | CHECK_OUTPUT(ref); |
| 120 | *ref = r; |
| 121 | DALI_EPILOG(); |
| 122 | } |
| 123 | |
| 124 | daliResult_t daliTensorAttachBuffer( |
| 125 | daliTensor_h tensor, |