You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
../examples/access_traits/example_host_access_traits.cpp(48): here
../src/details/ArborX_DetailsTreeConstruction.hpp(240): warning: calling a __host__ function("std::vector< ::ArborX::Point, ::std::allocator< ::ArborX::Point> > ::vector") from a __host__ __device__ function("") is not allowed
We never see them in CI due to #272. I'm not sure what's the best to fix it. Probably move away from using std::vector. Removing KOKKOS_FUNCTION would not work as Access::get is called from such a function.
The text was updated successfully, but these errors were encountered:
What is the thinking behind using std::vector in the example? With that, one is only able to construct the hierarchy, but not even query it as we need Kokkos::View for that.
We never see them in CI due to #272. I'm not sure what's the best to fix it. Probably move away from using
std::vector
. RemovingKOKKOS_FUNCTION
would not work asAccess::get
is called from such a function.The text was updated successfully, but these errors were encountered: