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
This would add tags &str and String for from_str; 1000, 2000, and 3000 for init_array.
Note though that each generic benchmark would be "monomorphized". There would be both from_str<&str> and a from_str<String> benchmark created in Bencher.
The text was updated successfully, but these errors were encountered:
Heads up that I'm planning to get JSON output published soon. Parameters (args, types, thread count) will be properties of benchmark runs rather than part of the benchmark path. The last component of the benchmark path will be the benchmarked function. It will be up to programs consuming the output to determine how they want to present parameters.
https://github.com/nvzqz/divan
For now the adapter will need to parse the text output: nvzqz/divan#10
It would be nice to have #240 complete or once implemented do auto-tagging of the generic benchmarks. From the announcement post:
This would add tags
&str
andString
forfrom_str
;1000
,2000
, and3000
forinit_array
.Note though that each generic benchmark would be "monomorphized". There would be both
from_str<&str>
and afrom_str<String>
benchmark created in Bencher.The text was updated successfully, but these errors were encountered: