| 122 | } |
| 123 | |
| 124 | daliResult_t daliTensorAttachBuffer( |
| 125 | daliTensor_h tensor, |
| 126 | int ndim, |
| 127 | const int64_t *shape, |
| 128 | daliDataType_t dtype, |
| 129 | const char *layout, |
| 130 | void *data, |
| 131 | daliDeleter_t deleter) { |
| 132 | DALI_PROLOG(); |
| 133 | auto *ptr = ToPointer(tensor); |
| 134 | ptr->AttachBuffer(ndim, shape, dtype, layout, data, deleter); |
| 135 | DALI_EPILOG(); |
| 136 | } |
| 137 | |
| 138 | daliResult_t daliTensorResize( |
| 139 | daliTensor_h tensor, |
nothing calls this directly
no test coverage detected