Bootstrap

Ubunbu18.4运行代码bug提示:Successful NUMA node read from SysFS had negative value (-1)

Ubunbu18.4、tensorflow:

在使用Ubuntu18.4版本的环境运行tensorflow时出现了以下问题(非报错,只是问题警告)。


Successful NUMA node read from SysFS had negative value (-1)

在网上查阅了很多,最后找到相关问题解决方法,代码如下,在终端中使用以下命令:

for a in /sys/bus/pci/devices/*; do echo 0 | sudo tee -a $a/numa_node; done

在这里插入图片描述运行成功如下所示:
在这里插入图片描述


相关连接:

https://stackoverflow.com/questions/44232898/memoryerror-in-tensorflow-and-successful-numa-node-read-from-sysfs-had-negativ


;