Changeset 3519
- Timestamp:
- Aug 21, 2006, 5:50:47 PM (18 years ago)
- Location:
- production/wollongong_2006
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
production/wollongong_2006/run_flagstaff.py
r3514 r3519 110 110 print domain.statistics() 111 111 112 #domain.set_name(project.basename)113 #domain.set_datadir(project.outputdir)114 #domain.set_quantities_to_be_stored(['stage', 'xmomentum', 'ymomentum'])115 #domain.set_quantities_to_be_stored(None)116 117 112 domain.set_quantity('elevation', 118 113 filename=project.demname + '.pts', … … 164 159 ghost_recv_dict = ghost_recv_dict) 165 160 166 # FIXME (Ole): Name currently has to be set here to get the processor number167 # right. It would be easy to build into Parallel_Domain161 # Name etc currently has to be set here as they are not transferred from the 162 # original domain 168 163 domain.set_name(project.basename) 169 164 domain.set_datadir(project.outputdir) 170 165 166 171 167 #------------------------------------------------------------------------------ 172 168 # Setup initial conditions … … 174 170 175 171 176 domain.set_quantity('elevation', quantities['elevation']) # Getelevation172 domain.set_quantity('elevation', quantities['elevation']) # Distribute elevation 177 173 domain.set_quantity('stage', project.initial_sealevel) 178 174 domain.set_quantity('friction', 0.03) … … 181 177 # FIXME (Ole): This one segfaults which is bad, because set_quantity is 182 178 # time consuming and should be done here rather than on processor 0 179 # It did not segfault today 2 Aug 2006 !!! 180 # But values are zero ??.... 183 181 # 184 182 #domain.set_quantity('elevation', 185 183 # filename=project.demname + '.pts', 186 # use_cache= True,184 # use_cache=False, 187 185 # verbose=True) 188 186 -
production/wollongong_2006/timings.txt
r3485 r3519 1 1 2 mpirun -c 42 python run_flagstaff.py 3 4 That took 2934.78 seconds 5 Communication time 191.28 seconds 6 Reduction Communication time 69.67 seconds 7 Broadcast time 9.52 seconds 2 8 3 9 ==================
Note: See TracChangeset
for help on using the changeset viewer.