We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c447ffd commit bfd05eeCopy full SHA for bfd05ee
benches/execution.rs
@@ -42,10 +42,10 @@ pub fn benchmark_file_execution(
42
name: &str,
43
contents: &String,
44
) {
45
- group.bench_function(BenchmarkId::new("cpython", name), |b| {
+ group.bench_function(BenchmarkId::new(name, "cpython"), |b| {
46
bench_cpython_code(b, &contents)
47
});
48
- group.bench_function(BenchmarkId::new("rustpython", name), |b| {
+ group.bench_function(BenchmarkId::new(name, "rustpython"), |b| {
49
bench_rustpy_code(b, name, &contents)
50
51
}
0 commit comments