We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7f60c0 commit 89beb9fCopy full SHA for 89beb9f
Cargo.toml
@@ -7,7 +7,11 @@ license = "PSF-2.0"
7
8
9
[features]
10
-# Turning on this feature on aarch64-apple-darwin helps bit representation compatibility
+# Do not enable this feature unless you really need it.
11
+# CPython didn't intend to use FMA for its math library.
12
+# This project uses this feature in CI to verify the code doesn't have additional bugs on aarch64-apple-darwin.
13
+# However, this does not mean that using this feature is better or more correct on that platform.
14
+# Note that the quality of the results has been well-tested without FMA but has not been tested with FMA.
15
# See also: https://github.com/python/cpython/issues/132763
16
mul_add = []
17
0 commit comments