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
{{ message }}
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
leads to a segmentation fault. This is on 32-bit Linux. The array should take 1.6GB, which this machine has (but even if not, an error would be better than a segmentation fault). Creating smaller arrays works fine.
The text was updated successfully, but these errors were encountered:
Fixed in 8c02f9b. V8 limits external arrays to 1024^3 bytes, node now throws a RangeError if you try to create a buffer or typed array that's larger than that.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
On node 0.6.5, doing
new Float64Array(1024*1024*200)
leads to a segmentation fault. This is on 32-bit Linux. The array should take 1.6GB, which this machine has (but even if not, an error would be better than a segmentation fault). Creating smaller arrays works fine.
The text was updated successfully, but these errors were encountered: