You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
2.5 KiB
Rust

2 years ago
/*
* Copyright 2022, The Cozo Project Authors.
*
* This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
* If a copy of the MPL was not distributed with this file,
* You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#![feature(test)]
extern crate test;
use std::collections::BTreeMap;
use std::fs::File;
use std::io::BufRead;
use std::path::PathBuf;
use std::time::Instant;
use std::{env, io};
use test::Bencher;
use lazy_static::{initialize, lazy_static};
use cozo::{DbInstance, NamedRows, DataValue};
2 years ago
lazy_static! {
static ref TEST_DB: DbInstance = {
let data_dir = PathBuf::from(env::var("COZO_BENCH_WIKI_DIR").unwrap());
let db = DbInstance::new("mem", "", "").unwrap();
let mut file_path = data_dir.clone();
file_path.push("wikipedia-articles.el");
// dbg!(&db_kind);
// dbg!(&data_dir);
// dbg!(&file_path);
// dbg!(&data_size);
// dbg!(&n_threads);
db.run_script(":create article {fr: Int, to: Int}",
Default::default(),
).unwrap();
let file = File::open(&file_path).unwrap();
let mut articles = vec![];
let import_time = Instant::now();
for line in io::BufReader::new(file).lines() {
let line = line.unwrap();
if line.len() < 2 {
continue
}
let mut splits = line.split_whitespace();
let fr = splits.next().unwrap();
let to = splits.next().unwrap();
articles.push(vec![DataValue::from(fr.parse::<i64>().unwrap()), DataValue::from(to.parse::<i64>().unwrap())])
2 years ago
}
db.import_relations(BTreeMap::from([("article".to_string(), NamedRows {
headers: vec![
"fr".to_string(),
"to".to_string(),
],
rows: articles,
next: None,
2 years ago
})])).unwrap();
dbg!(import_time.elapsed());
db
};
}
#[bench]
fn wikipedia_pagerank(b: &mut Bencher) {
initialize(&TEST_DB);
b.iter(|| {
TEST_DB
.run_script("?[id, rank] <~ PageRank(*article[])", Default::default())
.unwrap()
});
}
#[bench]
fn wikipedia_louvain(b: &mut Bencher) {
initialize(&TEST_DB);
b.iter(|| {
let start = Instant::now();
TEST_DB
.run_script(
"?[grp, idx] <~ CommunityDetectionLouvain(*article[])",
Default::default(),
)
.unwrap();
dbg!(start.elapsed());
})
}