remove warning

This commit is contained in:
alphataubio
2024-10-09 14:43:18 -04:00
parent 5d90879f35
commit ae0627b2f1
4 changed files with 0 additions and 5 deletions

View File

@ -52,7 +52,6 @@ RegBlockKokkos<DeviceType>::~RegBlockKokkos()
------------------------------------------------------------------------- */
template<class DeviceType>
KOKKOS_INLINE_FUNCTION
int RegBlockKokkos<DeviceType>::surface_kokkos(double x, double y, double z, double cutoff)
{
int ncontact;

View File

@ -47,7 +47,6 @@ class RegBlockKokkos : public RegBlock, public KokkosBase {
KOKKOS_INLINE_FUNCTION
void operator()(TagRegBlockMatchAll, const int&) const;
KOKKOS_INLINE_FUNCTION
int surface_kokkos(double, double, double, double);
Kokkos::View<Contact*, DeviceType> d_contact;

View File

@ -43,7 +43,6 @@ RegSphereKokkos<DeviceType>::~RegSphereKokkos()
memoryKK->destroy_kokkos(d_contact);
}
/* ----------------------------------------------------------------------
generate list of contact points for interior or exterior regions
if region has variable shape, invoke shape_update() once per timestep
@ -57,7 +56,6 @@ RegSphereKokkos<DeviceType>::~RegSphereKokkos()
------------------------------------------------------------------------- */
template<class DeviceType>
KOKKOS_INLINE_FUNCTION
int RegSphereKokkos<DeviceType>::surface_kokkos(double x, double y, double z, double cutoff)
{
int ncontact;

View File

@ -41,7 +41,6 @@ class RegSphereKokkos : public RegSphere, public KokkosBase {
~RegSphereKokkos() override;
void match_all_kokkos(int, DAT::tdual_int_1d) override;
KOKKOS_INLINE_FUNCTION
int surface_kokkos(double, double, double, double);
Kokkos::View<Contact*, DeviceType> d_contact;