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 6366d2e commit a733b91Copy full SHA for a733b91
devops/actions/run-tests/benchmark/action.yml
@@ -118,6 +118,13 @@ runs:
118
[ "$?" -ne 0 ] && exit 1 # Stop workflow if invalid preset
119
echo "PRESET=$PRESET" >> $GITHUB_ENV
120
121
+ pwd
122
+ echo "DEBUG toolchain dir"
123
+ echo "$(realpath $SYCL_DIR)"
124
+ echo "toolchain dir contents:"
125
+
126
+ ls -al "$SYCL_DIR" || echo "SYCL dir '$SYCL_DIR' does not exist"
127
128
# Check if SYCL dir exists and has SYCL lib; set CMPLR_ROOT if so
129
if [ -d "$SYCL_DIR" ] && [ -f "$SYCL_DIR/lib/libsycl.so" ]; then
130
echo "Using SYCL from: $SYCL_DIR"
0 commit comments