holoscan::calc_strides
holoscan::calc_strides
Fill strides from the given DLTensor object.
The following fields are used to fill strides:
- ndim
- shape
- dtype
If tensor’s strides is nullptr, strides argument is filled with the calculated strides of the given DLTensor object. Otherwise, strides argument is filled with the given DLTensor object’s strides. strides vector would be resized to the size of ndim field of the given DLTensor object.
Parameters
tensor
DLTensor object that holds information to fill strides.
strides
Strides to fill.
to_num_elements
If true, the strides in strides argument are in number of elements, not bytes (default: false).