I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:937] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
时间: 2024-03-29 17:35:47 浏览: 110
常见的tensorflow-gpu2.x缺失dll(cublas64-11.dll&cublasLt64-11.dll等)
这是一个TensorFlow在GPU上运行时输出的警告信息。它表示TensorFlow尝试从系统文件系统中读取NUMA节点信息,但是读取到的值是负数-1,这可能是由于系统不支持NUMA或者存在某些其他问题导致的。不过,由于至少需要有一个NUMA节点,因此TensorFlow会将其设置为节点0并继续运行。这个警告信息通常不会对TensorFlow的运行产生实质性影响,但是如果遇到其他问题,可以考虑检查系统设置和硬件配置。
阅读全文