aboutsummaryrefslogtreecommitdiff
path: root/pl/math/poly_scalar_f64.h
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2025-01-10 10:34:52 +0000
committerAndrew Turner <andrew@FreeBSD.org>2025-01-10 10:39:34 +0000
commit9d1de25930735261c16ed874a933b4c1f1d9041e (patch)
treeb0cac1c933cc1ecb885c7e757b89ffbf13f1f012 /pl/math/poly_scalar_f64.h
parentedc5c0de794f521eb620d2b6cbaee2434442a8f3 (diff)
Import the v25.01 release of the Arm Optimized Routines [1]. [1] https://github.com/ARM-software/optimized-routines/tree/v25.01 Sponsored by: Arm Ltd
Diffstat (limited to 'pl/math/poly_scalar_f64.h')
-rw-r--r--pl/math/poly_scalar_f64.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/pl/math/poly_scalar_f64.h b/pl/math/poly_scalar_f64.h
deleted file mode 100644
index 207dccee30ad..000000000000
--- a/pl/math/poly_scalar_f64.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Helpers for evaluating polynomials on double-precision scalar input, using
- * various schemes.
- *
- * Copyright (c) 2023, Arm Limited.
- * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
- */
-
-#ifndef PL_MATH_POLY_SCALAR_F64_H
-#define PL_MATH_POLY_SCALAR_F64_H
-
-#include <math.h>
-
-/* Wrap scalar f64 helpers: evaluation of some scheme/order has form:
- [scheme]_[order]_f64. */
-#define VTYPE double
-#define FMA fma
-#define VWRAP(f) f##_f64
-#include "poly_generic.h"
-#undef VWRAP
-#undef FMA
-#undef VTYPE
-
-#endif