Changes between Version 19 and Version 20 of benchmarks
- Timestamp:
- 10/17/11 11:38:43 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
benchmarks
v19 v20 52 52 }}} 53 53 }}} 54 The function `submit_job(job)`: 55 {{{ 56 #!div style="font-size: 90%" 57 {{{#!sh 58 1. start_timer() 59 2. job.job = service.create_job() 60 3. job.job.run() 61 4. stop_timer() 62 5. query_state(job) 63 }}} 64 }}} 65 The function `query_state(job)`: 66 {{{ 67 #!div style="font-size: 90%" 68 {{{#!sh 69 1. start_timer() 70 2. job.last_state = job.job.get_state() 71 3. stop_timer() 72 }}} 73 }}} 74 54 75 === Test 2 - Throughput ===