Changes between Initial Version and Version 1 of R-MPI
- Timestamp:
- Apr 25, 2008, 6:40:03 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
R-MPI
v1 v1 1 * Testing the sample R program from www 2 * Original R Program (without Rmpi) 3 * Parallel R Program (with Rmpi) 4 * Here are the running times(secs) with different times of loops of origianl R: 5 {{{ 6 10 loops : 1.087226 7 20 loops : 3.395167 8 30 loops : 7.027248 9 40 loops : 11.95344 10 50 loops : 17.02942 11 60 loops : 23.54457 12 70 loops : 32.23314 13 80 loops : 42.41104 14 90 loops : 53.88992 15 100 loops : 64.43279 16 }}} 17 18 * And Here are the running times(secs) with diffrent times of loops of PARALLEL R (Rmpi): 19 {{{ 20 10 loops : 1.759266 21 20 loops : 2.582305 22 30 loops : 4.262631 23 40 loops : 6.176133 24 50 loops : 8.695369 25 60 loops : 12.00457 26 70 loops : 16.19619 27 80 loops : 20.33303 28 90 loops : 25.45973 29 100 loops : 30.71952 30 }}} 31 32 * The Curve is like this: 33 34 35 36 37 38 39 40 41 42 43 44