Changeset 687 for branches/newmole/scripts
- Timestamp:
- 12/05/06 21:35:06 (2 years ago)
- Location:
- branches/newmole/scripts
- Files:
-
- 4 modified
-
dayslow_master.pl (modified) (1 diff)
-
nightly_copy_files_original.pl (modified) (2 diffs)
-
nightly_copy_source.pl (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/newmole/scripts/dayslow_master.pl
r324 r687 67 67 #$exe_org = "$c:/projects/cloudy/trunk/release/trunk.exe"; 68 68 # use fast gcc exe 69 $exe_org = "$c:/projects/cloudy/trunk/gcc/release/cloudy_gcc.exe"; 69 $exe_gcc = "$c:/projects/cloudy/trunk/gcc/release/cloudy_gcc.exe"; 70 $exe_icl = "$c:/projects/cloudy/trunk/icl/release/cloudy_icl.exe"; 71 $exe_org = $exe_icl; 70 72 system("cp $exe_org $out_dir "); 71 73 #$exe = "c:/projects/Cloudy/trunk/release/trunk.exe"; 72 74 #$exe = "$out_dir"."trunk.exe"; 73 $exe = "$out_dir"."cloudy_gcc.exe"; 75 $exe_gcc = "$out_dir"."cloudy_gcc.exe"; 76 $exe_icl = "$out_dir"."cloudy_icl.exe"; 77 $exe = $exe_icl; 74 78 printf(ioLOG "exe is $exe\n"); 75 79 -
branches/newmole/scripts/nightly_copy_files_original.pl
r313 r687 101 101 print(" moved to unix target source directory, about to delete all files\n"); 102 102 # remove the old source files 103 unlink <*.c > ;103 unlink <*.cpp> ; 104 104 # 105 105 # -------- … … 499 499 copy( $input , $output); 500 500 } 501 # we have now clobbered the path.c file, and need to copy a valid one from 1 dir up502 copy( "u:/cloudy/trunk/path.c " , "u:/cloudy/trunk/source/path.c" );501 # we have now clobbered the path.cpp file, and need to copy a valid one from 1 dir up 502 copy( "u:/cloudy/trunk/path.cpp" , "u:/cloudy/trunk/source/path.cpp" ); 503 503 504 504 # move to pc unix tsuite directory -
branches/newmole/scripts/nightly_copy_source.pl
r367 r687 63 63 print(" moved to unix target source directory, about to delete all files\n"); 64 64 # remove the old source files 65 unlink <*.c > ;65 unlink <*.cpp> ; 66 66 67 67 … … 109 109 copy( $input , $output); 110 110 } 111 # we have now clobbered the path.c file, and need to copy a valid one from 1 dir up111 # we have now clobbered the path.cpp file, and need to copy a valid one from 1 dir up 112 112 # so that version on unix cluster will compile & execute 113 copy( "u:/cloudy/trunk/path.c " , "u:/cloudy/trunk/source/path.c" );113 copy( "u:/cloudy/trunk/path.cpp" , "u:/cloudy/trunk/source/path.cpp" ); 114 114 115 115 # ---------------------------------------------------------- -
branches/newmole/scripts/readme.txt
r454 r687 1 1 =============================================================== 2 NIGHTLY RUN OF TEST SUITE 3 4 nightly_run_tsuite.pl - main script on my machine 5 starts first and must end last since launches checks 6 runs second group of sims (second slave does first, a point of confusion) 7 copies current.exe to tsuite directory for second script to use 8 creates log fil autorun.log 9 checks results 10 sends email announcing results 11 calls ir_extime.pl to track exec time 12 calls promote_last_good to promote last to last_good if all is ok 13 autorun.log 14 15 nightly_runL_tsuite_part2.pl - second script 16 runs first block sims across network 17 uses current.exe in tsuite dir which was copied there by first script 18 autorun2.log log file in auto directory 19 20 LOAD LEVELING 21 $nmod_calc - var controls number of sims in each half 22 adjust in each script to get load leveling right 23 decrease value to have master end later 24 25 =============================================================== 26 2 27 NIGHTLY COPY OF FILES ACROSS CLUSTER 3 28 nightly_copy_files.pl … … 19 44 20 45 =============================================================== 21 NIGHTLY RUN OF TEST SUITE22 main script on my machine23 nightly_run_tsuite.pl - script name24 starts first and must end last since launches checks25 runs second group of sims (slabe does first, a point of confusion)26 copies current.exe to tsuite directory for second script to use27 creates log fil autorun.log28 checks results29 sends email announcing results30 calls ir_extime.pl to track exec time31 calls promote_last_good to promote last to last_good if all is ok32 33 second script34 nightly_runL_tsuite_part2.pl <- runs first block sims across network35 uses current.exe in tsuite dir which was copied there by first script36 log file is autorun2.log in auto directory37 38 $nmod_calc - var controls number of sims in each half39 adjust in each script to get load leveling right40 41 ===============================================================42 46 43 47 SLOW RUNS
