rust/src/test/bench/core-std.rs

163 lines
3.7 KiB
Rust
Raw Normal View History

// 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.
2014-07-21 17:57:14 -05:00
// ignore-lexer-test FIXME #15679
// Microbenchmarks for various functions in std and extra
2012-06-26 13:13:02 -05:00
#![feature(macro_rules)]
2014-02-19 21:08:12 -06:00
extern crate time;
2012-06-26 13:13:02 -05:00
2014-02-19 21:08:12 -06:00
use time::precise_time_s;
std: Recreate a `rand` module This commit shuffles around some of the `rand` code, along with some reorganization. The new state of the world is as follows: * The librand crate now only depends on libcore. This interface is experimental. * The standard library has a new module, `std::rand`. This interface will eventually become stable. Unfortunately, this entailed more of a breaking change than just shuffling some names around. The following breaking changes were made to the rand library: * Rng::gen_vec() was removed. This has been replaced with Rng::gen_iter() which will return an infinite stream of random values. Previous behavior can be regained with `rng.gen_iter().take(n).collect()` * Rng::gen_ascii_str() was removed. This has been replaced with Rng::gen_ascii_chars() which will return an infinite stream of random ascii characters. Similarly to gen_iter(), previous behavior can be emulated with `rng.gen_ascii_chars().take(n).collect()` * {IsaacRng, Isaac64Rng, XorShiftRng}::new() have all been removed. These all relied on being able to use an OSRng for seeding, but this is no longer available in librand (where these types are defined). To retain the same functionality, these types now implement the `Rand` trait so they can be generated with a random seed from another random number generator. This allows the stdlib to use an OSRng to create seeded instances of these RNGs. * Rand implementations for `Box<T>` and `@T` were removed. These seemed to be pretty rare in the codebase, and it allows for librand to not depend on liballoc. Additionally, other pointer types like Rc<T> and Arc<T> were not supported. If this is undesirable, librand can depend on liballoc and regain these implementations. * The WeightedChoice structure is no longer built with a `Vec<Weighted<T>>`, but rather a `&mut [Weighted<T>]`. This means that the WeightedChoice structure now has a lifetime associated with it. * The `sample` method on `Rng` has been moved to a top-level function in the `rand` module due to its dependence on `Vec`. cc #13851 [breaking-change]
2014-05-25 03:39:37 -05:00
use std::rand;
use std::rand::Rng;
use std::mem::swap;
use std::os;
use std::str;
use std::vec;
2013-11-11 00:46:32 -06:00
use std::io::File;
2012-06-26 13:13:02 -05:00
fn main() {
let argv = os::args();
let _tests = argv.slice(1, argv.len());
2012-06-26 16:04:15 -05:00
2014-02-03 18:44:47 -06:00
macro_rules! bench (
($id:ident) =>
(maybe_run_test(argv.as_slice(),
stringify!($id).to_string(),
$id)))
bench!(shift_push);
bench!(read_line);
bench!(vec_plus);
bench!(vec_append);
bench!(vec_push_all);
bench!(is_utf8_ascii);
bench!(is_utf8_multibyte);
2012-06-26 13:13:02 -05:00
}
fn maybe_run_test(argv: &[String], name: String, test: ||) {
2012-06-28 00:30:08 -05:00
let mut run_test = false;
if os::getenv("RUST_BENCH").is_some() {
2013-05-06 21:29:04 -05:00
run_test = true
} else if argv.len() > 0 {
run_test = argv.iter().any(|x| x == &"all".to_string()) || argv.iter().any(|x| x == &name)
2012-06-28 00:30:08 -05:00
}
2013-05-06 21:29:04 -05:00
if !run_test {
return
}
2012-06-28 00:30:08 -05:00
2012-06-26 13:13:02 -05:00
let start = precise_time_s();
test();
let stop = precise_time_s();
println!("{}:\t\t{} ms", name, (stop - start) * 1000.0);
2012-06-26 13:13:02 -05:00
}
fn shift_push() {
let mut v1 = Vec::from_elem(30000, 1i);
let mut v2 = Vec::new();
2012-06-26 13:13:02 -05:00
while v1.len() > 0 {
v2.push(v1.remove(0).unwrap());
2012-06-26 13:13:02 -05:00
}
}
fn read_line() {
use std::io::BufferedReader;
2013-10-06 18:08:56 -05:00
let mut path = Path::new(env!("CFG_SRC_DIR"));
path.push("src/test/bench/shootout-k-nucleotide.data");
2012-06-26 13:13:02 -05:00
for _ in range(0u, 3) {
let mut reader = BufferedReader::new(File::open(&path).unwrap());
for _line in reader.lines() {
2012-06-26 13:13:02 -05:00
}
}
}
2012-06-26 16:04:15 -05:00
fn vec_plus() {
let mut r = rand::task_rng();
let mut v = Vec::new();
let mut i = 0;
while i < 1500 {
let rv = Vec::from_elem(r.gen_range(0u, i + 1), i);
if r.gen() {
v.extend(rv.into_iter());
} else {
let mut rv = rv.clone();
rv.push_all(v.as_slice());
v = rv;
}
i += 1;
}
}
fn vec_append() {
let mut r = rand::task_rng();
let mut v = Vec::new();
let mut i = 0;
while i < 1500 {
let rv = Vec::from_elem(r.gen_range(0u, i + 1), i);
if r.gen() {
let mut t = v.clone();
t.push_all(rv.as_slice());
v = t;
}
else {
let mut t = rv.clone();
t.push_all(v.as_slice());
v = t;
}
i += 1;
}
}
fn vec_push_all() {
let mut r = rand::task_rng();
let mut v = Vec::new();
for i in range(0u, 1500) {
let mut rv = Vec::from_elem(r.gen_range(0u, i + 1), i);
if r.gen() {
v.push_all(rv.as_slice());
}
else {
swap(&mut v, &mut rv);
v.push_all(rv.as_slice());
}
}
}
fn is_utf8_ascii() {
let mut v : Vec<u8> = Vec::new();
for _ in range(0u, 20000) {
v.push('b' as u8);
if !str::is_utf8(v.as_slice()) {
fail!("is_utf8 failed");
}
}
}
fn is_utf8_multibyte() {
let s = "b¢€𤭢";
let mut v : Vec<u8> = Vec::new();
for _ in range(0u, 5000) {
v.push_all(s.as_bytes());
if !str::is_utf8(v.as_slice()) {
fail!("is_utf8 failed");
}
}
}