| 199 | } |
| 200 | |
| 201 | daliResult_t daliTensorGetDesc( |
| 202 | daliTensor_h tensor, |
| 203 | daliTensorDesc_t *out_desc) { |
| 204 | DALI_PROLOG(); |
| 205 | auto *ptr = ToPointer(tensor); |
| 206 | CHECK_OUTPUT(out_desc); |
| 207 | *out_desc = ptr->GetDesc(); |
| 208 | DALI_EPILOG(); |
| 209 | } |
| 210 | |
| 211 | daliResult_t daliTensorGetShape( |
| 212 | daliTensor_h tensor, |