Open bluewish07 opened 2 months ago
Does changing cl::size_t
to size_t
fix the problem?
I don't think I can do that since I can't do size_t<3>, i.e. c++ native size_t is not a template. And I can't drop <3> because there's indexing code into these variables in the following lines.
Could try std::array<size_t, 3>
?
Facepalm you are right. And yes that worked. Any chance to change that in a way that would work for everyone (as opposed to just me modifying it locally)? I also don't seem to find that header file in this repo. Is it pulled from another repo?
Yes, it's from here https://github.com/IGSIO/IGSIO
System: Ubuntu 22.04 I have 3DSlicer built from source successfully and the build products reside in/Slicer-SuperBuild-Release/
Here's the instructions that I followed to build
Here's the error that I got:
I saw a previously closed issue which might be related: https://github.com/IGSIO/SlicerIGSIO/issues/27. I tried to see if I could get OpenCL in shape on my system by manually apt installing it. I've also tried leaving
SlicerIGSIO_USE_GPU_DEFAULT
to be off. With those efforts I still get the same errors.Would appreciate any advice!