We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 970d354 commit 86f64e0Copy full SHA for 86f64e0
scripts/gguf_test.py
@@ -25,10 +25,14 @@ def run_tests(test_names, device_type):
25
print(f"[ FAIL ] GGUF generation failed for {test}")
26
failed.append(test)
27
continue
28
-
+ print("Files in build/linux/x86_64/release:")
29
+ print(os.listdir(os.path.join(PROJECT_DIR, "build/linux/x86_64/release")))
30
+
31
# C++ 测试阶段
32
exe = os.path.join(PROJECT_DIR, "build/linux/x86_64/release/infiniop-test")
33
gguf_path = os.path.join(base_dir, f"{test}.gguf")
34
+ print(f"exe: {exe}, exists: {os.path.isfile(exe)}")
35
+ print(f"gguf_path: {gguf_path}, exists: {os.path.isfile(gguf_path)}")
36
cmd_cpp = f"{exe} {gguf_path} {device_type} --warmup 20 --run 1000"
37
res = subprocess.run(
38
cmd_cpp,
0 commit comments