Skip to content

Commit 20fc17d

Browse files
Update benchmarks.yml
1 parent ec601af commit 20fc17d

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/benchmarks.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
name: Benchmarks
22

33
on:
4-
pull_request:
5-
branches:
6-
- main
7-
workflow_dispatch:
8-
inputs:
9-
halt-for-connection:
10-
description: 'Should this workflow run wait for a remote connection?'
11-
type: choice
12-
required: true
13-
default: 'no'
14-
options:
15-
- 'yes'
16-
- 'no'
4+
workflow_dispatch: # Allows manual triggering
5+
schedule:
6+
- cron: '0 */6 * * *' # Run every 6 hours (at minute 0 of hours 0, 6, 12, 18)
7+
# workflow_dispatch:
8+
# inputs:
9+
# halt-for-connection:
10+
# description: 'Should this workflow run wait for a remote connection?'
11+
# type: choice
12+
# required: true
13+
# default: 'no'
14+
# options:
15+
# - 'yes'
16+
# - 'no'
1717

1818
jobs:
1919
build-xla-gpu-and-test:
@@ -88,12 +88,12 @@ jobs:
8888
- name: Run an HLO file
8989
working-directory: xla
9090
run: |
91-
./bazel-bin/xla/tools/multihost_hlo_runner/hlo_runner_main --device_type=gpu --log_output=True --use_spmd_partitioning --xla_gpu_dump_xspace_to=results/xspace.pbtxt gpu_hlo_backend.hlo &> results/gpu_hlo_backend.log
91+
./bazel-bin/xla/tools/multihost_hlo_runner/hlo_runner_main --device_type=gpu --log_output=True --use_spmd_partitioning --xla_gpu_dump_xspace_to=xla/results/xspace.pbtxt xla/gpu_hlo_backend.hlo &> xla/results/gpu_hlo_backend.log
9292
93-
- name: Wait For Connection
94-
uses: google-ml-infra/actions/ci_connection@main
95-
with:
96-
halt-dispatch-input: ${{ inputs.halt-for-connection }}
93+
# - name: Wait For Connection
94+
# uses: google-ml-infra/actions/ci_connection@main
95+
# with:
96+
# halt-dispatch-input: ${{ inputs.halt-for-connection }}
9797

9898
# # - name: Download parse_xla_logs.py
9999
# # working-directory: xla

0 commit comments

Comments
 (0)