From 26a70a5b4db09539acc25bbd873862d7189a7228 Mon Sep 17 00:00:00 2001 From: James Foucar Date: Thu, 5 Sep 2024 16:19:58 -0400 Subject: [PATCH] Fix frontier builds One function that was being called from kernels was missing KOKKOS_INLINE_FUNCTION. --- components/eamxx/src/physics/mam/srf_emission_impl.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/components/eamxx/src/physics/mam/srf_emission_impl.hpp b/components/eamxx/src/physics/mam/srf_emission_impl.hpp index b8ac7de768d..64ae65714c5 100644 --- a/components/eamxx/src/physics/mam/srf_emission_impl.hpp +++ b/components/eamxx/src/physics/mam/srf_emission_impl.hpp @@ -90,6 +90,7 @@ srfEmissFunctions::create_srfEmiss_data_reader( template template +KOKKOS_INLINE_FUNCTION ScalarX srfEmissFunctions::linear_interp(const ScalarX &x0, const ScalarX &x1, const ScalarT &t) {