我的研究实验室可以访问我的学校群集中的24个节点。有时我的程序运行速度明显快于其他时间,我想尝试通过找出它们正在运行的节点来查看问题,看看有些节点比其他节点慢。使用python的最佳方法是什么,让我的输出文件也告诉我程序的计算节点是什么?
答案 0 :(得分:0)
使用Platform
模块。在Node()
类
import platform
class Node(object):
...
def get_device_os():
""" Get the devices operating system. """
return platform.system()
def get_device_name():
""" Get the devices name. """
return platform.node()