TensorFlow
 
Setup Mamba/Conda Environment
Setup and activate a new Mamba environment as outlined in the Conda Environments page. After activating your mamba environment, install the necessary packages using the following commands:
mamba install -c nvidia -c conda-forge tensorflow-gpuTo use a specific Cuda version, you can run:
mamba install -c nvidia -c conda-forge tensorflow-gpu cudatoolkit=X.Y.ZIf you want to use tensorflow cpu-only, you can run:
mamba install -c nvidia -c conda-forge tensorflowJob Script Specifications
- If your script is setup to utilize GPU's, request a GPU in your script:
#SBATCH --gpus=1 # NUMBER OF GPU'S- Load Mamba Environment At The Bottom Of The Job Script:
# # LOAD MODULES, INSERT CODE, AND RUN YOUR PROGRAMS HERE
mamba activate <EnvironmentName>
# # RUN ANY SCRIPTS, CODE, OR PROGRAMS THAT RELY ON THE MAMBA ENVIRONMENT HERELast changed on Thu Aug 21 12:49:17 2025