parallel
Summary
Module Name: parallel
Support Level: Primary Support
Software Access Level: Open Access
Home Page: https://www.gnu.org/software/parallel/
Software Description
No description provided.
General Linux
To load this module for use in a Linux environment, you can run the command:
module load parallel
Depending on where you are working, there may be more than one version of parallel available. To see which modules are available for loading you can run:
module avail parallel
Slurm Example
#!/bin/bash
#SBATCH --job-name="rfm_RunPARALLELTest_job"
#SBATCH --ntasks=4
#SBATCH --ntasks-per-node=4
#SBATCH --output=rfm_RunPARALLELTest_job.out
#SBATCH --error=rfm_RunPARALLELTest_job.err
#SBATCH --time=0:10:0
#SBATCH -p msismall
module load parallel/20180922
seq 10 | parallel echo {} + 1 is {= '$_++' =}