Changeset 5d369c7 for benchmark/readyQ
- Timestamp:
- Dec 18, 2020, 3:01:05 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 7b1f6d4
- Parents:
- 751e2eb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/locality.rs
r751e2eb r5d369c7 245 245 let options = App::new("Locality Tokio") 246 246 .args(&bench::args()) 247 .arg(Arg::with_name("size") .short("w").long("worksize").takes_value(true).default_value("2").help("Size of the array for each threads, in words (64bit)"))248 .arg(Arg::with_name("work") .short("c").long("workcnt").takes_value(true).default_value("2").help("Number of words to touch when working (random pick, cells can be picked more than once)"))249 .arg(Arg::with_name("share") .short("s").long("share").takes_value(true).default_value("true").help("Pass the work data to the next thread when blocking"))247 .arg(Arg::with_name("size") .short("w").long("worksize").takes_value(true).default_value("2").help("Size of the array for each threads, in words (64bit)")) 248 .arg(Arg::with_name("work") .short("c").long("workcnt") .takes_value(true).default_value("2").help("Number of words to touch when working (random pick, cells can be picked more than once)")) 249 .arg(Arg::with_name("share").short("s").long("share") .takes_value(true).default_value("true").help("Pass the work data to the next thread when blocking")) 250 250 .get_matches(); 251 251
Note: See TracChangeset
for help on using the changeset viewer.