Changeset 1e24d13 for doc/theses/thierry_delisle_PhD/code
- Timestamp:
- Sep 26, 2019, 4:36:01 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- c921712
- Parents:
- 50aeb6f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/thierry_delisle_PhD/code/relaxed_list.cpp
r50aeb6f r1e24d13 112 112 if(r < fill) 113 113 node = new Node(rand.next() % 100); 114 else 115 node = nullptr; 114 116 } 115 117 … … 177 179 break; 178 180 } 179 std::cout << "\r" << durr.count() ;181 std::cout << "\r" << durr.count() << "/" << duration; 180 182 std::cout.flush(); 181 183 } … … 264 266 265 267 std::cout << "Running " << nthreads << " threads (" << (nthreads * nqueues) << " queues) for " << duration << " seconds" << std::endl; 266 run(nthreads, nqueues, duration, fill);268 run(nthreads, nqueues, fill, duration); 267 269 268 270 return 0;
Note: See TracChangeset
for help on using the changeset viewer.