...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
#!/bin/bash -l #SBATCH --job-name=hyp-$1 #SBATCH --output=hyperdrive.out #SBATCH --nodes=1 #SBATCH --ntasks-per-node=40 #SBATCH --time=01:00:00 #SBATCH --clusters=garrawarla #SBATCH --partition=gpuq #SBATCH --account=mwavcs #SBATCH --export=NONE #SBATCH --gres=tmp:50g #SBATCH --gres=gpu:1 # Load the Hyperdrive module module use /pawsey/mwa/software/python3/modulefiles module load hyperdrive set -eux which hyperdrive # The location of the correlated visibility FITS files: DATADIR=/astro/mwavcs/asvo/253001 # The path to the associated metafits file METAFITS=${DATADIR}/1323690320.metafits # The base source list (you shouldn't need to change this) SRCLIST=/pawsey/mwa/software/python3/srclists/master/srclist_pumav3_EoR0aegean_fixedEoR1pietro+ForA_phase1+2.txt # If it hasn't been done already, run Hyperdrive in "srclist-by-beam" to get just the subset of sources in the beam if [[ ! -r srclist_1000.yaml ]]; then hyperdrive srclist-by-beam \ -n 1000 \ -m ${METAFITS} \ /pawsey/mwa/software/python3/srclists/master/srclist_pumav3_EoR0aegean_fixedEoR1pietro+ForA_phase1+2.txt \ srclist_1000.yaml fi # Run Hyperdrive to generate a calibration solution hyperdrive di-calibrate \ -s srclist_1000.yaml \ -d ${DATADIR}/*.fits \ ${METAFITS} |
Run the Hyperdrive script (on Garrawarla):
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
cd /astro/mwavcs/vcs/1323690320/hyperdrive
sbatch hyperdrive.sbatch |
Plot the calibration solutions:
...