Skip to content

Commit 4f9bf78

Browse files
Fix BenchPark workspace path in result conversion script
[park-only] - Use QC-GH200 specific workspace path for result conversion - Support /home/users/nakamura/src/benchpark/r-ccs-fork/benchpark structure
1 parent d2bff7a commit 4f9bf78

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

scripts/convert_benchpark_results.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,19 @@ def main():
151151
system = sys.argv[1]
152152
app = sys.argv[2]
153153

154-
# ワークスペースパスを構築
155-
workspace_path = f"benchpark-workspace/{system}/{app}"
154+
# QC-GH200専用のワークスペースパス
155+
if system == "qc-gh200":
156+
workspace_path = f"/home/users/nakamura/src/benchpark/r-ccs-fork/benchpark/workspace/riken-cloud-gh200-nvhpc/{app}/workspace"
157+
else:
158+
# 他のシステムの場合
159+
workspace_path = f"benchpark-workspace/{system}/{app}"
156160

157161
if not os.path.exists(workspace_path):
158162
print(f"Error: Workspace not found: {workspace_path}")
159163
sys.exit(1)
160164

161165
print(f"Converting BenchPark results for {app} on {system}")
166+
print(f"Workspace path: {workspace_path}")
162167

163168
# BenchPark結果を検索
164169
result_files = find_benchpark_results(workspace_path, system, app)

0 commit comments

Comments
 (0)