source code
// The Computer Language Benchmarks Game
// https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
//
// contributed by the Rust Project Developers
// contributed by TeXitoi
// contributed by Cristi Cobzarenco
// contributed by Matt Brubeck
extern crate typed_arena;
extern crate rayon;
use typed_arena::Arena;
use rayon::prelude::*;
struct Tree<'a> {
children: Option<(&'a Tree<'a>, &'a Tree<'a>)>,
}
fn item_check(tree: &Tree) -> i32 {
if let Some((left, right)) = tree.children {
1 + item_check(right) + item_check(left)
} else {
1
}
}
fn bottom_up_tree<'r>(arena: &'r Arena<Tree<'r>>, depth: i32)
-> &'r Tree<'r> {
let mut tree = arena.alloc(Tree { children: None });
if depth > 0 {
let right = bottom_up_tree(arena, depth - 1);
let left = bottom_up_tree(arena, depth - 1);
tree.children = Some((left, right))
}
tree
}
fn inner(depth: i32, iterations: i32) -> String {
let chk: i32 = (0 .. iterations).into_par_iter().map(|_| {
let arena = Arena::new();
let a = bottom_up_tree(&arena, depth);
item_check(a)
}).sum();
format!("{}\t trees of depth {}\t check: {}", iterations, depth, chk)
}
fn main() {
let n = std::env::args().nth(1)
.and_then(|n| n.parse().ok())
.unwrap_or(10);
let min_depth = 4;
let max_depth = if min_depth + 2 > n { min_depth + 2 } else { n };
{
let arena = Arena::new();
let depth = max_depth + 1;
let tree = bottom_up_tree(&arena, depth);
println!("stretch tree of depth {}\t check: {}", depth, item_check(tree));
}
let long_lived_arena = Arena::new();
let long_lived_tree = bottom_up_tree(&long_lived_arena, max_depth);
let messages = (min_depth/2..max_depth/2 + 1).into_par_iter().map(|half_depth| {
let depth = half_depth * 2;
let iterations = 1 << ((max_depth - depth + min_depth) as u32);
inner(depth, iterations)
}).collect::<Vec<_>>();
for message in messages {
println!("{}", message);
}
println!("long lived tree of depth {}\t check: {}", max_depth, item_check(long_lived_tree));
}
notes, command-line, and program output
NOTES:
64-bit Ubuntu quad core
1.80.1
(3f5fd8dd4
2024-08-06)
LLVM version: 18.1.7
Thu, 05 Sep 2024 22:30:00 GMT
MAKE:
/opt/src/rust-1.80.1/bin/rustc -C opt-level=3 -C target-cpu=ivybridge -C codegen-units=1 -L /opt/src/rust-libs binarytrees.rs -o binarytrees.rust-2.rust_run
warning: variable does not need to be mutable
--> binarytrees.rs:29:9
|
29 | let mut tree = arena.alloc(Tree { children: None });
| ----^^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
warning: 1 warning emitted
9.73s to complete and log all make actions
COMMAND LINE:
./binarytrees.rust-2.rust_run 21
PROGRAM OUTPUT:
stretch tree of depth 22 check: 8388607
2097152 trees of depth 4 check: 65011712
524288 trees of depth 6 check: 66584576
131072 trees of depth 8 check: 66977792
32768 trees of depth 10 check: 67076096
8192 trees of depth 12 check: 67100672
2048 trees of depth 14 check: 67106816
512 trees of depth 16 check: 67108352
128 trees of depth 18 check: 67108736
32 trees of depth 20 check: 67108832
long lived tree of depth 21 check: 4194303