Skip to content

Commit

Permalink
Update README [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Jan 6, 2024
1 parent e50b2e2 commit 09b57a1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Currently supported:

- sin/cos/tan
- arcsin/arccos
- exp/exp2/exp10/expm1
- log/log2/log10/log1p
- sinh/cosh/tanh
Expand Down Expand Up @@ -43,6 +44,13 @@ This library uses three approaches for measuring accuracy:
- Relative error (`Error = |(actual - approx) / actual|`)
- [ULP Distance](https://en.wikipedia.org/wiki/Unit_in_the_last_place#:~:text=In%20computer%20science%20and%20numerical,of%20accuracy%20in%20numeric%20calculations.)

### Single vs. Double Precision

At the moment, the approximations in this library have been
primarily tested with single-precision floating-point numbers.
It is possible (maybe even likely) that most of the approximations
do not achieve sufficient accuracy for double-precision computations.

### SIMD

These approximations are intended to work for both scalar floating-point
Expand Down

0 comments on commit 09b57a1

Please sign in to comment.