-
Notifications
You must be signed in to change notification settings - Fork 30
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
Updated the DPCTLKernelArgType enum values to be aligned with C++11 types #1581
Changes from all commits
e20ac5b
95f2199
b63c8ec
5ba57d1
56374ee
554541f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,30 +2,31 @@ | |
set +xe | ||
rm -rf build | ||
mkdir build | ||
pushd build | ||
pushd build || exit 1 | ||
|
||
INSTALL_PREFIX=`pwd`/../install | ||
INSTALL_PREFIX=$(pwd)/../install | ||
rm -rf ${INSTALL_PREFIX} | ||
|
||
cmake \ | ||
-DCMAKE_BUILD_TYPE=Debug \ | ||
-DCMAKE_C_COMPILER=icx \ | ||
-DCMAKE_CXX_COMPILER=dpcpp \ | ||
-DCMAKE_CXX_COMPILER=icpx \ | ||
-DCMAKE_CXX_FLAGS=-fsycl \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably the right way of integrating SYCL and cmake would be to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These changes are in the helper script, let us fix in separate PR. I just needed to get the helper script working once more to develop on libsyclinterface. |
||
-DCMAKE_INSTALL_PREFIX=${INSTALL_PREFIX} \ | ||
-DCMAKE_PREFIX_PATH=${INSTALL_PREFIX} \ | ||
-DDPCTL_ENABLE_L0_PROGRAM_CREATION=ON \ | ||
-DDPCTL_BUILD_CAPI_TESTS=ON \ | ||
-DDPCTL_GENERATE_COVERAGE=ON \ | ||
.. | ||
|
||
make V=1 -n -j 4 && make check && make install | ||
|
||
# Turn on to generate coverage report html files | ||
make lcov-genhtml | ||
# Turn on to generate coverage report html files reconfigure with | ||
# -DDPCTL_GENERATE_COVERAGE=ON and then | ||
# make lcov-genhtml | ||
|
||
# For more verbose tests use: | ||
# cd tests | ||
# ctest -V --progress --output-on-failure -j 4 | ||
# cd .. | ||
|
||
popd | ||
popd || exit 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for being late, but why
if instance(arg, ....)
still uses old style types?