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 af424ac commit a05d32aCopy full SHA for a05d32a
.github/workflows/benchmarks.yml
@@ -114,9 +114,7 @@ jobs:
114
working-directory: xla
115
continue-on-error: true
116
run: |
117
- find xla/service/gpu -name "*.hlo" -print0 | while IFS= read -r -d $'\0' hlo_file; do
118
- ./bazel-bin/xla/tools/run_hlo_module --input_format=hlo --platform=GPU "$hlo_file"
119
- done
+ find xla/service/gpu -name "*.hlo" -print0 | xargs -0 -I {} ./bazel-bin/xla/tools/run_hlo_module --input_format=hlo --platform=GPU {}
120
121
# - name: Build hlo_runner_main
122
# working-directory: xla
0 commit comments