Ubuntu18解决:Not creating XLA devices, tf_xla_enable_xla_devices not set

本文档指导您如何在Ubuntu 18环境下,解决TensorFlow-gpu 2.4.1版本下遇到的XLA设备注册问题。通过设置TF_XLA_FLAGS环境变量并调整日志级别,确保GPU可用性,避免'Not creating XLA devices'提示。
摘要由CSDN通过智能技术生成

实验环境

ubuntu18
NVIDIA GeForce GTX 1050
CUDA11.0
CUDNN 8.0
Tesorflow-gpu 2.4.1

问题
在这里插入图片描述
分析原因
据说是Tesorflow-gpu 2.4.1,默认情况下,不再注册XLA:CPU和XLA:GPU设备。如果确实需要它们,请可使用

os.environ['TF_XLA_FLAGS'] = '--tf_xla_enable_xla_devices'

但是此标志最终将在后续发行版中删除。

解决方法

import tensorflow as tf
import os
os.environ['TF_CPP_MIN_LOG_LEVEL']='2'

print(tf.__version__)
a = tf.constant(1.)
b = tf.constant(2.)
print(a+b)
print('GPU:', tf.test.is_gpu_available())

改为

import tensorflow as tf
import os
os.environ['TF_XLA_FLAGS'] = '--tf_xla_enable_xla_devices'
os.environ['TF_CPP_MIN_LOG_LEVEL']='2'
print(tf.__version__)
a = tf.constant(1.)
b = tf.constant(2.)
print(a+b)
print('GPU:', tf.test.is_gpu_available())

即可
在这里插入图片描述

在这里插入图片描述
你将会发现,在代码开头加了

os.environ['TF_XLA_FLAGS'] = '--tf_xla_enable_xla_devices'

将不会有

Not creating XLA devices, tf_xla_enable_xla_devices not set

提示!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值