-
I have this demo script. I am not able to create a hashgrid over the size of ~47,000 If m,n = 215x215 (46,225) the grid works. If it is 220x215 (47,300) it runs into:
I thought it might have been gpu ram so I switched to cpu, same behavior. How can i make a larger hashgrid? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @cadop, my initial look at this indicates that you're running into integer overflows in Warp due to the use of signed integers to store size variables. Note that |
Beta Was this translation helpful? Give feedback.
Hi @cadop, my initial look at this indicates that you're running into integer overflows in Warp due to the use of signed integers to store size variables. Note that
(220*215)**2 = 2237290000
,(215*215)**2=2136750625
, and2**31-1 = 2147483647
, which falls between the two values. I (or someone else) will update when we have a fix in.