Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- root@ecstatic-seal:/# nvidia-smi
- Tue May 20 06:26:31 2025
- +-----------------------------------------------------------------------------------------+
- | NVIDIA-SMI 565.77 Driver Version: 565.77 CUDA Version: 12.7 |
- |-----------------------------------------+------------------------+----------------------+
- | GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
- | Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
- | | | MIG M. |
- |=========================================+========================+======================|
- | 0 NVIDIA RTX A2000 On | 00000000:01:00.0 Off | Off |
- | 30% 54C P8 11W / 70W | 2MiB / 6138MiB | 0% Default |
- | | | N/A |
- +-----------------------------------------+------------------------+----------------------+
- +-----------------------------------------------------------------------------------------+
- | Processes: |
- | GPU GI CI PID Type Process name GPU Memory |
- | ID ID Usage |
- |=========================================================================================|
- | No running processes found |
- +-----------------------------------------------------------------------------------------+
- root@ecstatic-seal:/# python
- Python 3.11.0rc1 (main, Aug 12 2022, 10:02:14) [GCC 11.2.0] on linux
- Type "help", "copyright", "credits" or "license" for more information.
- >>> import tensorflow as tf
- 2025-05-20 06:26:55.590048: I tensorflow/core/util/port.cc:113] oneDNN custom operations are on. You may see slightly different numerical results due to floating-point round-off errors from different computation orders. To turn them off, set the environment variable `TF_ENABLE_ONEDNN_OPTS=0`.
- 2025-05-20 06:26:55.616956: I tensorflow/core/platform/cpu_feature_guard.cc:210] This TensorFlow binary is optimized to use available CPU instructions in performance-critical operations.
- To enable the following instructions: AVX2 AVX512F AVX512_VNNI AVX512_BF16 FMA, in other operations, rebuild TensorFlow with the appropriate compiler flags.
- >>> from tensorflow.python.client import device_lib
- >>> print("TensorFlow built with CUDA:", tf.test.is_built_with_cuda())
- TensorFlow built with CUDA: True
- >>> print("Available devices:", device_lib.list_local_devices())
- 2025-05-20 06:28:30.805722: I external/local_xla/xla/stream_executor/cuda/cuda_executor.cc:998] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero. See more at https://github.com/torvalds/linux/blob/v6.0/Documentation/ABI/testing/sysfs-bus-pci#L344-L355
- 2025-05-20 06:28:30.811279: I external/local_xla/xla/stream_executor/cuda/cuda_executor.cc:998] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero. See more at https://github.com/torvalds/linux/blob/v6.0/Documentation/ABI/testing/sysfs-bus-pci#L344-L355
- 2025-05-20 06:28:30.813092: I external/local_xla/xla/stream_executor/cuda/cuda_executor.cc:998] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero. See more at https://github.com/torvalds/linux/blob/v6.0/Documentation/ABI/testing/sysfs-bus-pci#L344-L355
- 2025-05-20 06:28:30.961116: I external/local_xla/xla/stream_executor/cuda/cuda_executor.cc:998] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero. See more at https://github.com/torvalds/linux/blob/v6.0/Documentation/ABI/testing/sysfs-bus-pci#L344-L355
- 2025-05-20 06:28:30.962737: I external/local_xla/xla/stream_executor/cuda/cuda_executor.cc:998] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero. See more at https://github.com/torvalds/linux/blob/v6.0/Documentation/ABI/testing/sysfs-bus-pci#L344-L355
- 2025-05-20 06:28:30.964258: I external/local_xla/xla/stream_executor/cuda/cuda_executor.cc:998] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero. See more at https://github.com/torvalds/linux/blob/v6.0/Documentation/ABI/testing/sysfs-bus-pci#L344-L355
- 2025-05-20 06:28:30.965773: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1928] Created device /device:GPU:0 with 4183 MB memory: -> device: 0, name: NVIDIA RTX A2000, pci bus id: 0000:01:00.0, compute capability: 8.6
- Available devices: [name: "/device:CPU:0"
- device_type: "CPU"
- memory_limit: 268435456
- locality {
- }
- incarnation: 6824755425701592460
- xla_global_id: -1
- , name: "/device:GPU:0"
- device_type: "GPU"
- memory_limit: 4386652160
- locality {
- bus_id: 1
- links {
- }
- }
- incarnation: 8931498875897323852
- physical_device_desc: "device: 0, name: NVIDIA RTX A2000, pci bus id: 0000:01:00.0, compute capability: 8.6"
- xla_global_id: 416903419
- ]
- >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement