Device: 0, name: Orin, pci bus id: 0000:00:00.0, compute capability: 8.7

Hello,

I was able to install TF in a virtual env in my orin device. I have preiusly confirm that TF-GPU is correctly installed and i was able to run some codes. However no i cant train any model and when running “tf.test.is_gpu_available()” in command window shows the below log
ARNING:tensorflow:From :1: is_gpu_available (from tensorflow.python.framework.test_util) is deprecated and will be removed in a future version.
Instructions for updating:
Use tf.config.list_physical_devices('GPU') instead.
2023-11-21 23:34:50.619499: I tensorflow/compiler/xla/stream_executor/cuda/cuda_gpu_executor.cc:984] could not open file to read NUMA node: /sys/bus/pci/devices/0000:00:00.0/numa_node
Your kernel may have been built without NUMA support.
2023-11-21 23:34:50.655103: I tensorflow/compiler/xla/stream_executor/cuda/cuda_gpu_executor.cc:984] could not open file to read NUMA node: /sys/bus/pci/devices/0000:00:00.0/numa_node
Your kernel may have been built without NUMA support.
2023-11-21 23:34:50.655312: I tensorflow/compiler/xla/stream_executor/cuda/cuda_gpu_executor.cc:984] could not open file to read NUMA node: /sys/bus/pci/devices/0000:00:00.0/numa_node
Your kernel may have been built without NUMA support.
2023-11-21 23:34:51.280649: I tensorflow/compiler/xla/stream_executor/cuda/cuda_gpu_executor.cc:984] could not open file to read NUMA node: /sys/bus/pci/devices/0000:00:00.0/numa_node
Your kernel may have been built without NUMA support.
2023-11-21 23:34:51.280954: I tensorflow/compiler/xla/stream_executor/cuda/cuda_gpu_executor.cc:984] could not open file to read NUMA node: /sys/bus/pci/devices/0000:00:00.0/numa_node
Your kernel may have been built without NUMA support.
2023-11-21 23:34:51.281023: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1708] Could not identify NUMA node of platform GPU id 0, defaulting to 0. Your kernel may not have been built with NUMA support.
2023-11-21 23:34:51.281137: I tensorflow/compiler/xla/stream_executor/cuda/cuda_gpu_executor.cc:984] could not open file to read NUMA node: /sys/bus/pci/devices/0000:00:00.0/numa_node
Your kernel may have been built without NUMA support.
2023-11-21 23:34:51.281260: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1621] Created device /device:GPU:0 with 1200 MB memory: → device: 0, name: Orin, pci bus id: 0000:00:00.0, compute capability: 8.7
True

which exactly the same error when trying to train some models in juypyter notebook

Hi,

NUMA is a harmless warning.
Based on the last log, TensorFlow can detect your GPU correctly.

What kind of error when you train the model?
Thanks.

Hi,

After the log shows up, could you check the system status to see if TensorFlow is working or not?

$ sudo tegrastats

Thanks.