Anton-4

Results 465 comments of Anton-4

Hi @ialokim I'm also trying to compile benchmarks on one machine and run them on another. After compiling with `--target arm-unknown-linux-gnueabihf` do you than copy the whole project folder to...

I've hit the same issue using [earthly](https://github.com/earthly/earthly) with a (slim) debian buster docker image.

I set up a [repo](https://github.com/Anton-4/iai_issue) so anyone can reproduce this issue locally.

I was able to find the cause: `setarch: failed to set personality to x86_64: Operation not permitted `. This can be fixed by using the `--privileged` flag with docker run....

Hi, this problem seems to have reappeared on Scala [2.11.8] Spark [2.1.1] Hadoop [2.7.2]. I tried the example mentioned by @cuevasclemente and this results in no matches.

@drahnr Could you add some more detail on what you would like the API to look like or which approach to take? I'm considering helping out.

I also ran into this problem with wgpu-hal, I set up a [minimal project](https://github.com/Anton-4/wgpu-triangle-c2nix) in case it can help.

One thing that could be related; for correct feature detection with wgpu `Cargo.toml` needs to contain `resolver = "2"` or `edition = "2021"`(which uses resolver = "2"), see this [line...