Jonathan Wapman

Results 7 comments of Jonathan Wapman

Update: the compile error seems to disappear if I use brackets as shown in https://nvidia.github.io/libcudacxx/extended_api/memory_access_properties/access_property.html For example: ``` int* pin = cuda::associate_access_property(v, cuda::access_property::persisting{}); ``` Seems like inconsistent documentation in the...

I attempted some tweaks to compilation by having the Makefile only compile changed files. This appears to work for source files (.cpp, .cu), but from what I've been seeing online,...

``` # ---------------------------------------------------------------- # Gunrock -- Fast and Efficient GPU Graph Library # ---------------------------------------------------------------- # This source code is distributed under the terms of LICENSE.TXT # in the root directory...

@ChuckHastings Working on this now. What commands/file locations are you using to build the test file you included?

Interesting, I've been running into general `std::tuple` compile errors in nvcc as well. For example: ```cpp template class TestTupleMember { public: // remove constexpr to fail compile on nvcc >=...

Note that this succeeds if I use `std::make_tuple` with a basic type. It's only a class or struct that fails to compile.