Marco C.
Marco C.
### Update Turned out that the problem is with more fields than just `xml` and `externalDocs` of the schema section. It seems that any object that follows a field like...
Hi @jhorstmann do you have any benchmark for this? Thx!
Cool! I tried on an M1 and the results are not as good Before: ``` string::bench_to_lowercase 102.00ns/iter +/- 1.00ns ``` After: ``` string::bench_to_lowercase 99.00ns/iter +/- 1.00ns ``` Maybe autovec is...
Sorry, I was testing your solution against my fork that I am working on instead of upstream 🙈 The actual result is Before: ``` string::bench_to_lowercase 45.00ns/iter +/- 0.00ns ``` After:...
A couple of thoughts: - A similar thing is done also here: https://github.com/rust-lang/rust/blob/abb95639ef2b837dbfe7b5d18f51fadda29711cb/library/core/src/slice/ascii.rs#L328-L341 maybe would be nice to somehow merge the two? - Would be interesting to understand why the...
Benchmark results on aarch64 (Apple M1) ``` master: str::to_lowercase::long_lorem_ipsum 523.29/iter +/- 3.10 str::to_lowercase::short_ascii 33.31/iter +/- 0.29 str::to_lowercase::short_mixed 299.64/iter +/- 23.58 str::to_lowercase::short_pile_of_poo 295.03/iter +/- 9.97 ``` ``` PR: str::to_lowercase::long_lorem_ipsum 129.03/iter +/-...
Got it, I don't know if it is better to remove the feature or put everything that still works behind the `std` feature ?
WIP, for now I've done it just for emulation_mode, any feedback is welcome
Ubuntu-clippy CI fails because it is run with `--all-features`. Upstream doesn't fail because it silently defaults to `usermode`, clippy is not run for `systemmode`
@domenukk I'm not sure I fully understood your message :smile: How about avoiding `--all-features` for `libafl_qemu`? I don't like this solution very much and maybe in the future the incompatible...