Carl Pearson

Results 183 comments of Carl Pearson

@vbrunini we will also need you to sign off on the commit (`git commit --amend -s`) You can also apply the format diff printed out in the failing format check,...

Yeah, sorry about that. Becomes a habit eventually...

Shrunk a reproducer down to this ```c++ #include #include static void BM(benchmark::State& /*state*/) { Kokkos::View tmp("tmp"); } BENCHMARK(BM); ```

Smaller reproducer without relying on Google Benchmark: ```c++ #include struct Benchmark{ Benchmark(void (*)()) {} }; static void BM() { Kokkos::View tmp("tmp"); // double tmp; // works } static Benchmark *fn...

Git bisect reveals this was introduced in https://github.com/kokkos/kokkos/pull/7427

Nvidia reports the fix for this did not make the cutoff for 12.9 update 1, so the fix will be present in CUDA 13. I think we just have to...

Turns out this also impacts our unit tests and examples. Our examples do not use any of the google harnesses.

It will be fixed in 13. They say it didn't make the cutoff for 12.9 update 1, and they aren't expecting another 12.9 release.

I asked if they could provide any insight into what specifically caused this so we could try to figure out a better workaround. I'll report back.