Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scripts/dpcpp-proxy.sh #9

Open
stewartl318 opened this issue Oct 5, 2022 · 2 comments
Open

scripts/dpcpp-proxy.sh #9

stewartl318 opened this issue Oct 5, 2022 · 2 comments

Comments

@stewartl318
Copy link

Everywhere I am familiar with, it is /usr/bin/env rather than /bin/env. After changing this I could get compute-benchmarks to compile

diff --git a/scripts/dpcpp-proxy.sh b/scripts/dpcpp-proxy.sh
index d0bc740..f179fc5 100755
--- a/scripts/dpcpp-proxy.sh
+++ b/scripts/dpcpp-proxy.sh
@@ -1,4 +1,4 @@
-#!/bin/env bash
+#!/usr/bin/env bash

Copyright (C) 2022 Intel Corporation

@@ -16,4 +16,4 @@ if [[ " $@ " =~ .\ -fsycl\ . ]]; then
dpcpp "${@:2}"
else
"$@"
-fi
\ No newline at end of file
+fi

@jandres742
Copy link

@RafalMaziejukIntel : In your latest work with the SYCL benchmark, have you been using this script? could you confirm on your side why we have the current line?

@RafalMaziejukIntel
Copy link
Contributor

@stewartl318 Thank you for your feedback. I will test changes that you suggested and apply them if neccessary.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants