Skip to content

Commit

Permalink
Removing debugging remnants.
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkse committed Sep 16, 2024
1 parent 3f26f10 commit d0390fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion Src/Base/AMReX_Math.H
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
#include <cstdlib>
#include <type_traits>
#include <utility>
#include <iostream>

#ifdef AMREX_USE_SYCL
# include <sycl/sycl.hpp>
Expand Down
6 changes: 2 additions & 4 deletions Src/Base/Parser/AMReX_Parser_Y.H
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,7 @@ AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE
T parser_math_comp_ellint_1 (T k)
{
#if defined(__GNUC__) && !defined(__clang__) && !defined(__CUDA_ARCH__) && !defined(__NVCOMPILER)
// return std::comp_ellint_1(k);
return amrex::Math::comp_ellint_1<T>(k);
return std::comp_ellint_1(k);
#else
return amrex::Math::comp_ellint_1<T>(k);
#endif
Expand All @@ -365,8 +364,7 @@ AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE
T parser_math_comp_ellint_2 (T k)
{
#if defined(__GNUC__) && !defined(__clang__) && !defined(__CUDA_ARCH__) && !defined(__NVCOMPILER)
// return std::comp_ellint_2(k);
return amrex::Math::comp_ellint_2<T>(k);
return std::comp_ellint_2(k);
#else
return amrex::Math::comp_ellint_2<T>(k);
#endif
Expand Down

0 comments on commit d0390fd

Please sign in to comment.