arkouda icon indicating copy to clipboard operation
arkouda copied to clipboard

bug in reshape for binint type

Open ajpotts opened this issue 4 months ago • 0 comments

The reshape function gives the incorrect result for the bigint type, as shown in the following example:

In [3]: dtype = "bigint"

In [4]: size = 10

In [5]:         x = ak.arange(size, dtype=dtype).reshape((1, size, 1))

In [6]: x
Out[6]: array([array([array([0]) array([1]) array([2]) array([3]) array([4]) array([224251899497]) array([1919968626]) array([78401563153491]) array([127961796865894]) array([111052610564705])])])

ajpotts avatar Oct 24 '24 21:10 ajpotts