Uses of Class
edu.rit.pj.LongSchedule
Packages that use LongSchedule
Package
Description
The PJ package (Parallel Java) support shared memory, message passing and
hybrid shared memory/message passing parallelization in pure Java.
-
Uses of LongSchedule in edu.rit.pj
Methods in edu.rit.pj that return LongScheduleModifier and TypeMethodDescriptionstatic LongSchedule
LongSchedule.dynamic()
Returns a dynamic schedule object with a chunk size of 1.static LongSchedule
LongSchedule.dynamic
(long theChunkSize) Returns a dynamic schedule object with the given chunk size.static LongSchedule
LongSchedule.fixed()
Returns a fixed schedule object.static LongSchedule
LongSchedule.guided()
Returns a self-guided schedule object with a minimum chunk size of 1.static LongSchedule
LongSchedule.guided
(long theChunkSize) Returns a self-guided schedule object with the given minimum chunk size.static LongSchedule
Returns a schedule object of a type determined by parsing the given string.static LongSchedule
LongSchedule.runtime()
Returns a schedule object of a type determined at run time.static LongSchedule
LongSchedule.runtime
(LongSchedule defaultSchedule) Returns a schedule object of a type determined at run time, using the given default schedule.LongForLoop.schedule()
Determine this parallel for loop's schedule.LongStrideForLoop.schedule()
Determine this parallel for loop's schedule.WorkerLongForLoop.schedule()
Determine this worker for loop's schedule.WorkerLongStrideForLoop.schedule()
Determine this worker for loop's schedule.Methods in edu.rit.pj with parameters of type LongScheduleModifier and TypeMethodDescriptionstatic LongSchedule
LongSchedule.runtime
(LongSchedule defaultSchedule) Returns a schedule object of a type determined at run time, using the given default schedule.