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
Currently we only support slicing for HostRingTensor or native HostTensor.
This issue is relating to add support for slicing HostBitTensor(BitArray). One can solve it by borrowing the slicing implementation from ndarray and adapt it to BitArray or convert the BitArray to an ArrayBase, call the ndarray slice mechanism and then convert data back to BitArray.
The downside of the latter method is that it increases the memory footprint.
The text was updated successfully, but these errors were encountered:
Currently we only support slicing for
HostRingTensor
or nativeHostTensor
.This issue is relating to add support for slicing
HostBitTensor(BitArray)
. One can solve it by borrowing the slicing implementation from ndarray and adapt it toBitArray
or convert theBitArray
to anArrayBase
, call the ndarray slice mechanism and then convert data back toBitArray
.The downside of the latter method is that it increases the memory footprint.
The text was updated successfully, but these errors were encountered: