Skip to content

Commit 89beb9f

Browse files
committed
Add warning for mul_add feature
1 parent d7f60c0 commit 89beb9f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ license = "PSF-2.0"
77

88

99
[features]
10-
# Turning on this feature on aarch64-apple-darwin helps bit representation compatibility
10+
# 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.
1115
# See also: https://github.com/python/cpython/issues/132763
1216
mul_add = []
1317

0 commit comments

Comments
 (0)