view bin/ezip.sh @ 195:5f3c36e4fd6d default tip

add target test-core which (dangerously) avoids (we hope pointless) recompilation of all the plugins
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Thu, 26 Sep 2024 17:55:56 +0100
parents 464d2dfb99c9
children
line wrap: on
line source

#!/bin/bash
# Invoke this as e.g. sbatch -n 4 -c 32 --exclusive masterJob.sh ezip
# run pigz -p 8 on extract_...tar files
n=$SLURM_NTASKS
c=$SLURM_CPUS_PER_TASK
node=$SLURMD_NODENAME
local=$SLURM_LOCALID
proc=$SLURM_PROCID
echo $(date) $node:$proc start

module load gnu-parallel

parallel --will-cite -j $c -n 1 'pigz -p 8 {}/orig/extracts/*.tar' < ezip/$proc.txt

echo $(date) $proc end