Chris Lexmond
Chris Lexmond
Seeing the same. Setting `preload: false` or `html5: false` works just fine but not with both `true`. Firefox v. 91.0.1 64bit on Windows.
From my experience: - `u128` has almost always been large enough for computation - `u256` operations are, not surprisingly, MUCH less performant than `u128` / `u64` - the primary point...
> can you remove some of the inlining or split into some functions? generally - the issue here is the fact that you have a single function here with a...
> also maybe try adding a `internal::revoke_ap_tracking();` at the start of the large function. I suspect this all has something to do with the attempt to align ap over all...
Just confirming that the inclusion of `internal::revoke_ap_tracking()` here https://github.com/influenceth/cubit/blob/noise/src/procgen/simplex3.cairo#L94 did solve the issue.
Easy to reproduce by commenting out https://github.com/influenceth/cubit/blob/main/src/procgen/simplex3.cairo#L83 and running tests (or trying to deploy a contract using that method). Currently getting the following error still: ``` cairo-test . thread 'main'...