2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-07-12 14:51:47 -05:00
|
|
|
// A port of the simplistic benchmark from
|
|
|
|
//
|
|
|
|
// http://github.com/PaulKeeble/ScalaVErlangAgents
|
|
|
|
//
|
|
|
|
// I *think* it's the same, more or less.
|
|
|
|
|
2012-09-18 17:52:21 -05:00
|
|
|
#[legacy_modes];
|
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2013-03-01 17:55:31 -06:00
|
|
|
use core::io::Writer;
|
|
|
|
use core::io::WriterUtil;
|
2012-07-12 14:51:47 -05:00
|
|
|
|
2013-03-01 17:55:31 -06:00
|
|
|
use core::comm::{Port, PortSet, Chan, stream};
|
2012-07-12 14:51:47 -05:00
|
|
|
|
2012-08-22 19:47:11 -05:00
|
|
|
macro_rules! move_out (
|
2013-02-15 04:44:18 -06:00
|
|
|
{ $x:expr } => { unsafe { let y = *ptr::addr_of(&($x)); y } }
|
2012-08-22 19:47:11 -05:00
|
|
|
)
|
2012-07-12 14:51:47 -05:00
|
|
|
|
|
|
|
enum request {
|
|
|
|
get_count,
|
|
|
|
bytes(uint),
|
|
|
|
stop
|
|
|
|
}
|
|
|
|
|
2013-02-02 05:10:12 -06:00
|
|
|
fn server(requests: PortSet<request>, responses: Chan<uint>) {
|
2012-12-11 14:26:41 -06:00
|
|
|
let mut count = 0;
|
2012-07-12 14:51:47 -05:00
|
|
|
let mut done = false;
|
|
|
|
while !done {
|
2012-08-06 14:34:08 -05:00
|
|
|
match requests.try_recv() {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(get_count) => { responses.send(copy count); }
|
|
|
|
Some(bytes(b)) => {
|
2012-08-22 19:24:52 -05:00
|
|
|
//error!("server: received %? bytes", b);
|
2012-07-12 14:51:47 -05:00
|
|
|
count += b;
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => { done = true; }
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => { }
|
2012-07-12 14:51:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
responses.send(count);
|
2012-08-22 19:24:52 -05:00
|
|
|
//error!("server exiting");
|
2012-07-12 14:51:47 -05:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn run(args: &[~str]) {
|
2013-02-02 05:10:12 -06:00
|
|
|
let (from_child, to_parent) = stream();
|
|
|
|
let (from_parent_, to_child) = stream();
|
2013-04-17 01:45:29 -05:00
|
|
|
let from_parent = PortSet::new();
|
2013-02-15 04:44:18 -06:00
|
|
|
from_parent.add(from_parent_);
|
2012-07-12 14:51:47 -05:00
|
|
|
|
2012-09-21 21:37:57 -05:00
|
|
|
let size = uint::from_str(args[1]).get();
|
|
|
|
let workers = uint::from_str(args[2]).get();
|
2012-07-12 14:51:47 -05:00
|
|
|
let num_bytes = 100;
|
|
|
|
let start = std::time::precise_time_s();
|
|
|
|
let mut worker_results = ~[];
|
2012-09-19 00:44:34 -05:00
|
|
|
for uint::range(0, workers) |_i| {
|
2013-02-02 05:10:12 -06:00
|
|
|
let (from_parent_, to_child) = stream();
|
2013-02-15 04:44:18 -06:00
|
|
|
from_parent.add(from_parent_);
|
2012-08-07 13:26:03 -05:00
|
|
|
do task::task().future_result(|+r| {
|
2013-02-15 04:44:18 -06:00
|
|
|
worker_results.push(r);
|
|
|
|
}).spawn || {
|
2012-09-19 00:44:34 -05:00
|
|
|
for uint::range(0, size / workers) |_i| {
|
2012-08-22 19:24:52 -05:00
|
|
|
//error!("worker %?: sending %? bytes", i, num_bytes);
|
2012-07-12 14:51:47 -05:00
|
|
|
to_child.send(bytes(num_bytes));
|
|
|
|
}
|
2012-08-22 19:24:52 -05:00
|
|
|
//error!("worker %? exiting", i);
|
2012-07-12 14:51:47 -05:00
|
|
|
};
|
|
|
|
}
|
2013-02-15 04:44:18 -06:00
|
|
|
do task::spawn || {
|
2012-07-12 14:51:47 -05:00
|
|
|
server(from_parent, to_parent);
|
|
|
|
}
|
|
|
|
|
2012-09-18 23:41:37 -05:00
|
|
|
for vec::each(worker_results) |r| {
|
2012-10-22 21:01:37 -05:00
|
|
|
r.recv();
|
2012-09-18 23:41:37 -05:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:24:52 -05:00
|
|
|
//error!("sending stop message");
|
2012-07-12 14:51:47 -05:00
|
|
|
to_child.send(stop);
|
2012-08-22 19:24:52 -05:00
|
|
|
move_out!(to_child);
|
2012-07-12 14:51:47 -05:00
|
|
|
let result = from_child.recv();
|
|
|
|
let end = std::time::precise_time_s();
|
|
|
|
let elapsed = end - start;
|
2012-08-22 19:24:52 -05:00
|
|
|
io::stdout().write_str(fmt!("Count is %?\n", result));
|
|
|
|
io::stdout().write_str(fmt!("Test took %? seconds\n", elapsed));
|
2012-07-12 14:51:47 -05:00
|
|
|
let thruput = ((size / workers * workers) as float) / (elapsed as float);
|
2012-08-22 19:24:52 -05:00
|
|
|
io::stdout().write_str(fmt!("Throughput=%f per sec\n", thruput));
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(result == num_bytes * size);
|
2012-07-12 14:51:47 -05:00
|
|
|
}
|
|
|
|
|
2012-10-03 21:16:27 -05:00
|
|
|
fn main() {
|
|
|
|
let args = os::args();
|
2012-07-14 00:57:48 -05:00
|
|
|
let args = if os::getenv(~"RUST_BENCH").is_some() {
|
|
|
|
~[~"", ~"1000000", ~"8"]
|
2012-07-12 14:51:47 -05:00
|
|
|
} else if args.len() <= 1u {
|
2012-07-14 00:57:48 -05:00
|
|
|
~[~"", ~"10000", ~"4"]
|
2012-07-12 14:51:47 -05:00
|
|
|
} else {
|
|
|
|
copy args
|
|
|
|
};
|
|
|
|
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("%?", args);
|
2012-07-12 14:51:47 -05:00
|
|
|
run(args);
|
|
|
|
}
|