你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-07 15:10:13 +08:00
Add logical cores to host info.
这个提交包含在:
@@ -159,7 +159,7 @@ def get_host_info():
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
hostinfo = {}
|
hostinfo = {}
|
||||||
machineID = sockets = cpuID = physicalcores = osversion = ram = hyperthreading = 'unknown'
|
machineID = sockets = cpuID = physicalcores = logicalcores = osversion = ram = hyperthreading = 'unknown'
|
||||||
|
|
||||||
# Windows
|
# Windows
|
||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
@@ -243,6 +243,7 @@ def get_host_info():
|
|||||||
hostinfo['osversion'] = osversion
|
hostinfo['osversion'] = osversion
|
||||||
hostinfo['hyperthreading'] = hyperthreading
|
hostinfo['hyperthreading'] = hyperthreading
|
||||||
hostinfo['physicalcores'] = psutil.cpu_count(logical=False) # Get number of physical CPU cores, i.e. avoid hyperthreading with OpenMP
|
hostinfo['physicalcores'] = psutil.cpu_count(logical=False) # Get number of physical CPU cores, i.e. avoid hyperthreading with OpenMP
|
||||||
|
hostinfo['logicalcores'] = psutil.cpu_count(logical=True)
|
||||||
hostinfo['ram'] = psutil.virtual_memory().total
|
hostinfo['ram'] = psutil.virtual_memory().total
|
||||||
|
|
||||||
return hostinfo
|
return hostinfo
|
||||||
|
在新工单中引用
屏蔽一个用户