pyhw 0.14.2__tar.gz → 0.14.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyhw-0.14.2/src/pyhw.egg-info → pyhw-0.14.4}/PKG-INFO +1 -1
- {pyhw-0.14.2 → pyhw-0.14.4}/pyproject.toml +1 -1
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/__init__.py +1 -1
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/__main__.py +11 -1
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/gpu/macos.py +34 -14
- pyhw-0.14.4/src/pyhw/library/lib/iokitGPULib.dylib +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/library/lib/iokitNICLib.dylib +0 -0
- pyhw-0.14.4/src/pyhw/library/test/iokitGPULibTest.py +17 -0
- {pyhw-0.14.2 → pyhw-0.14.4/src/pyhw.egg-info}/PKG-INFO +1 -1
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw.egg-info/SOURCES.txt +1 -0
- pyhw-0.14.2/src/pyhw/library/lib/iokitGPULib.dylib +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/LICENSE +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/README.md +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/setup.cfg +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/backendBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/cpu/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/cpu/bsd.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/cpu/cpuBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/cpu/cpuInfo.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/cpu/linux.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/cpu/macos.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/cpu/windows.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/gpu/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/gpu/bsd.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/gpu/gpuBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/gpu/gpuInfo.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/gpu/linux.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/gpu/windows.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/host/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/host/bsd.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/host/hostBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/host/hostInfo.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/host/linux.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/host/macos.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/host/windows.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/kernel/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/kernel/kernelBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/kernel/kernelInfo.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/kernel/unix.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/kernel/windows.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/memory/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/memory/bsd.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/memory/linux.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/memory/macos.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/memory/memoryBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/memory/memoryInfo.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/memory/windows.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/nic/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/nic/bsd.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/nic/linux.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/nic/macos.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/nic/nicBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/nic/nicInfo.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/nic/windows.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/npu/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/npu/bsd.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/npu/linux.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/npu/macos.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/npu/npuBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/npu/npuInfo.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/npu/windows.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/os/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/os/bsd.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/os/linux.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/os/macos.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/os/osBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/os/osInfo.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/os/windows.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/shell/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/shell/shellBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/shell/shellInfo.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/shell/unix.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/shell/windows.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/title/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/title/titleBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/title/titleInfo.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/title/unix.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/title/windows.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/uptime/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/uptime/bsd.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/uptime/linux.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/uptime/macos.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/uptime/uptimeBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/uptime/uptimeInfo.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/backend/uptime/windows.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/color/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/color/colorConfig.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/color/colorSet.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/color/colorUtil.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/frontendBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/alpine.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/arch.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/armbian.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/centos.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/debian.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/fedora.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/fedora_small.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/freebsd.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/kali.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/linux.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/linuxmint.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/macOS.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/opensuse-leap.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/opensuse-tumbleweed.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/raspbian.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/rhel.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/ubuntu.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/ubuntu_small.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/windows_10.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/windows_11.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/windows_2025.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/ascii/windows_old.pyhw +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/frontend/logo/logoBase.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/library/lib/iokitCPULib.dylib +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/library/lib/iokitHostLib.dylib +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/library/lib/nvmlGPULib_amd64.so +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/library/lib/nvmlGPULib_arm64.so +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/library/test/iokitCPULibTest.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/library/test/iokitHostLibTest.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/library/test/iokitNICLibTest.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/library/test/nvmlGPULibTest.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/pyhwException/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/pyhwException/pyhwException.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/pyhwUtil/__init__.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/pyhwUtil/cliUtil.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/pyhwUtil/pciUtil.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/pyhwUtil/pyhwUtil.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw/pyhwUtil/sysctlUtil.py +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw.egg-info/dependency_links.txt +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw.egg-info/entry_points.txt +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw.egg-info/requires.txt +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/src/pyhw.egg-info/top_level.txt +0 -0
- {pyhw-0.14.2 → pyhw-0.14.4}/test/test_cliUtil.py +0 -0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "pyhw"
|
7
|
-
version = "0.14.
|
7
|
+
version = "0.14.4"
|
8
8
|
description = "PyHw, a neofetch-like command line tool for fetching system information but written mostly in python."
|
9
9
|
keywords = ["neofetch", "system information", "command line tool", "python", "hardware information", "fastfetch", "fetching"]
|
10
10
|
authors = [
|
@@ -1,2 +1,2 @@
|
|
1
|
-
__version__ = '0.14.
|
1
|
+
__version__ = '0.14.4'
|
2
2
|
__author__ = 'xiaoran007'
|
@@ -154,13 +154,21 @@ def main():
|
|
154
154
|
multiprocessing.Process(target=detect_os, args=(debug_info, current_os, result_dict)),
|
155
155
|
multiprocessing.Process(target=detect_cpu, args=(debug_info, current_os, result_dict)),
|
156
156
|
multiprocessing.Process(target=detect_memory, args=(debug_info, current_os, result_dict)),
|
157
|
-
multiprocessing.Process(target=detect_pci_related, args=(debug_info, current_os, result_dict)),
|
158
157
|
]
|
159
158
|
|
159
|
+
if current_os == "macos":
|
160
|
+
processes.append(multiprocessing.Process(target=detect_gpu, args=(debug_info, current_os, result_dict)))
|
161
|
+
processes.append(multiprocessing.Process(target=detect_nic, args=(debug_info, current_os, result_dict)))
|
162
|
+
processes.append(multiprocessing.Process(target=detect_npu, args=(debug_info, current_os, result_dict)))
|
163
|
+
else:
|
164
|
+
processes.append(multiprocessing.Process(target=detect_pci_related, args=(debug_info, current_os, result_dict)))
|
165
|
+
|
160
166
|
start_time = time.time()
|
161
167
|
for process in processes:
|
162
168
|
process.start()
|
163
169
|
|
170
|
+
detection_time = time.time() - start_time
|
171
|
+
|
164
172
|
for process in processes[1:]:
|
165
173
|
process.join()
|
166
174
|
|
@@ -179,6 +187,8 @@ def main():
|
|
179
187
|
for func_name, elapsed in debug_dict.items():
|
180
188
|
detection_name = func_name.replace("detect_", "")
|
181
189
|
print(f"{detection_name:<10}: {elapsed:.4f} s")
|
190
|
+
print("-" * 50)
|
191
|
+
print(f"Total create time: {detection_time:.4f} s")
|
182
192
|
print("-"*50)
|
183
193
|
print(f"Total execution time: {total_time:.4f} s")
|
184
194
|
print("="*50)
|
@@ -1,5 +1,6 @@
|
|
1
1
|
from .gpuInfo import GPUInfo
|
2
2
|
from ...pyhwUtil import getArch
|
3
|
+
from ..cpu import CPUDetect
|
3
4
|
import json
|
4
5
|
import subprocess
|
5
6
|
import ctypes
|
@@ -19,22 +20,25 @@ class GPUDetectMacOS:
|
|
19
20
|
return self.__gpuInfo
|
20
21
|
|
21
22
|
def __getGPUAppleSilicon(self):
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
23
|
+
if self.__getGPUIOKitAppleSilicon():
|
24
|
+
pass
|
25
|
+
else:
|
26
|
+
gpus = list()
|
27
|
+
try:
|
28
|
+
gpu_info_dict = json.loads(subprocess.check_output(["system_profiler", "SPDisplaysDataType", "-json"]))
|
29
|
+
if 'SPDisplaysDataType' in gpu_info_dict:
|
30
|
+
gpus = gpu_info_dict['SPDisplaysDataType']
|
31
|
+
self.__gpuInfo.number = len(gpus)
|
32
|
+
else:
|
33
|
+
pass
|
34
|
+
except Exception:
|
35
|
+
return
|
32
36
|
|
33
|
-
|
34
|
-
|
37
|
+
for gpu in gpus:
|
38
|
+
self.__gpuInfo.gpus.append(f'{gpu.get("sppci_model")} ({gpu.get("sppci_cores")} Cores) [SOC Integrated]')
|
35
39
|
|
36
40
|
def __getGPUIntel(self):
|
37
|
-
if self.
|
41
|
+
if self.__getGPUIOKitIntel():
|
38
42
|
pass
|
39
43
|
else: # fallback to the default implementation
|
40
44
|
gpus = list()
|
@@ -56,7 +60,7 @@ class GPUDetectMacOS:
|
|
56
60
|
elif self.__handleVendor(gpu.get("spdisplays_vendor")) == "Nvidia": # Since current macOS does not support NVIDIA GPUs, this condition is not applicable
|
57
61
|
pass
|
58
62
|
|
59
|
-
def
|
63
|
+
def __getGPUIOKitIntel(self):
|
60
64
|
try:
|
61
65
|
package_root = Path(__file__).resolve().parent.parent.parent
|
62
66
|
lib = ctypes.CDLL(f"{package_root}/library/lib/iokitGPULib.dylib")
|
@@ -82,6 +86,22 @@ class GPUDetectMacOS:
|
|
82
86
|
# print(f"An error occurred while getting GPU info using IOKit: {e}")
|
83
87
|
return False
|
84
88
|
|
89
|
+
def __getGPUIOKitAppleSilicon(self):
|
90
|
+
try:
|
91
|
+
package_root = Path(__file__).resolve().parent.parent.parent
|
92
|
+
lib = ctypes.CDLL(f"{package_root}/library/lib/iokitGPULib.dylib")
|
93
|
+
lib.getAppleSiliconGPUInfo.restype = ctypes.c_char_p
|
94
|
+
gpu_cores = lib.getAppleSiliconGPUInfo().decode('utf-8')
|
95
|
+
|
96
|
+
if gpu_cores == "0":
|
97
|
+
return False
|
98
|
+
self.__gpuInfo.number = 1
|
99
|
+
self.__gpuInfo.gpus.append(f'{CPUDetect(os="macos").getCPUInfo().model} ({gpu_cores} Cores) [SOC Integrated]')
|
100
|
+
return True
|
101
|
+
except Exception as e:
|
102
|
+
# print(f"An error occurred while getting GPU info using IOKit: {e}")
|
103
|
+
return False
|
104
|
+
|
85
105
|
@staticmethod
|
86
106
|
def __handleVendor(vendor):
|
87
107
|
if vendor == "sppci_vendor_Apple":
|
Binary file
|
Binary file
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import ctypes
|
2
|
+
|
3
|
+
|
4
|
+
def main():
|
5
|
+
lib = ctypes.CDLL(f"../lib/iokitGPULib.dylib")
|
6
|
+
lib.getGPUInfo.restype = ctypes.c_char_p
|
7
|
+
lib.getAppleSiliconGPUInfo.restype = ctypes.c_char_p
|
8
|
+
gpu_info = lib.getAppleSiliconGPUInfo()
|
9
|
+
print(gpu_info.decode('utf-8'))
|
10
|
+
|
11
|
+
|
12
|
+
if __name__ == "__main__":
|
13
|
+
main()
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
|
@@ -119,6 +119,7 @@ src/pyhw/library/lib/iokitNICLib.dylib
|
|
119
119
|
src/pyhw/library/lib/nvmlGPULib_amd64.so
|
120
120
|
src/pyhw/library/lib/nvmlGPULib_arm64.so
|
121
121
|
src/pyhw/library/test/iokitCPULibTest.py
|
122
|
+
src/pyhw/library/test/iokitGPULibTest.py
|
122
123
|
src/pyhw/library/test/iokitHostLibTest.py
|
123
124
|
src/pyhw/library/test/iokitNICLibTest.py
|
124
125
|
src/pyhw/library/test/nvmlGPULibTest.py
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|