2012-12-10 17:32:48 -08: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 12:51:47 -07:00
|
|
|
// A port of the simplistic benchmark from
|
|
|
|
//
|
|
|
|
// http://github.com/PaulKeeble/ScalaVErlangAgents
|
|
|
|
//
|
|
|
|
// I *think* it's the same, more or less.
|
|
|
|
|
2014-02-19 19:08:12 -08:00
|
|
|
extern crate time;
|
2012-07-12 12:51:47 -07:00
|
|
|
|
2013-05-24 19:35:29 -07:00
|
|
|
use std::os;
|
|
|
|
use std::task;
|
|
|
|
use std::uint;
|
2012-07-12 12:51:47 -07:00
|
|
|
|
2013-07-17 15:31:20 -04:00
|
|
|
fn move_out<T>(_x: T) {}
|
2012-07-12 12:51:47 -07:00
|
|
|
|
|
|
|
enum request {
|
|
|
|
get_count,
|
|
|
|
bytes(uint),
|
|
|
|
stop
|
|
|
|
}
|
|
|
|
|
2014-03-09 14:58:32 -07:00
|
|
|
fn server(requests: &Receiver<request>, responses: &Sender<uint>) {
|
2013-07-02 12:47:32 -07:00
|
|
|
let mut count: uint = 0;
|
2012-07-12 12:51:47 -07:00
|
|
|
let mut done = false;
|
|
|
|
while !done {
|
2013-12-15 18:17:43 -08:00
|
|
|
match requests.recv_opt() {
|
2013-07-02 12:47:32 -07:00
|
|
|
Some(get_count) => { responses.send(count.clone()); }
|
2012-08-20 12:23:37 -07:00
|
|
|
Some(bytes(b)) => {
|
2013-10-21 13:08:31 -07:00
|
|
|
//error!("server: received {:?} bytes", b);
|
2012-07-12 12:51:47 -07:00
|
|
|
count += b;
|
|
|
|
}
|
2012-08-20 12:23:37 -07:00
|
|
|
None => { done = true; }
|
2012-08-03 19:59:04 -07:00
|
|
|
_ => { }
|
2012-07-12 12:51:47 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
responses.send(count);
|
2013-10-21 13:08:31 -07:00
|
|
|
//error!("server exiting");
|
2012-07-12 12:51:47 -07:00
|
|
|
}
|
|
|
|
|
2012-07-13 22:57:48 -07:00
|
|
|
fn run(args: &[~str]) {
|
2014-03-09 14:58:32 -07:00
|
|
|
let (to_parent, from_child) = channel();
|
2012-07-12 12:51:47 -07:00
|
|
|
|
2013-09-15 07:27:32 +02:00
|
|
|
let size = from_str::<uint>(args[1]).unwrap();
|
|
|
|
let workers = from_str::<uint>(args[2]).unwrap();
|
2012-07-12 12:51:47 -07:00
|
|
|
let num_bytes = 100;
|
2014-02-19 19:08:12 -08:00
|
|
|
let start = time::precise_time_s();
|
2012-07-12 12:51:47 -07:00
|
|
|
let mut worker_results = ~[];
|
2013-12-15 18:17:43 -08:00
|
|
|
let from_parent = if workers == 1 {
|
2014-03-09 14:58:32 -07:00
|
|
|
let (to_child, from_parent) = channel();
|
2013-05-06 19:29:04 -07:00
|
|
|
let mut builder = task::task();
|
2013-10-18 10:38:46 +02:00
|
|
|
worker_results.push(builder.future_result());
|
2014-01-27 18:29:50 -05:00
|
|
|
builder.spawn(proc() {
|
2013-08-03 12:45:23 -04:00
|
|
|
for _ in range(0u, size / workers) {
|
2013-10-21 13:08:31 -07:00
|
|
|
//error!("worker {:?}: sending {:?} bytes", i, num_bytes);
|
2012-07-12 12:51:47 -07:00
|
|
|
to_child.send(bytes(num_bytes));
|
|
|
|
}
|
2013-10-21 13:08:31 -07:00
|
|
|
//error!("worker {:?} exiting", i);
|
2014-01-27 18:29:50 -05:00
|
|
|
});
|
2013-12-15 18:17:43 -08:00
|
|
|
from_parent
|
|
|
|
} else {
|
2014-03-09 14:58:32 -07:00
|
|
|
let (to_child, from_parent) = channel();
|
2013-12-15 18:17:43 -08:00
|
|
|
for _ in range(0u, workers) {
|
|
|
|
let to_child = to_child.clone();
|
|
|
|
let mut builder = task::task();
|
|
|
|
worker_results.push(builder.future_result());
|
2014-01-27 18:29:50 -05:00
|
|
|
builder.spawn(proc() {
|
2013-12-15 18:17:43 -08:00
|
|
|
for _ in range(0u, size / workers) {
|
|
|
|
//error!("worker {:?}: sending {:?} bytes", i, num_bytes);
|
|
|
|
to_child.send(bytes(num_bytes));
|
|
|
|
}
|
|
|
|
//error!("worker {:?} exiting", i);
|
2014-01-27 18:29:50 -05:00
|
|
|
});
|
2013-12-15 18:17:43 -08:00
|
|
|
}
|
|
|
|
from_parent
|
|
|
|
};
|
2014-01-27 18:29:50 -05:00
|
|
|
task::spawn(proc() {
|
2013-04-26 14:04:39 -07:00
|
|
|
server(&from_parent, &to_parent);
|
2014-01-27 18:29:50 -05:00
|
|
|
});
|
2012-07-12 12:51:47 -07:00
|
|
|
|
2013-08-03 12:45:23 -04:00
|
|
|
for r in worker_results.iter() {
|
2012-10-22 19:01:37 -07:00
|
|
|
r.recv();
|
2012-09-18 21:41:37 -07:00
|
|
|
}
|
|
|
|
|
2013-10-21 13:08:31 -07:00
|
|
|
//error!("sending stop message");
|
2013-12-15 18:17:43 -08:00
|
|
|
//to_child.send(stop);
|
|
|
|
//move_out(to_child);
|
2012-07-12 12:51:47 -07:00
|
|
|
let result = from_child.recv();
|
2014-02-19 19:08:12 -08:00
|
|
|
let end = time::precise_time_s();
|
2012-07-12 12:51:47 -07:00
|
|
|
let elapsed = end - start;
|
2013-10-13 18:48:47 -07:00
|
|
|
print!("Count is {:?}\n", result);
|
|
|
|
print!("Test took {:?} seconds\n", elapsed);
|
2013-09-26 02:26:09 -04:00
|
|
|
let thruput = ((size / workers * workers) as f64) / (elapsed as f64);
|
2013-10-13 18:48:47 -07:00
|
|
|
print!("Throughput={} per sec\n", thruput);
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(result, num_bytes * size);
|
2012-07-12 12:51:47 -07:00
|
|
|
}
|
|
|
|
|
2012-10-03 19:16:27 -07:00
|
|
|
fn main() {
|
|
|
|
let args = os::args();
|
2013-07-17 15:31:20 -04:00
|
|
|
let args = if os::getenv("RUST_BENCH").is_some() {
|
2012-07-13 22:57:48 -07:00
|
|
|
~[~"", ~"1000000", ~"8"]
|
2012-07-12 12:51:47 -07:00
|
|
|
} else if args.len() <= 1u {
|
2012-07-13 22:57:48 -07:00
|
|
|
~[~"", ~"10000", ~"4"]
|
2012-07-12 12:51:47 -07:00
|
|
|
} else {
|
2013-07-02 12:47:32 -07:00
|
|
|
args.clone()
|
2013-05-03 19:25:04 -04:00
|
|
|
};
|
2012-07-12 12:51:47 -07:00
|
|
|
|
2013-10-21 13:08:31 -07:00
|
|
|
info!("{:?}", args);
|
2012-07-12 12:51:47 -07:00
|
|
|
run(args);
|
|
|
|
}
|