MCPcopy Create free account
hub / github.com/NVIDIA/DALI / daliTensorListViewAsTensor

Function daliTensorListViewAsTensor

dali/c_api_2/data_objects.cc:465–474  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

463}
464
465daliResult_t daliTensorListViewAsTensor(
466 daliTensorList_h tensor_list,
467 daliTensor_h *out_tensor) {
468 DALI_PROLOG();
469 auto *ptr = ToPointer(tensor_list);
470 CHECK_OUTPUT(out_tensor);
471 auto t = ptr->ViewAsTensor();
472 *out_tensor = t.release(); // no throwing allowed after this line
473 DALI_EPILOG();
474}
475
476daliResult_t daliTensorListCopyOut(
477 daliTensorList_h tensor_list,

Callers 1

TESTFunction · 0.85

Calls 3

ViewAsTensorMethod · 0.80
ToPointerFunction · 0.70
releaseMethod · 0.45

Tested by 1

TESTFunction · 0.68