Files
zed/crates/edit_prediction/benches/kept_rate.rs
Mohamad Khani b72a46db68
Some checks failed
Update All Top Ranking Issues / update_top_ranking_issues (push) Has been cancelled
Triage Project Sync (#84) / Sync triage project (push) Has been cancelled
release_nightly / notify_on_failure (push) Has been cancelled
release_nightly / check_style (push) Has been cancelled
release_nightly / run_tests_windows (push) Has been cancelled
release_nightly / clippy_windows (push) Has been cancelled
release_nightly / bundle_linux_aarch64 (push) Has been cancelled
release_nightly / bundle_linux_x86_64 (push) Has been cancelled
release_nightly / bundle_mac_aarch64 (push) Has been cancelled
release_nightly / bundle_mac_x86_64 (push) Has been cancelled
release_nightly / bundle_windows_aarch64 (push) Has been cancelled
release_nightly / bundle_windows_x86_64 (push) Has been cancelled
release_nightly / build_nix_linux_x86_64 (push) Has been cancelled
release_nightly / build_nix_mac_aarch64 (push) Has been cancelled
release_nightly / update_nightly_tag (push) Has been cancelled
Hotfix Review Monitor / check-hotfix-reviews (push) Has been cancelled
Stale PR Review Reminder / check-stale-prs (push) Has been cancelled
Update Weekly Top Ranking Issues / update_top_ranking_issues (push) Has been cancelled
Bump collab-staging Tag / update-collab-staging-tag (push) Has been cancelled
compliance_check / scheduled_compliance_check (push) Has been cancelled
logiguard fork: GPUI xdg-activation keyboard-focus serial fix
Single-commit orphan branch: full zed-industries/zed @ 8c74db0 source tree
with a 3-file patch applied (no upstream history).

Patch (crates/gpui_linux/src/linux/wayland/):
  - serial.rs: add SerialKind::KeyboardEnter
  - client.rs: store wl_keyboard.enter serial; add latest_serial_of()
  - window.rs: activate() uses keyboard-enter serial (Mutter focus gate)

Mutter honors window activation only when the token carries the keyboard-
focus serial from wl_keyboard.enter; GPUI used a stale mouse-press serial.
See docs/tray-window-focus-wayland.md in logiguard.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 02:22:17 +03:30

129 lines
4.5 KiB
Rust

use criterion::{BenchmarkId, Criterion, black_box, criterion_group, criterion_main};
use edit_prediction::metrics::compute_kept_rate;
fn repeated_function_lines(line_count: usize) -> String {
let mut text = String::with_capacity(line_count * 32);
for index in 0..line_count {
text.push_str("fn helper_");
text.push_str(&(index % 16).to_string());
text.push_str("() { value += old_name + 1; }\n");
}
text
}
fn localized_rename_inputs(line_count: usize) -> (String, String, String) {
let base = repeated_function_lines(line_count);
let mut predicted = base.clone();
let mut final_text = base.clone();
let needle = "value += old_name + 1;";
let prediction = "value += very_long_predicted_name + 1;";
let accepted = "value += new_name + 1;";
let offset = base
.rfind(needle)
.expect("expected needle in synthetic input");
let end = offset + needle.len();
predicted.replace_range(offset..end, prediction);
final_text.replace_range(offset..end, accepted);
(base, predicted, final_text)
}
fn identical_new_content_inputs(line_count: usize) -> (String, String, String) {
let predicted = repeated_function_lines(line_count);
(String::new(), predicted.clone(), predicted)
}
fn repetitive_token_inputs(token_repetitions: usize) -> (String, String, String) {
let repeated_old = "foo + foo + foo + foo + foo\n".repeat(token_repetitions);
let repeated_predicted = "foo + foo + prediction_token + foo + foo\n".repeat(token_repetitions);
let repeated_final = "foo + foo + kept_token + foo + foo\n".repeat(token_repetitions);
(repeated_old, repeated_predicted, repeated_final)
}
fn kept_rate_benchmark(c: &mut Criterion) {
let mut no_change_group = c.benchmark_group("kept_rate/no_change");
for line_count in [128usize, 512, 2048] {
let text = repeated_function_lines(line_count);
no_change_group.bench_with_input(
BenchmarkId::new("lines", line_count),
&text,
|bench, text| {
bench.iter(|| {
black_box(compute_kept_rate(
black_box(text),
black_box(text),
black_box(text),
));
});
},
);
}
no_change_group.finish();
let mut localized_group = c.benchmark_group("kept_rate/localized_rename");
for line_count in [128usize, 512, 2048] {
let inputs = localized_rename_inputs(line_count);
localized_group.bench_with_input(
BenchmarkId::new("lines", line_count),
&inputs,
|bench, inputs| {
let (base, predicted, final_text) = inputs;
bench.iter(|| {
black_box(compute_kept_rate(
black_box(base),
black_box(predicted),
black_box(final_text),
));
});
},
);
}
localized_group.finish();
let mut addition_group = c.benchmark_group("kept_rate/identical_addition");
for line_count in [128usize, 512, 2048] {
let inputs = identical_new_content_inputs(line_count);
addition_group.bench_with_input(
BenchmarkId::new("lines", line_count),
&inputs,
|bench, inputs| {
let (base, predicted, final_text) = inputs;
bench.iter(|| {
black_box(compute_kept_rate(
black_box(base),
black_box(predicted),
black_box(final_text),
));
});
},
);
}
addition_group.finish();
let mut repetitive_group = c.benchmark_group("kept_rate/repetitive_tokens");
for token_repetitions in [64usize, 256, 1024] {
let inputs = repetitive_token_inputs(token_repetitions);
repetitive_group.bench_with_input(
BenchmarkId::new("repetitions", token_repetitions),
&inputs,
|bench, inputs| {
let (base, predicted, final_text) = inputs;
bench.iter(|| {
black_box(compute_kept_rate(
black_box(base),
black_box(predicted),
black_box(final_text),
));
});
},
);
}
repetitive_group.finish();
}
criterion_group!(benches, kept_rate_benchmark);
criterion_main!(benches);