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
At N=8k, cargo run --release takes about 1 second. At N=16k, about 4 seconds. At N=32k, 16 seconds. Each doubling of input size quadruples the runtime. This is O(n²) scaling, which is risky for many use cases because relatively small amounts of untrusted input can tie up enormous amount of CPU time.
The text was updated successfully, but these errors were encountered:
At N=8k,
cargo run --release
takes about 1 second. At N=16k, about 4 seconds. At N=32k, 16 seconds. Each doubling of input size quadruples the runtime. This is O(n²) scaling, which is risky for many use cases because relatively small amounts of untrusted input can tie up enormous amount of CPU time.The text was updated successfully, but these errors were encountered: