Difference between revisions of "Threads and Executors"
Jump to navigation
Jump to search
implement
implement
implement
implement
implement
implement
implement
Line 1: | Line 1: | ||
=Where To Start= | =Where To Start= | ||
− | === | + | ===<code>ThreadsAndExcutorsTestSuite</code>=== |
− | <code>ThreadsAndExcutorsTestSuite</code> | ||
=Threads= | =Threads= |
Revision as of 07:20, 25 September 2017
Contents
- 1 Where To Start
- 2 Threads
- 3 Executors
- 3.1 Videos
- 3.2 XNucleobaseCount
- 3.2.1 note countSequential
- 3.2.2 implement int countRangeSequential(byte[] chromosome, Nucleobase nucleobase, int min, int max)
- 3.2.3 implement int count2WaySplit(ExecutorService executor, byte[] chromosome, Nucleobase nucleobase)
- 3.2.4 implement int countNWaySplit(ExecutorService executor, byte[] chromosome, Nucleobase nucleobase, int numTasks)
- 3.2.5 implement int countDivideAndConquer(ExecutorService executor, byte[] chromosome, Nucleobase nucleobase, int threshold)
- 3.2.6 implement int countDivideAndConquerKernel(ExecutorService executor, byte[] chromosome, Nucleobase nucleobase, int min, int max, int threshold)
- 3.3 XQuicksort
Where To Start
ThreadsAndExcutorsTestSuite
Threads
class SimpleThreadFactory
Video
implement Thread newThread(Runnable target)
Create and return a new thread with the target Runnable parameter you are passed.
Do *NOT* start this thread.
Certainly, do *NOT* run this thread.
Do not pass Go. Do not collect $200.
To repeat: just create a new Thread with the target Runnable and return it.
TAgeSum
implement int sumUpperLowerSplit(int[] ages, ThreadFactory threadFactory)
You will need use the passed in ThreadFactory to create a new thread or two (at your preference), start any threads you create, and join them.
Think about where you need to start and join any Threads to ensure both correctness and an appropriate amount of parallelism.
Executors
Videos
Executor submit and Future get
XNucleobaseCount
note countSequential
public static int countSequential(byte[] chromosome, Nucleobase nucleobase) { return countRangeSequential(chromosome, nucleobase, 0, chromosome.length); }