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. VL is 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
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
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