tf.config.experimental.get_memory_growth

TensorFlow 1 version View source on GitHub

Get if memory growth is enabled for a PhysicalDevice.

A PhysicalDevice with memory growth set will not allocate all memory on the device upfront.

For example:

physical_devices = config.experimental.list_physical_devices('GPU')
assert len(physical_devices) > 0, "Not enough GPU hardware devices available"
tf.config.experimental.set_memory_growth(physical_devices[0], True)
assert tf.config.experimental.get_memory_growth(physical_devices[0]) == True

device PhysicalDevice to query

Current memory growth setting.