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
Currently, filtering only works up to crate → module → function. Parameters to the function are not considered: generic types, constants, and thread counts.
However, we can only filter against example::bench. We cannot filter against example::bench::String::42::t=2. I think this is something we should try to support.
We should also consider whether we want benchmark parameters to be treated like namespacing when filtering. Perhaps instead they should be made to look more like Rust code: example::bench::<String, 42>(t=2)? I think the previous format is easier to reason about.
The text was updated successfully, but these errors were encountered:
Currently, filtering only works up to crate → module → function. Parameters to the function are not considered: generic types, constants, and thread counts.
The following code:
...produces this output tree structure:
However, we can only filter against
example::bench
. We cannot filter againstexample::bench::String::42::t=2
. I think this is something we should try to support.We should also consider whether we want benchmark parameters to be treated like namespacing when filtering. Perhaps instead they should be made to look more like Rust code:
example::bench::<String, 42>(t=2)
? I think the previous format is easier to reason about.The text was updated successfully, but these errors were encountered: