Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Ironwood/src/benchmark_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ def upload_to_storage(trace_dir: str, local_file: str):
if trace_dir.startswith("gs://"): # Google Cloud Storage (GCS)
try:
subprocess.run(
["gsutil", "cp", "-r", local_file, trace_dir],
["gcloud", "storage", "cp", "--recursive", local_file, trace_dir],
check=True,
capture_output=True,
)
Expand Down
2 changes: 1 addition & 1 deletion src/benchmark_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def upload_to_storage(trace_dir: str, local_file: str):
if trace_dir.startswith("gs://"): # Google Cloud Storage (GCS)
try:
subprocess.run(
["gsutil", "cp", "-r", local_file, trace_dir],
["gcloud", "storage", "cp", "--recursive", local_file, trace_dir],
check=True,
capture_output=True,
)
Expand Down