Juan José Casafranca

Results 54 comments of Juan José Casafranca

The problem here is that I'm using CGAL and range-v3 for the same cmake target. CGAL includes `-frounding-math`, which breaks range-v3. I have fixed this by separating the target which...

@ericniebler if I can help you in any way to fix this issue, I will be happy to do it

I was going to add a new issue/feature request, but I think my request is tied to this one. I have some simulations that generate several sequences of objs, so...

Hi Aksel, thanks you very much for your fast answer. To my understanding, Eigen supports clang cuda (https://gitlab.com/libeigen/eigen/-/issues/1173), and in my test code, I dont even use eigen types in...

> I would still recommend checking if you can compile a CUDA version of the same code with clang to narrow down the issue. Im not sure I understand what...

Just for curiosity, when and how does hipSYCL enables __CUDACC__? I have tested again changing include order and if I include Eigen/Core before CL/sycl.hpp, compiles and works fine.

> So how would you target both CPU and CUDA simultaneously? Can Eigen do that? Lets say you have a struct with an eigen value. That struct is going to...

Then, if `__CUDACC__` is defined in both passes, is like if the code is always a .cu file and Eigen would never do SSE optimizations, right? This probably goes a...

Looking a bit more, it looks like SYCL implementation on Eigen allows to run Eigen computations on SYCL devices (currently only targeting OpenCL), so if for example you are multiplying...

>For me hipSYCL's most unique and important feature compared to other SYCL implementations is that it has full interoperability at the source code level with CUDA and HIP, for example...