Skip to content

Commit

Permalink
fix missing $
Browse files Browse the repository at this point in the history
  • Loading branch information
ianayl committed Sep 18, 2024
1 parent be75574 commit 1200217
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/sycl-benchmark-aggregate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ jobs:
- name: Checkout performance results repository
run: |
git clone -b $PERF_RES_BRANCH $PERF_RES_GIT_REPO $PERF_RES_PATH
- name: Debug
run: |
find "$PERF_RES_PATH" -maxdepth 3 ! -name '.*'
echo "########"
find . -maxdepth 3 ! -name '.*'
- name: Run aggregator on cloned data
run: |
for dir in $(find "$PERF_RES_PATH" -mindepth 1 -maxdepth 1 -type d ! -name '.*'); do
python llvm/devops/scripts/benchmarking/aggregate.py "$(basename $dir)" "$CUTOFF_TIMESTAMP"
done
- name: Debug
run: |
find "$PERF_RES_PATH" -maxdepth 3 ! -name '.*'
echo "########"
find . -maxdepth 3 ! -name '.*'
- name: Upload average to the repo
env:
SSH_KEY: ${{secrets.ACTIONS_DEPLOY_KEY}}
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/sycl-linux-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ jobs:
rm -f ${{ inputs.sycl_toolchain_archive || needs.check_build.outputs.artifact_archive_name }}
echo PATH=$PWD/toolchain/bin/:$PATH >> $GITHUB_ENV
echo LD_LIBRARY_PATH=$PWD/toolchain/lib/:$LD_LIBRARY_PATH >> $GITHUB_ENV
- run: ls
- run: which clang++ sycl-ls
- run: sycl-ls --verbose
- run: SYCL_UR_TRACE=1 sycl-ls
Expand All @@ -243,12 +242,7 @@ jobs:
ls
export CMPLR_ROOT=$PWD/toolchain
./devops/scripts/benchmarking/benchmark.sh ${{ inputs.cache_results == true && '-s' }}
- name: debug -- delete after
env:
SSH_KEY: ${{secrets.ACTIONS_DEPLOY_KEY}}
run:
# Is this key even a thing?
echo "$SSH_KEY" | head -c 4
echo $?
- name: Push compute-benchmarks
if: inputs.cache_results == true && success()
env:
Expand Down

0 comments on commit 1200217

Please sign in to comment.