Last change
on this file since 7708 was
7708,
checked in by hudson, 15 years ago
|
Modified benchmark to give profiling info.
|
File size:
756 bytes
|
Rev | Line | |
---|
[7697] | 1 | """Benchmark for sww2dem |
---|
| 2 | |
---|
| 3 | Creates and exports a dem from an sww file. |
---|
| 4 | """ |
---|
| 5 | |
---|
| 6 | from anuga.shallow_water.data_manager import sww2dem |
---|
| 7 | from create_test_sww import create_test_sww |
---|
| 8 | import os.path |
---|
[7698] | 9 | import cProfile |
---|
[7708] | 10 | import time |
---|
[7697] | 11 | |
---|
| 12 | |
---|
[7708] | 13 | sww_name = 'test.sww' |
---|
| 14 | |
---|
[7698] | 15 | def sww2dem_test(): |
---|
| 16 | # do export to DEM |
---|
[7697] | 17 | |
---|
[7698] | 18 | sww2dem('test', |
---|
| 19 | basename_out='sww2dem_out', |
---|
| 20 | quantity='stage', |
---|
[7708] | 21 | cellsize=0.25, |
---|
[7698] | 22 | easting_min=0, |
---|
| 23 | easting_max=100, |
---|
| 24 | northing_min=0, |
---|
| 25 | northing_max=100, |
---|
| 26 | reduction=max, |
---|
| 27 | verbose=True, |
---|
| 28 | format='asc') |
---|
| 29 | |
---|
[7708] | 30 | |
---|
| 31 | # use existing file |
---|
| 32 | if not os.path.isfile(sww_name): |
---|
| 33 | create_test_sww(sww_name) |
---|
| 34 | |
---|
| 35 | start_time = time.time() |
---|
[7698] | 36 | cProfile.run('sww2dem_test()') |
---|
[7708] | 37 | #sww2dem_test() |
---|
| 38 | stop_time = time.time() |
---|
| 39 | print ('sww2dem took %.1fs\n\n\n' % (stop_time - start_time)) |
---|
Note: See
TracBrowser
for help on using the repository browser.