Skip to content

Commit 4ee91c1

Browse files
authored
Merge pull request #6 from aerobus-open-source/dev
fix typo in paper.md
2 parents ce5d28d + 0fe1c15 commit 4ee91c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

paper.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ In a similar way, with potentially some effort, a user could define Hermite or B
411411
412412
413413
# Benchmarks
414-
In "benchmarks.cpp", we compare ourselves to std::math and harcoded fastmath calls.cpp". Standard library exposes functions such as `_ZGVeN8v_sin`. They are vectorized versions of `std::sin`, in this case specialized for avx512 registers.
414+
In "benchmarks.cpp", we compare ourselves to std::math and harcoded fastmath calls. Standard library exposes functions (at link time only) such as `_ZGVeN8v_sin`. They are vectorized versions of `std::sin`, in this case specialized for avx512 registers.
415415
416416
Benchmark is quite simple and test compute intensive operation : computing sinus (compound twelve times) of all elements of a large double precision buffer of values (larger than cache). We run code on a Asus expertbook, equipped with an Intel i7-1195G7 @ 2.90GHz. Loop are parallelized using openmp.
417417
@@ -428,7 +428,7 @@ For each version, we note performance (in billions of sinus per second) and erro
428428
Peak performance is reached for degree 3 with 20 billions sinus per second (error $\sim 10^{-4}$).
429429
Error is minimal ($10^{-16}$) for degree 13 with performance still significantly higher than fastmath.
430430
431-
As sayd in the statement of need, user can conveniently choose precision or speed at compile time, which is, as far as we know, not possible in any other library.
431+
As said in the statement of need, user can conveniently choose precision or speed at compile time, which is, as far as we know, not possible in any other library.
432432
433433
# Acknowledgements
434434

0 commit comments

Comments
 (0)