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
hmm, interesting. In this example, who is supposed to be handling that flag? I don't imagine it's handled by cargo/rustc (since they don't know about criterion) and so I imagine it's being handled by whatever is executed in criterion to handle running a benchmark, but I'm not really sure how that works, and I'm not sure how best to pass arguments to that process. It's even possible that this flag is handled at compile time, and actually modifies the generated binary?
I'm not going to have time to investigate this much myself, but if you're curious to dig into it the first question to figure out would be, basically: who is handling this flag generally? Is it rustc, the criterion bench runner, or the final binary? If it's the bench runner I'm not sure there's an answer, since afaik criterion doesn't get invoked when you run a bench target through cargo instruments; we just ask rustc to build the bench target, it creates an executable, and we run that.
For anyone else that stumbles onto this, --* arguments are handled correctly. If you're trying to use Criterion with cargo-instruments, you need to add the --bench flag to tell the Criterion binary to actually benchmark, like this:
I'm trying to run a command like this:
Where
--profile-time 5
is supposed to be an argument to the benchmark for criterion: https://bheisler.github.io/criterion.rs/book/user_guide/profiling.html.However, I get an error:
I tried the classic
--
e.g.I didn't get an error, but the benchmark definitely didn't run for 5 seconds. I'm not sure exactly what happened.
The text was updated successfully, but these errors were encountered: