Go
Overview
Go is an open-source programming language with syntax similar to C. It was created by Google in 2009.
Availability
Cluster | Module/Version |
---|---|
BOSE | go/1.16.4 |
BGSC | Not Available |
Note: You can simply use module load go
to activate the most recently installed version of this software.
Sample Slurm Script
submit.sh
#!/bin/bash
# -- SLURM SETTINGS -- #
# [..] other settings here [..]
# The following settings are for the overall request to Slurm
#SBATCH --ntasks-per-node=32 # How many CPU cores do you want to request
#SBATCH --nodes=1 # How many nodes do you want to request
# -- SCRIPT COMMANDS -- #
# Load the needed modules
module load go # Load Go
go run my-input-file.go
Real Example
Has your research group used Go in a project? Contact the HPC Team and we'd be glad to feature your work.