Skip to content

Instantly share code, notes, and snippets.

@sanketdiwale
sanketdiwale / gist:06a4ecbfadf076c9c885634754d3f889
Last active May 7, 2022 22:03
How to install tensorflow-gpu on Engaging clusters
module load python/3.9.4
module load cuda/11.3
module load cudnn/8.2.1_cuda11.3
module load gcc/9.3.0
module load cmake/3.17.3
pip install --user cython
pip install --user --upgrade tensorflow-gpu
pip install --user --upgrade tensorflow-probability
@sanketdiwale
sanketdiwale / bumpversion.sh
Created October 30, 2016 07:02 — forked from pete-otaqui/bumpversion.sh
Bump a software project's VERSION, add the CHANGES, and tag with GIT
#!/bin/bash
# works with a file called VERSION in the current directory,
# the contents of which should be a semantic version number
# such as "1.2.3"
# this script will display the current version, automatically
# suggest a "minor" version update, and ask for input to use
# the suggestion, or a newly entered value.