SCHEDULE_OPENMP Fortran77/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 = 16 Number of threads = 2 Default Static Dynamic N Pi(N) Time Time Time 1 0 0.168079E-03 0.407599E-05 0.371801E-05 2 1 0.280200E-05 0.239001E-05 0.266201E-05 4 2 0.259900E-05 0.257499E-05 0.276498E-05 8 4 0.993800E-05 0.241498E-05 0.303000E-05 16 6 0.339301E-05 0.317799E-05 0.398399E-05 32 11 0.431901E-05 0.432201E-05 0.427000E-05 64 18 0.606800E-05 0.754901E-05 0.716501E-05 128 31 0.130270E-04 0.125450E-04 0.119860E-04 256 54 0.327170E-04 0.246290E-04 0.269090E-04 512 97 0.101745E-03 0.822730E-04 0.793490E-04 1024 172 0.282848E-03 0.237986E-03 0.228246E-03 2048 309 0.875293E-03 0.749429E-03 0.673810E-03 4096 564 0.352104E-02 0.244115E-02 0.225917E-02 8192 1028 0.121251E-01 0.113831E-01 0.821033E-02 16384 1900 0.370154E-01 0.221494E-01 0.203864E-01 32768 3512 0.108617 0.746175E-01 0.745811E-01 65536 6542 0.406933 0.278883 0.278228 131072 12251 1.53248 1.05045 1.04545 SCHEDULE_OPENMP Normal end of execution.