TensorFlow imports into python3 correctly, but I receive unexpected messages

Hi Support,

I followed these instruction to install TensorFlow 2.1.0 on Jetpack4.3 on my Jetson Nano: Installing TensorFlow for Jetson Platform - NVIDIA Docs except that I installed TensorFlow in a virtual environment (py3cv4) per Section 3 Installing TensorFlow/3.1 Installing Multiple Versions.

When I am in my virtual environment if I start python3 and import tensorflow, I get the following response before the command line prompt returns:

(py3cv4) thomas@thomas-desktop:~$ python3
Python 3.6.9 (default, Apr 18 2020, 01:56:04)
[GCC 8.4.0] on linux
Type “help”, “copyright”, “credits” or “license” for more information.

import tensorflow
2020-07-18 17:28:48.819958: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libcudart.so.10.0
2020-07-18 17:28:51.385750: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libnvinfer.so.6
2020-07-18 17:28:51.387403: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libnvinfer_plugin.so.6

Is this an issue I should be concerned about or did I miss installing a particular TensorFlow dependency?

Regards,
TCIII

Hi,

This is a harmless log that indicates the CUDA and TensorRT library is successfully loaded.

Thanks.

@AastaLLL,

Thanks for the quick response, much appreciated.
Regards,
TCIII