From d299c86633e877847510947a00a031e42e80d431 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Tue, 11 Jun 2024 16:41:23 -0400 Subject: [PATCH] Std::asin,acos --- Grid/simd/Simd.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Grid/simd/Simd.h b/Grid/simd/Simd.h index 78fae298..428981fa 100644 --- a/Grid/simd/Simd.h +++ b/Grid/simd/Simd.h @@ -99,6 +99,8 @@ using std::log; using std::exp; using std::sin; using std::cos; +using std::asin; +using std::acos; accelerator_inline RealF conjugate(const RealF & r){ return r; }