arkouda icon indicating copy to clipboard operation
arkouda copied to clipboard

SegString `strip` and `peel` throwing OOM exception when problem size > 10**4

Open joshmarshall1 opened this issue 2 years ago • 0 comments

Exact problem size will be dependent on machine size, but running both methods with an problem size larger than 10**4 produce an out of memory error

Reproducer:

    N = 10**5  # Might need increasing depending on machine
    a = ak.random_strings_uniform(8, 2**16, N)
    a.strip("a")  # a.peel("a")

joshmarshall1 avatar Apr 19 '23 21:04 joshmarshall1