Bureaucrats, cc_docs_admin, cc_staff
337
edits
No edit summary |
|||
Line 30: | Line 30: | ||
== Environment Modules == | == Environment Modules == | ||
The following modules providing | The following modules providing HDF5 are available on both Cedar and Graham via CVMFS: | ||
* | * hdf5/1.8.18 | ||
Compiled with MPI support: | Compiled with MPI support: | ||
* | * hdf5-mpi/1.8.18 | ||
The versions available: | The versions available: 1.8.18 | ||
== Version selection == | == Version selection == | ||
module load | module load hdf // HDF4 | ||
module load hdf5 // Serial HDF5 | |||
module load hdf5-mpi // Parallel (MPI) HDF5 | |||
== Submission Scripts == | == Submission Scripts == | ||
Line 51: | Line 49: | ||
Using netcdf | Using netcdf | ||
{{Command | {{Command | ||
| | |#!/bin/bash | ||
| | |#SBATCH --account=def-someuser | ||
|#SBATCH --ntasks=1 | |||
|#SBATCH --mem=1024M # memory; default unit is megabytes | |||
|#SBATCH --time=0-00:05 # time (DD-HH:MM) | |||
|./h5_serial | |||
}} | }} | ||