-
Updated
May 17, 2021 - C++
sycl
Here are 52 public repositories matching this topic...
Just an FYI whilst I was trawling through the ROCm GitHub page:
https://rocmdocs.amd.com/en/latest/Programming_Guides/Programming-Guides.html#
The problem is that the OpenCL types in https://github.com/triSYCL/triSYCL/blob/master/include/triSYCL/opencl_types.hpp are defined on the host according to the x86-64 Linux ABI which depends on the CPU & OS instead of using the description from https://www.khronos.org/registry/OpenCL/specs/2.2/html/OpenCL_C.html#built-in-scalar-data-types
Note that the system-wide cl_size_t has been removed
-
Updated
May 7, 2021 - C
The cl_ types are not needed in general, however they should still be kept in the OpenCL C interop sample code.
-
Updated
May 13, 2021 - JavaScript
-
Updated
Mar 5, 2021 - C++
-
Updated
May 17, 2021 - Python
-
Updated
Feb 4, 2021 - C++
-
Updated
Apr 30, 2021 - C++
-
Updated
Mar 31, 2020 - C++
-
Updated
Dec 17, 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
Feb 19, 2019 - C++
Currently, I have been updating the API docs for dpctl by manually generating and pushing the documents to the gh-pages branch. The steps that I use are:
Step 1
git checkout master
cd docs
mkdir build
cd build
cmake -DDPCTL_DOCGEN_PREFIX=<Some location out of tree>
make Sphinx
Step 2
git clean -dfx
git checkout gh-pages
git rm -rf *
mv <Location where docs w
-
Updated
Apr 20, 2021 - C++
-
Updated
Oct 20, 2020 - C
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."
This code in CL/sycl/detail/type_list.hpp
template <access::address_space AS, typename VL>causes compilation error if user specifies-DVL=<some number>option on the command line.VLis a popular acronym for "vector length", people may use it as a macro in their programs.Names which can clash with user space should start with underscore(s). E.g. `template <access::address_space __AS, ty