1 Star 0 Fork 0

zhoub86/VDNet-TF-2.0

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
utils.py 770 Bytes
一键复制 编辑 原始数据 按行查看 历史
Stavros Giorgis 提交于 2019-11-06 22:36 . Finalize project
import tensorflow as tf
def manage_gpu_memory_usage():
gpus = tf.config.experimental.list_physical_devices('GPU')
# tf.debugging.set_log_device_placement(True)
if gpus:
try:
for gpu in gpus:
tf.config.experimental.set_memory_growth(gpu, True)
logical_gpus = tf.config.experimental.list_logical_devices('GPU')
tf.config.experimental.set_virtual_device_configuration(
gpus[0], [tf.config.experimental.VirtualDeviceConfiguration(memory_limit=1024),
tf.config.experimental.VirtualDeviceConfiguration(memory_limit=1024)])
print(len(gpus), "Physical GPUs,", len(logical_gpus), "Logical GPUs")
except RuntimeError as e:
print(e)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhoub86/VDNet-TF-2.0.git
git@gitee.com:zhoub86/VDNet-TF-2.0.git
zhoub86
VDNet-TF-2.0
VDNet-TF-2.0
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385