You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In src/ ndarray_bakcend_cuda.cu file, The comment of the parameter 'strides' and 'offset' with the function CompactKernel and Compact is not consistency.
CompactKernel:
* strides: vector of strides of out array
* offset: offset of out array
Compact:
* strides: strides of the *a* array (not out, which has compact strides)
* offset: offset of the *a* array (not out, which has zero offset, being compact)
I think the parameters strides and offsets all belong to the input array "a".
The text was updated successfully, but these errors were encountered:
In src/ ndarray_bakcend_cuda.cu file, The comment of the parameter 'strides' and 'offset' with the function CompactKernel and Compact is not consistency.
CompactKernel:
Compact:
I think the parameters strides and offsets all belong to the input array "a".
The text was updated successfully, but these errors were encountered: