Skip to content

Commit

Permalink
Refs #5021: FIFO scheduler takes time down to 52 sec
Browse files Browse the repository at this point in the history
for TOPAZ_5625 (down from 109 seconds before split change). FIFO is a lot more efficient than the largest cost scheduler for lots of small tasks
  • Loading branch information
Janik Zikovsky committed Apr 11, 2012
1 parent e0da5ff commit 7dc1271
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ namespace MDEvents
bool MultiThreadedAdding = m_inWS->threadSafe();

// Create the thread pool that will run all of these.
ThreadScheduler * ts = new ThreadSchedulerLargestCost();
ThreadScheduler * ts = new ThreadSchedulerFIFO();
ThreadPool tp(ts, 0);

// To track when to split up boxes
Expand Down

0 comments on commit 7dc1271

Please sign in to comment.