Skip to content

Instantly share code, notes, and snippets.

@humandotlearning
Created December 5, 2019 07:31
Show Gist options
  • Save humandotlearning/2d51ea62f819eaf2ccbac075162b469f to your computer and use it in GitHub Desktop.
Save humandotlearning/2d51ea62f819eaf2ccbac075162b469f to your computer and use it in GitHub Desktop.
tensorflow troubleshooting and utility
# to limit the gpu usuage of tf, use the following commands
###################################################################################################
gpus = tf.config.experimental.list_physical_devices('GPU')
if gpus:
# Restrict TensorFlow to only allocate 3GB of memory on the first GPU
try:
tf.config.experimental.set_virtual_device_configuration(
gpus[0],
[tf.config.experimental.VirtualDeviceConfiguration(memory_limit=3000)])
logical_gpus = tf.config.experimental.list_logical_devices('GPU')
print(len(gpus), "Physical GPUs,", len(logical_gpus), "Logical GPUs")
except RuntimeError as e:
# Virtual devices must be set before GPUs have been initialized
print(e)
#####################################################################################################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment