mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
37 lines
1.0 KiB
Rust
37 lines
1.0 KiB
Rust
use std::cell::RefCell;
|
|
use std::rc::Rc;
|
|
|
|
use criterion::{criterion_group, criterion_main, Criterion};
|
|
use fontdock::fs::{FsIndex, FsProvider};
|
|
use futures_executor::block_on;
|
|
|
|
use typstc::eval::State;
|
|
use typstc::font::FontLoader;
|
|
use typstc::parse::parse;
|
|
use typstc::typeset;
|
|
|
|
const FONT_DIR: &str = "fonts";
|
|
const COMA: &str = include_str!("../tests/coma.typ");
|
|
|
|
fn parsing_benchmark(c: &mut Criterion) {
|
|
c.bench_function("parse-coma", |b| b.iter(|| parse(COMA)));
|
|
}
|
|
|
|
fn typesetting_benchmark(c: &mut Criterion) {
|
|
let mut index = FsIndex::new();
|
|
index.search_dir(FONT_DIR);
|
|
|
|
let (descriptors, files) = index.into_vecs();
|
|
let provider = FsProvider::new(files);
|
|
let loader = FontLoader::new(Box::new(provider), descriptors);
|
|
let loader = Rc::new(RefCell::new(loader));
|
|
|
|
let state = State::default();
|
|
c.bench_function("typeset-coma", |b| {
|
|
b.iter(|| block_on(typeset(COMA, state.clone(), Rc::clone(&loader))))
|
|
});
|
|
}
|
|
|
|
criterion_group!(benches, parsing_benchmark, typesetting_benchmark);
|
|
criterion_main!(benches);
|