Skip to content

Commit

Permalink
updated doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolm committed Jan 20, 2024
1 parent a9db1d0 commit 8f5c09d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,15 @@ __m256 mm256_atan2_ps(__m256 x, __m256 y);
// max error : 9.107976950e-08
__m256 mm256_log_ps(__m256 a);

// max error : 2.349663504e-07
__m256 mm256_log2_ps(__m256 x);

// max error : 1.108270880e-07
__m256 mm256_exp_ps(__m256 a);

// max error : 1.042427087e-07
__m256 mm256_exp2_ps(__m256 x);

// max error : 1.184910232e-07
__m256 mm256_cbrt_ps(__m256 a);
```
Expand Down Expand Up @@ -81,9 +87,15 @@ float32x4_t vatan2q_f32(float32x4_t x, float32x4_t y);
// max error : 9.107976950e-08
float32x4_t vlogq_f32(float32x4_t a);
// max error : 2.349663504e-07
float32x4_t vlog2q_f32(float32x4_t x);
// max error : 1.108270880e-07
float32x4_t vexpq_f32(float32x4_t a);
// max error : 1.042427087e-07
float32x4_t vexp2q_f32(float32x4_t a);
// max error : 1.184910232e-07
float32x4_t vcbrtq_f32(float32x4_t a);
```
Expand Down

0 comments on commit 8f5c09d

Please sign in to comment.