geodesymiami / rsmas_insar

RSMAS InSAR code
https://rsmas-insar.readthedocs.io/
GNU General Public License v3.0
58 stars 22 forks source link

TACC meeting April 2022 #518

Open falkamelung opened 2 years ago

falkamelung commented 2 years ago

Installation of code and setting environment

Task: Our goal is to find out how many tasks (jobs) we can run simultaneously without copy-to-tmp of input files.

Once you have successfully ran lets deal with this:

cd /scratch2/05861/tg851601/SouthWesternNAMChunk36SenAT64/run_files_tmp

Current trouble-causing jobs:

sbatch run_08_generate_burst_igram_0.job
sbatch run_08_generate_burst_igram_1.job

(note to Falk: run_08_generate_burst_igram_3.job, etc got accidentally deleted)

New jobs (without copy-to-tmp of data):

sbatch  run_08_generate_burst_igram_32_fast10.job
sbatch  run_08_generate_burst_igram_36_fast10.job
sbatch  run_08_generate_burst_igram_40_fast10.job
sbatch  run_08_generate_burst_igram_44_fast10.job
sbatch  run_08_generate_burst_igram_48_fast10.job

Each job contains 40 tasks which are run using launcher. The question is how many tasks can I run simultaneously. Can I run the 5 jobs (50 tasks) simultaneously? Or can I run even more, e.g. 75 or 100 (change LAUNCHER_PPN to 15 or 20)?

We also could put a sleep 30 before each task to ensure that the bulk data reading of the previous tasks is completed before the next task starts,