【笔记】解决Ubuntu 23.04下Warning: Could not find TensorRT的问题

1. 有一块quadro显卡,想要试用一下, 先使用conda list安装了tensorflow 和 tensorrt

代码:

import tensorflow as tf

print(tf.test.is_built_with_cuda())

print(tf.config.list_physical_devices('GPU'))

遇到如下问题:

W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Could not find TensorRT

True

W tensorflow/core/common_runtime/gpu/gpu_device.cc:1960] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.
Skipping registering GPU devices...

[]

2. 添加import tensorrt as trt解决问题,而且tensorrt必须在tensorflow前面

代码:

import tensorrt as trt

import tensorflow as tf

print(tf.test.is_built_with_cuda())

print(tf.config.list_physical_devices('GPU'))

结果:

True
[PhysicalDevice(name='/physical_device:GPU:0', device_type='GPU')]

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值