| 432 | } |
| 433 | |
| 434 | daliResult_t daliTensorListGetTensorDesc( |
| 435 | daliTensorList_h tensor_list, |
| 436 | daliTensorDesc_t *out_tensor, |
| 437 | int sample_idx) { |
| 438 | DALI_PROLOG(); |
| 439 | auto *ptr = ToPointer(tensor_list); |
| 440 | CHECK_OUTPUT(out_tensor); |
| 441 | *out_tensor = ptr->GetTensorDesc(sample_idx); |
| 442 | DALI_EPILOG(); |
| 443 | } |
| 444 | |
| 445 | daliResult_t daliTensorListGetSourceInfo( |
| 446 | daliTensorList_h tensor_list, |