Andrew Gaspar
Andrew Gaspar
cargo test --no-run --message-format=json | ConvertFrom-Json | ? { $_.profile.test }
See https://github.com/rust-lang/cargo/issues/1924
Hey, @bd4 Is an API like this kind of what you had in mind? ```f90 real(REAL64), intent(inout) :: data(:,:) type(kokkos_r64_2d_view_t) :: device_view call device_view%allocate(size(data,1), size(data,2)) call kokkos_deep_copy(device_view, data) ! do...
> Would the device_view be device only memory, i.e. cudaMalloc / hipMalloc? That's right - we wouldn't even map the array in an addressable way from Fortran - though maybe...
It's not really exactly the same thing, but I can enter a variable in the REPL, and then dig into the details of the variable after outputting to the shell....
No, sorry 😞
I'm hitting this issue, as well. Very frustrating.
~An "easy" fix would be to issue a warning on unused inputs. We could track which inputs are actually read. Then once "initialization" completes, print out the variables that weren't...