We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In tests/ops_kokkos_level2.cc, we use Kokkos::DualViews. Replace these with standard views.
tests/ops_kokkos_level2.cc
struct kokkosFixture : public ::testing::Test { const double NaN = std::nan("0"); static constexpr auto alpha0 = ::pressio::Constants<double>::zero(); static constexpr auto alpha1 = ::pressio::Constants<double>::one(); static constexpr auto beta0 = alpha0; static constexpr auto beta1 = alpha1; const size_t x_size = 3; const size_t y_size = 4; // plain views Kokkos::DualView<double**> A{ "A", y_size, x_size }; Kokkos::DualView<double*> x{ "x", x_size }; Kokkos::DualView<double*> y{ "y", y_size }; Kokkos::DualView<double*> xt{ "xt", y_size }; Kokkos::DualView<double*> yt{ "yt", x_size };
The text was updated successfully, but these errors were encountered:
#11: initial commit
7afc92a
#11: remove unnecessary copies
b25d4b5
Merge pull request #27 from Pressio/11-remove-kokkosdualview
0745fff
#11: Remove Kokkos::DualView
cwschilly
Successfully merging a pull request may close this issue.
In
tests/ops_kokkos_level2.cc
, we use Kokkos::DualViews. Replace these with standard views.The text was updated successfully, but these errors were encountered: