Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

way to run and compare all benchmarks in a crate #39

Open
andrewgazelka opened this issue Oct 24, 2024 · 4 comments
Open

way to run and compare all benchmarks in a crate #39

andrewgazelka opened this issue Oct 24, 2024 · 4 comments

Comments

@andrewgazelka
Copy link

andrewgazelka commented Oct 24, 2024

right now we have to do

cargo bench -q -p daft-minhash --bench=minhash -- compare target/benchmarks/minhash
cargo bench -q -p daft-minhash --bench=windowed -- compare target/benchmarks/windowed

It would be nice if we could instead do

cargo bench -q -p daft-minhash -- compare target/benchmarks

Right now my workflow combines tango-bench and cargo export

@bazhenov
Copy link
Owner

This is neat idea I would really love to implement, because I have very similar use case when I ran several benchmarks (from different crates) using shell-script.

Unfortunately, it will not work because cargo bench actually run not only benches but also unit tests. When you will pass any argument that standard harness is not supports (like -t) it will fail the whole cargo bench process. You can check it yourself, run following command in the context of a project that has at least 1 unit test. It should fail.

$ cargo bench -- compare -t 0.1
    Finished `bench` profile [optimized] target(s) in 0.04s
     Running unittests src/lib.rs (target/release/deps/pmem-dbbad5b7c1126fc4)
error: Unrecognized option: 't'
error: bench failed, to rerun pass `-p pmem --lib`

One workaround I can think of is to implement separate runner cargo tango that will run only benches.

@andrewgazelka
Copy link
Author

andrewgazelka commented Dec 21, 2024

having cargo tango would be really nice. I want to make a CI runner for this and being able to only run tango benches is a requirement.

@andrewgazelka
Copy link
Author

andrewgazelka commented Dec 22, 2024

here's an example of where I was using tango... but it could be better if I was able to see all benches that are made with tango

hyperion-mc/hyperion#201

@andrewgazelka
Copy link
Author

andrewgazelka commented Dec 22, 2024

another example... I just re-integrated it. Right now I am using a matrix

hyperion-mc/hyperion#781

Discord 2024-12-22 00 09 51

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants