# boost ## Summary + **Module Name:** boost + **Support Level:** Primary Support + **Software Access Level:** Open Access + **Home Page:** [http://www.boost.org](http://www.boost.org) ## Software Description No description provided. ## General Linux To load this module for use in a Linux environment, you can run the command: module load boost Depending on where you are working, there may be more than one version of boost available. To see which modules are available for loading you can run: module avail boost ## Slurm Example #!/bin/bash #SBATCH --job-name="rfm_RunBOOSTTest_job" #SBATCH --ntasks=1 #SBATCH --ntasks-per-node=1 #SBATCH --output=rfm_RunBOOSTTest_job.out #SBATCH --error=rfm_RunBOOSTTest_job.err #SBATCH --time=0:10:0 #SBATCH -p msismall module load boost/1.69.0/gnu-8.2.0 wget https://public.s3.msi.umn.edu/reframe/sw/boost/main.cpp g++ main.cpp -o boost.out; echo 1 2 3 | ./boost.out