use criterion::{ Bencher, BenchmarkGroup, BenchmarkId, Criterion, Throughput, criterion_group, criterion_main, measurement::WallTime, }; use rustpython_compiler::Mode; use rustpython_vm::{Interpreter, PyResult, Settings}; use std::{collections::HashMap, hint::black_box, path::Path}; fn bench_cpython_code(b: &mut Bencher, source: &str) { let c_str_source_head = std::ffi::CString::new(source).unwrap(); let c_str_source = c_str_source_head.as_c_str(); pyo3::Python::attach(|py| { b.iter(|| { let module = pyo3::types::PyModule::from_code(py, c_str_source, c"", c"") .expect("Error running source"); black_box(module); }) }) } fn bench_rustpython_code(b: &mut Bencher, name: &str, source: &str) { // NOTE: Take long time. let mut settings = Settings::default(); settings.path_list.push("Lib/".to_string()); settings.write_bytecode = false; settings.user_site_directory = false; let builder = Interpreter::builder(settings); let defs = rustpython_stdlib::stdlib_module_defs(&builder.ctx); builder.add_native_modules(&defs).build().enter(|vm| { // Note: bench_cpython is both compiling and executing the code. // As such we compile the code in the benchmark loop as well. b.iter(|| { let code = vm.compile(source, Mode::Exec, name.to_owned()).unwrap(); let scope = vm.new_scope_with_builtins(); let res: PyResult = vm.run_code_obj(code.clone(), scope); vm.unwrap_pyresult(res); }) }) } pub fn benchmark_file_execution(group: &mut BenchmarkGroup, name: &str, contents: &str) { group.bench_function(BenchmarkId::new(name, "cpython"), |b| { bench_cpython_code(b, contents) }); group.bench_function(BenchmarkId::new(name, "rustpython"), |b| { bench_rustpython_code(b, name, contents) }); } pub fn benchmark_file_parsing(group: &mut BenchmarkGroup, name: &str, contents: &str) { group.throughput(Throughput::Bytes(contents.len() as u64)); group.bench_function(BenchmarkId::new("rustpython", name), |b| { b.iter(|| ruff_python_parser::parse_module(contents).unwrap()) }); group.bench_function(BenchmarkId::new("cpython", name), |b| { use pyo3::types::PyAnyMethods; pyo3::Python::attach(|py| { let builtins = pyo3::types::PyModule::import(py, "builtins").expect("Failed to import builtins"); let compile = builtins.getattr("compile").expect("no compile in builtins"); b.iter(|| { let x = compile .call1((contents, name, "exec")) .expect("Failed to parse code"); black_box(x); }) }) }); } pub fn benchmark_pystone(group: &mut BenchmarkGroup, contents: String) { // Default is 50_000. This takes a while, so reduce it to 30k. for idx in (10_000..=30_000).step_by(10_000) { let code_with_loops = format!("LOOPS = {idx}\n{contents}"); let code_str = code_with_loops.as_str(); group.throughput(Throughput::Elements(idx as u64)); group.bench_function(BenchmarkId::new("cpython", idx), |b| { bench_cpython_code(b, code_str) }); group.bench_function(BenchmarkId::new("rustpython", idx), |b| { bench_rustpython_code(b, "pystone", code_str) }); } } pub fn criterion_benchmark(c: &mut Criterion) { let benchmark_dir = Path::new("./benches/benchmarks/"); let mut benches = benchmark_dir .read_dir() .unwrap() .map(|entry| { let path = entry.unwrap().path(); ( path.file_name().unwrap().to_str().unwrap().to_owned(), std::fs::read_to_string(path).unwrap(), ) }) .collect::>(); // Benchmark parsing let mut parse_group = c.benchmark_group("parse_to_ast"); for (name, contents) in &benches { benchmark_file_parsing(&mut parse_group, name, contents); } parse_group.finish(); // Benchmark PyStone if let Some(pystone_contents) = benches.remove("pystone.py") { let mut pystone_group = c.benchmark_group("pystone"); benchmark_pystone(&mut pystone_group, pystone_contents); pystone_group.finish(); } // Benchmark execution let mut execution_group = c.benchmark_group("execution"); for (name, contents) in &benches { benchmark_file_execution(&mut execution_group, name, contents); } execution_group.finish(); } criterion_group!(benches, criterion_benchmark); criterion_main!(benches);