-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
185 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
use chorus_lib::core::{ | ||
ChoreoOp, Choreography, ChoreographyLocation, LocationSet, Projector, Transport, | ||
}; | ||
use chorus_lib::transport::local::{LocalTransport, LocalTransportChannelBuilder}; | ||
use criterion::{ | ||
black_box, criterion_group, criterion_main, AxisScale, BenchmarkId, Criterion, | ||
PlotConfiguration, | ||
}; | ||
use std::thread::spawn; | ||
|
||
#[derive(ChoreographyLocation)] | ||
struct Alice; | ||
|
||
#[derive(ChoreographyLocation)] | ||
struct Bob; | ||
|
||
struct CommChoreography { | ||
n: u64, | ||
} | ||
|
||
impl Choreography for CommChoreography { | ||
type L = LocationSet!(Alice, Bob); | ||
|
||
fn run(self, op: &impl ChoreoOp<Self::L>) { | ||
for _ in 0..self.n { | ||
op.comm(Bob, Alice, &op.locally::<f32, _, _>(Bob, |_| 1.0)); | ||
} | ||
} | ||
} | ||
|
||
fn comm_choreography(n: u64) { | ||
let channel = LocalTransportChannelBuilder::new() | ||
.with(Alice) | ||
.with(Bob) | ||
.build(); | ||
let mut handles = Vec::new(); | ||
{ | ||
let channel = channel.clone(); | ||
handles.push(spawn(move || { | ||
let transport = LocalTransport::new(Alice, channel); | ||
let projector = Projector::new(Alice, transport); | ||
let c = CommChoreography { n }; | ||
projector.epp_and_run(c); | ||
})); | ||
} | ||
{ | ||
let channel = channel.clone(); | ||
handles.push(spawn(move || { | ||
let transport = LocalTransport::new(Bob, channel); | ||
let projector = Projector::new(Bob, transport); | ||
let c = CommChoreography { n }; | ||
projector.epp_and_run(c); | ||
})); | ||
} | ||
for handle in handles { | ||
handle.join().unwrap(); | ||
} | ||
} | ||
|
||
fn comm_handwritten_alice(n: u64, transport: &LocalTransport<LocationSet!(Bob, Alice), Alice>) { | ||
for _ in 0..n { | ||
transport.receive::<f32>(Bob::name(), Alice::name()); | ||
} | ||
} | ||
|
||
fn comm_handwritten_bob(n: u64, transport: &LocalTransport<LocationSet!(Bob, Alice), Bob>) { | ||
for _ in 0..n { | ||
transport.send::<f32>(Bob::name(), Alice::name(), &1.0); | ||
} | ||
} | ||
|
||
fn comm_handwritten(n: u64) { | ||
let channel = LocalTransportChannelBuilder::new() | ||
.with(Alice) | ||
.with(Bob) | ||
.build(); | ||
let mut handles = Vec::new(); | ||
{ | ||
let channel = channel.clone(); | ||
handles.push(spawn(move || { | ||
let transport = LocalTransport::new(Alice, channel); | ||
comm_handwritten_alice(n, &transport); | ||
})); | ||
} | ||
{ | ||
let channel = channel.clone(); | ||
handles.push(spawn(move || { | ||
let transport = LocalTransport::new(Bob, channel); | ||
comm_handwritten_bob(n, &transport); | ||
})); | ||
} | ||
for handle in handles { | ||
handle.join().unwrap(); | ||
} | ||
} | ||
|
||
fn bench_comm(c: &mut Criterion) { | ||
let mut group = c.benchmark_group("Comm"); | ||
let plot_config = PlotConfiguration::default().summary_scale(AxisScale::Logarithmic); | ||
group.plot_config(plot_config); | ||
for i in [1, 10, 100, 1000, 10000].iter() { | ||
group.bench_with_input(BenchmarkId::new("Handwritten", i), i, |b, i| { | ||
b.iter(|| comm_handwritten(black_box(*i))) | ||
}); | ||
} | ||
for i in [1, 10, 100, 1000, 10000].iter() { | ||
group.bench_with_input(BenchmarkId::new("Choreographic", i), i, |b, i| { | ||
b.iter(|| comm_choreography(black_box(*i))) | ||
}); | ||
} | ||
group.finish(); | ||
} | ||
|
||
criterion_group!(benches, bench_comm); | ||
criterion_main!(benches); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
use chorus_lib::core::{ChoreoOp, Choreography, ChoreographyLocation, Located, LocationSet}; | ||
use criterion::{ | ||
black_box, criterion_group, criterion_main, AxisScale, BenchmarkId, Criterion, | ||
PlotConfiguration, | ||
}; | ||
|
||
#[derive(ChoreographyLocation)] | ||
struct Alice; | ||
|
||
struct AddToNLocallyChoreography { | ||
n: f64, | ||
} | ||
impl Choreography<Located<f64, Alice>> for AddToNLocallyChoreography { | ||
type L = LocationSet!(Alice); | ||
|
||
fn run(self, op: &impl ChoreoOp<Self::L>) -> Located<f64, Alice> { | ||
let mut i = op.locally(Alice, |_| 0.0); | ||
for _ in 0..self.n.ceil() as u64 { | ||
i = op.locally(Alice, |un| *un.unwrap(&i) + 1.0); | ||
} | ||
return i; | ||
} | ||
} | ||
|
||
fn add_to_n_locally_choreographic(n: f64) { | ||
let c = AddToNLocallyChoreography { n }; | ||
let channel = chorus_lib::transport::local::LocalTransportChannelBuilder::new() | ||
.with(Alice) | ||
.build(); | ||
let transport = chorus_lib::transport::local::LocalTransport::new(Alice, channel); | ||
let projector = chorus_lib::core::Projector::new(Alice, transport); | ||
let result = projector.epp_and_run(c); | ||
assert_eq!(projector.unwrap(result), n); | ||
} | ||
|
||
fn add_to_n_locally_handwritten(n: f64) { | ||
let mut a: f64 = 0.0; | ||
for _ in 0..n.ceil() as u64 { | ||
a += 1.0; | ||
} | ||
assert_eq!(a, n); | ||
} | ||
|
||
fn bench_add_to_n_locally(c: &mut Criterion) { | ||
let mut group = c.benchmark_group("Locally"); | ||
let plot_config = PlotConfiguration::default().summary_scale(AxisScale::Logarithmic); | ||
// group.plot_config(plot_config); | ||
// let range = [1, 10, 100, 1000, 10000]; | ||
let range = [2000, 4000, 6000, 8000, 10000]; | ||
for i in range.iter() { | ||
group.bench_with_input(BenchmarkId::new("Handwritten", i), i, |b, i| { | ||
b.iter(|| add_to_n_locally_handwritten(black_box(*i as f64))) | ||
}); | ||
} | ||
for i in range.iter() { | ||
group.bench_with_input(BenchmarkId::new("Choreographic", i), i, |b, i| { | ||
b.iter(|| add_to_n_locally_choreographic(black_box(*i as f64))) | ||
}); | ||
} | ||
|
||
group.finish(); | ||
} | ||
|
||
criterion_group!(benches, bench_add_to_n_locally); | ||
criterion_main!(benches); |