-
Updated
Dec 6, 2020 - C++
sycl
Here are 46 public repositories matching this topic...
load and store functions are not implemented for vec class now.
Just an FYI whilst I was trawling through the ROCm GitHub page:
https://rocmdocs.amd.com/en/latest/Programming_Guides/Programming-Guides.html#
-
Updated
Dec 7, 2020 - C
The cl_ types are not needed in general, however they should still be kept in the OpenCL C interop sample code.
-
Updated
Apr 2, 2020 - C++
-
Updated
Nov 20, 2020 - JavaScript
-
Updated
Dec 4, 2020 - Python
-
Updated
Oct 7, 2020 - C++
-
Updated
Mar 31, 2020 - C++
-
Updated
Oct 9, 2020 - C++
Things like XILINX_XRT which are set by the user and others like XILINX_DEVICE_ONLY that are set by the compiler but affect the code users compile may be useful to add.
-
Updated
Dec 7, 2020 - C++
-
Updated
Feb 19, 2019 - C++
-
Updated
Oct 20, 2020 - C
Good case for expected failure test into our unittest system.
See details in IntelPython/dpctl#189
Originally posted by @PokhodenkoSA in IntelPython/dpctl#189 (comment)
-
Updated
Jul 31, 2018 - CMake
Turn on -fstrict-aliasing -Wstrict-aliasing.
Improve this page
Add a description, image, and links to the sycl topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the sycl topic, visit your repo's landing page and select "manage topics."


If it is needed to pass the same option from driver to both host and device compilers, then it must be added two-times - see
clang/lib/Driver/ToolChains/Clang.cpp, for example:4124:
CmdArgs.push_back("-fsycl");...
6150:
CmdArgs.push_back("-fsycl");This is quite error prone and inconvenient - should be automated: option placed in one place, driver does the duplication itself.