We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Building the C++ example in https://github.com/IntelPython/example-portable-data-parallel-extensions/blob/main/steps/mkl_interface/building.md#building-a-c-example-that-uses-the-library fails with
> icpx -fsycl getrs_usm.cpp -fsycl-targets=nvptx64-nvidia-cuda,spir64-unknown-unknown -I${MKL_INTERFACE_ROOT}/include -L${MKL_INTERFACE_ROOT}/lib -lonemkl -Wl,-rpath,${MKL_INTERFACE_ROOT}/lib -o run -I -I${MKL_INTERFACE_ROOT}/../examples/include getrs_usm.cpp:48:10: fatal error: 'example_helper.hpp' file not found 48 | #include "example_helper.hpp" | ^~~~~~~~~~~~~~~~~~~~ 1 error generated.
I added -I${MKL_INTERFACE_ROOT}/../examples/include to the icpx command and that seems to have worked.
-I${MKL_INTERFACE_ROOT}/../examples/include
The text was updated successfully, but these errors were encountered:
ndgrigorian
No branches or pull requests
Building the C++ example in https://github.com/IntelPython/example-portable-data-parallel-extensions/blob/main/steps/mkl_interface/building.md#building-a-c-example-that-uses-the-library fails with
I added
-I${MKL_INTERFACE_ROOT}/../examples/include
to the icpx command and that seems to have worked.The text was updated successfully, but these errors were encountered: