Skip to content

Instantly share code, notes, and snippets.

@nebelgrau77
Created December 31, 2020 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nebelgrau77/3cc45658054fe8683df4b9a59621889e to your computer and use it in GitHub Desktop.
Save nebelgrau77/3cc45658054fe8683df4b9a59621889e to your computer and use it in GitHub Desktop.
gpus = tf.config.experimental.list_physical_devices('GPU')
if gpus:
  # Restrict TensorFlow to only allocate 1GB of memory on the first GPU
  try:
    tf.config.experimental.set_virtual_device_configuration(
        gpus[0],
        [tf.config.experimental.VirtualDeviceConfiguration(memory_limit=1024)])
    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