From 641d546c60c7d57917de1b2e5af497204b6e4436 Mon Sep 17 00:00:00 2001 From: Hendrik van Antwerpen Date: Tue, 1 Oct 2024 11:41:41 +0200 Subject: [PATCH] Rename benchmark --- crates/bpe/Cargo.toml | 4 ++-- crates/bpe/benches/{counting.rs => performance.rs} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename crates/bpe/benches/{counting.rs => performance.rs} (100%) diff --git a/crates/bpe/Cargo.toml b/crates/bpe/Cargo.toml index 4050236..3e2e190 100644 --- a/crates/bpe/Cargo.toml +++ b/crates/bpe/Cargo.toml @@ -8,8 +8,8 @@ crate-type = ["lib", "staticlib"] bench = false [[bench]] -name = "counting" -path = "benches/counting.rs" +name = "performance" +path = "benches/performance.rs" harness = false [features] diff --git a/crates/bpe/benches/counting.rs b/crates/bpe/benches/performance.rs similarity index 100% rename from crates/bpe/benches/counting.rs rename to crates/bpe/benches/performance.rs