Kaydet (Commit) e61adb7a authored tarafından Hakan Dündar's avatar Hakan Dündar

Fix: GPU PCI address upper-lower case problem

üst d1f4be21
......@@ -496,7 +496,7 @@ class Gpu:
# Get line number of the selected GPU by using its PCI address.
for i, line in enumerate(gpu_tool_output):
if gpu_pci_address in line:
if gpu_pci_address in line or gpu_pci_address.upper() in line:
gpu_info_line_no = i
break
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment