Julien Cretin
Julien Cretin
What are examples where it makes sense to do this on arrays (and more generally repeated things of the same "size")? The way I understand this option, is that for...
Oops sorry, thanks for the clarification. I'll follow-up on https://github.com/rust-lang/rust/issues/123751#issuecomment-2062119738 which is indeed the problem I have. Feel free to fold those last 3 comments as ouf-of-topic. Thanks!
Thanks for the issue! > Functions `get` and `split_at`are public and safe Those functions are not _really_ public. The crate doesn't use the `unreachable-pub` lint yet (it's a [TODO](https://github.com/google/wasefire/blob/e61dec73498a946e76c5eb2cd3d1cbeea40d19b6/scripts/sync.sh#L45-L50)). So...
Yes, I also thought about this issue, but thought that we would release Python and Rust "simultaneously" (i.e. first Rust and right after Python). In particular, Rust should always be...
There was recent developments on https://github.com/bytecodealliance/wasmtime/issues/7311. I tried to use Pulley on Nordic on the `wasm-bench` crate (see #753). It seems the generated Pulley bytecode is 34 times larger than...
Thank you and Alex for the quick answers and follow-up! Let me describe how WebAssembly is used in Wasefire and answer Alex's questions: > I realize that this may be...
Sorry for the very long delay. I finally got time to use the new version in #819. You can see the diff for the tuning I had to do (rather...
> FWIW the `max_wasm_stack` option doesn't actually proactively allocate stack For Pulley [this is the case](https://github.com/bytecodealliance/wasmtime/blob/fd788dc9d26f0333b2284cf42033fffad25f9b64/pulley/src/interp.rs#L769) (and I guess it makes sense). I reduced it to 16k and seen the...
> That's something the [custom page sizes](https://github.com/WebAssembly/custom-page-sizes) proposal can help with Good point. That's definitely going to be useful when we'll support multi-applets. For now this is not a blocker....
I finally found some time to use this feature (see #890). The benefit seems even better: - Text size went from 263kB to 224kB, so a 40kB reduction (15% on...