Ronan Keryell

Results 101 issues of Ronan Keryell

Bug pointing down to 1 line with this `/tmp/a.cpp`: ```c++ #include ``` ```bash g++-10 -std=c++20 /tmp/a.cpp In file included from /usr/include/range/v3/view.hpp:25, from /usr/include/range/v3/all.hpp:25, from /tmp/a.cpp:1: /usr/include/range/v3/view/cartesian_product.hpp: In substitution of ‘template...

I did not know that decreasing the size was working so I started to dive into the code to implement it but the code was actually there already to implement...

Accessors are very useful to precise the use of some resources, such as reading a buffer, accessing a pipe in write blocking mode, passing some local memory, etc. Accessors allow...

extension

While `sycl::vec` are similar to `sycl::id` for their vector-like structure, comparison operators are quite different according to the SYCL spec. Right now `sycl::vec` and `sycl::id` comparisons works like `std::array` returning...

bug

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

bug
good first issue

Class template argument deduction (CTAD, https://en.cppreference.com/w/cpp/language/class_template_argument_deduction) simplify the declaration of C++ objects and thus the SYCL API should be modernized with some user-defined deduction guides. For example it should be...

extension

See for example https://github.com/intel/llvm/pull/2375

enhancement

The current CI infrastructure shows its age and prevents some modern branched to land, such as https://github.com/triSYCL/triSYCL/pull/262, https://github.com/triSYCL/triSYCL/pull/263, https://github.com/triSYCL/triSYCL/pull/272 and other problems like https://github.com/triSYCL/triSYCL/issues/268 Moving to Ubuntu 20.04 for example...

enhancement

This should address some parts of https://github.com/triSYCL/triSYCL/issues/190 and other problems.

bug

Start implementing https://github.com/triSYCL/triSYCL/issues/66 for @jeffhammond

enhancement