[libc-commits] [libc] [libc][math] Implementation of sinpi, correctly rounded to all modes (PR #137953)
via libc-commits
libc-commits at lists.llvm.org
Fri May 2 12:42:23 PDT 2025
================
@@ -0,0 +1,107 @@
+#include "src/math/sinpi.h"
+#include "range_reduction_double_nofma.h"
+#include "sincos_eval.h"
+#include "src/__support/FPUtil/BasicOperations.h"
+#include "src/__support/FPUtil/FEnvImpl.h"
+#include "src/__support/FPUtil/FPBits.h"
+#include "src/__support/FPUtil/double_double.h"
+#include "src/__support/FPUtil/generic/mul.h"
+#include "src/__support/FPUtil/multiply_add.h"
+#include "src/__support/FPUtil/nearest_integer.h"
+#include "src/__support/common.h"
+#include "src/__support/macros/config.h"
+#include "src/math/pow.h"
+// #include "src/__support/FPUtil/multiply_add.h"
+// #include "src/math/generic/range_reduction_double_common.h"
+#include <iostream>
----------------
nspheric wrote:
the tests are not passing. almost done.
https://github.com/llvm/llvm-project/pull/137953
More information about the libc-commits
mailing list