Daniel Arndt
Daniel Arndt
You'll have to fixe the formatting in the `CMake` files: ```diff diff --git a/core/unit_test/CMakeLists.txt b/core/unit_test/CMakeLists.txt index c3fcdc3..93df041 100644 --- a/core/unit_test/CMakeLists.txt +++ b/core/unit_test/CMakeLists.txt @@ -801,14 +801,10 @@ if(Kokkos_ENABLE_HIP) kokkos_add_executable_and_test( CoreUnitTest_HIPInterOpGraph SOURCES...
> Investigating a fail on MI300A when allocating a managed view on dev1 in the test. Do all the other tests work for you? In particular, the one related to...
> Investigating what in multi gpu impl is causing the issue, must be something with the allocation of `dst`? Is the memory allocated using the same stream as the functor...
> @masterleinad From the output I don't think `export HSA_XNACK=1` in the .gitlab script is being applied correctly. We get the warning See https://github.com/kokkos/kokkos/issues/7727. The issues is a file in...
A `SYCL`-only reproducer is ```C++ #include // the original Kokkos Kernels implementation template T *align_kernels(InPtr p) { std::uintptr_t ptrVal = reinterpret_cast(p); // sycl::ext::oneapi::experimental::printf("%s:%i ptrVal=%lu\n", __FILE__, // __LINE__, ptrVal); return reinterpret_cast((ptrVal...
> Does it also go away if you add a print of shmem before the constexpr section? No, that's the "unaligned" output.
```C++ #include // the original Kokkos Kernels implementation template T *align_kernels(InPtr p) { const std::uintptr_t ptrVal = reinterpret_cast(p); // sycl::ext::oneapi::experimental::printf("%s:%i ptrVal=%lu\n", __FILE__, // __LINE__, ptrVal); std::uintptr_t newval = (ptrVal +...
This will be fixed in oneAPI 2025.0.0 with the latest compiler version on the testbeds, I'm seeing ``` > icpx -fsycl reproducer.cpp && ./a.out 0 unaligned vals=0x4000000010000000 0 aligned vals=0x4000000010000000...
> I guess we are not really interested in setting up a test that checks that this deprecated feature is working properly. On the other hand it would have avoided...
@ndellingwood You'll need ```diff diff --git a/core/src/Kokkos_Macros.hpp b/core/src/Kokkos_Macros.hpp index efbedbb89..4e51a6a43 100644 --- a/core/src/Kokkos_Macros.hpp +++ b/core/src/Kokkos_Macros.hpp @@ -603,8 +603,9 @@ static constexpr bool kokkos_omp_on_host() { return false; } // clang-format off...