Alan Dayton
Alan Dayton
This is somewhat related, but with CMake 3.21.1, I get a warning regarding the cuda smoke test: ``` CMake Warning (dev) in cmake/blt/tests/smoke/CMakeLists.txt: Policy CMP0104 is not set: CMAKE_CUDA_ARCHITECTURES now...
Since CAMP, RAJA, CHAI, Umpire are requiring C++14 in their next release (which should be very soon), this would be great to get in soon.
If it's a simple matter of replacing that hardcoded flag with a cmake variable, I could put in a merge request. Is there a BLT_CUDA_STD variable?
Ah, so you set CMAKE_CUDA_STANDARD based off of BLT_CXX_STD. Would it work to use "-std=${BLT_CXX_STD}"? Or is there a complication I'm missing?
I agree that the naming is a little confusing. I recently noticed that we are passing -DCUDA_SEPARABLE_COMPILATION to our dependencies that use BLT, but it seems like we should be...
I have not had a chance to work on this (I'm still stuck on updating BLT/RAJA/Umpire/CHAI and a host of other libraries with outdated build systems that needed to be...
Hi, we have also encountered this issue. The problem is that I have a windows build that doesn't use CMake (and it would be difficult to change to using CMake,...
Is this working now? Using assert on the device kills the kernel, but I believe you have to synchronize and check the error code on the host to actually see...
I don't think the CI failure is related to my change. Looks like some build artifacts are not cleaned up correctly.
Are you thinking something like std::numeric_limits::max()? I like the idea, but it does get a little more complicated since the particular type is not available for the ArrayManager::allocate (it appears...