FantasticMrFox
FantasticMrFox
### System Info * Operating System: Docker running ubuntu20.04 * Python Version: 3.8.5 * Version of catkin_tools: catkin_tools 0.5.0 * ROS Distro: ROS NOETIC ### Build / Run Issue [...
Per the sycl 2020 standard: https://registry.khronos.org/SYCL/specs/sycl-2020/html/sycl-2020.html#sec:accessor.common.members there should be normal iterator access to buffers through the accessor. This is particularly useful for `host_accessor`. As per the implementation here: https://github.com/intel/llvm/blob/sycl/sycl/include/sycl/accessor.hpp I...
The basic example: ``` struct Drawable { void draw(std::ostream &out) const { te::call([](auto const &self, auto &out) { self.draw(out); }, *this, out); } }; struct Square { void draw(std::ostream &out)...