[M] Move files
This commit is contained in:
@@ -14318,7 +14318,6 @@
|
|||||||
"Core Clock(s)": "300 MHz",
|
"Core Clock(s)": "300 MHz",
|
||||||
"DirectX": "12",
|
"DirectX": "12",
|
||||||
"OpenGL": "4.4",
|
"OpenGL": "4.4",
|
||||||
"Videocard Category": "Desktop",
|
|
||||||
"Other names": "Intel(R) UHD Graphics 620",
|
"Other names": "Intel(R) UHD Graphics 620",
|
||||||
"Videocard First Benchmarked": "2017-08-28",
|
"Videocard First Benchmarked": "2017-08-28",
|
||||||
"G3DMark/Price": "NA",
|
"G3DMark/Price": "NA",
|
||||||
@@ -39830,4 +39829,4 @@
|
|||||||
"Samples": 1
|
"Samples": 1
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
+2
-2
@@ -27,7 +27,7 @@ def crawl_cpu_gpu(cpu: bool) -> pd.DataFrame:
|
|||||||
|
|
||||||
:param cpu: True if cpu, False if gpu
|
:param cpu: True if cpu, False if gpu
|
||||||
"""
|
"""
|
||||||
file = Path("data/cpu.csv" if cpu else "data/gpu.csv")
|
file = Path("data/passmark/cpu.csv" if cpu else "data/passmark/gpu.csv")
|
||||||
|
|
||||||
if file.exists():
|
if file.exists():
|
||||||
return pd.read_csv(file)
|
return pd.read_csv(file)
|
||||||
@@ -97,7 +97,7 @@ def crawl_id(id: str):
|
|||||||
|
|
||||||
|
|
||||||
def crawl_gpuinfo_batch():
|
def crawl_gpuinfo_batch():
|
||||||
gpu_info_f = Path("data/gpu_info.json")
|
gpu_info_f = Path("data/passmark/gpu_info.json")
|
||||||
gpu_info = {} if not gpu_info_f.exists() else json.loads(gpu_info_f.read_text())
|
gpu_info = {} if not gpu_info_f.exists() else json.loads(gpu_info_f.read_text())
|
||||||
left = [gpu for gpu in crawl_cpu_gpu(False)["id"] if gpu not in gpu_info]
|
left = [gpu for gpu in crawl_cpu_gpu(False)["id"] if gpu not in gpu_info]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user