Denis P. Shamonin
Denis P. Shamonin
I have the same experience with this CL_OUT_OF_RESOURCES error. I tried many times, many hours to understand it and never get close. This error is not reproducible with unit test...
@kaspermarstal reported today that OpenCL build was working for him under Ubuntu 18.10 and GCC 7.3.0, CMake 3.10.2 with ITK5 development branch. Fixed with 07bb702e930f0500af61b8d9271b6f8e21b11016
Thanks for reply Jérémie. The correct way of fixing it for both compilers VS 2015, 2017 ... is this: static constexpr const char *format = "%d"; The pointer is `constexpr...
Did you already try the combination of _both_ `constexpr` + `const ` should be: static constexpr const char *format = "%d"; not static constexpr char *format = "%d"; I don't...
The pointer is `const `at compile time with `constexpr `, but what it points to, still could be modified. So you make it `const`.
Ok, I will try next week, have a nice weekend.