SCHEDULE_OPENMP C/OpenMP version Count the primes from 1 to N. This is an unbalanced work load, particular for two threads. Demonstrate default, static and dynamic scheduling. Number of processors available = 8 Number of threads = 2 Default Static Dynamic N Pi(N) Time Time Time 1 0 0.000057 0.000002 0.000002 2 1 0.000001 0.000001 0.000001 4 2 0.000001 0.000001 0.000001 8 4 0.000001 0.000001 0.000001 16 6 0.000001 0.000001 0.000001 32 11 0.000002 0.000002 0.000002 64 18 0.000002 0.000003 0.000003 128 31 0.000005 0.000006 0.000006 256 54 0.000015 0.000012 0.000013 512 97 0.000060 0.000041 0.000046 1024 172 0.000175 0.000125 0.000140 2048 309 0.000620 0.000491 0.000500 4096 564 0.002287 0.001562 0.001605 8192 1028 0.007432 0.005478 0.006188 16384 1900 0.027283 0.018836 0.021550 32768 3512 0.102601 0.070223 0.077525 65536 6542 0.365579 0.262727 0.285167 131072 12251 1.376830 0.973479 1.090316 SCHEDULE_OPENMP Normal end of execution.