diff options
author | Joseph Myers <joseph@codesourcery.com> | 2017-09-19 12:59:01 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2017-09-19 12:59:01 +0000 |
commit | eb375def3ddd2a1738ed6bc5ace98753f0f7e5e6 (patch) | |
tree | ccaa8a1599d1601cbdc7c3c8f6a35971cba1e86b /benchtests/trunc-inputs | |
parent | bd17ba29eb5cb4ec7251c1ed0b4dcd7d287c0c0c (diff) | |
download | glibc-eb375def3ddd2a1738ed6bc5ace98753f0f7e5e6.zip glibc-eb375def3ddd2a1738ed6bc5ace98753f0f7e5e6.tar.gz glibc-eb375def3ddd2a1738ed6bc5ace98753f0f7e5e6.tar.bz2 |
Add benchtests for trunc and truncf.
This patch adds benchtests for the trunc and truncf functions. The
inputs listed are fairly arbitrary; I do not assert they are
representative of any particular application.
* benchtests/Makefile (bench-math): Add trunc and truncf.
(CFLAGS-bench-trunc.c): New variable.
(CFLAGS-bench-truncf.c): Likewise.
* benchtests/trunc-inputs: New file.
* benchtests/truncf-inputs: Likewise.
Diffstat (limited to 'benchtests/trunc-inputs')
-rw-r--r-- | benchtests/trunc-inputs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/benchtests/trunc-inputs b/benchtests/trunc-inputs new file mode 100644 index 0000000..49ff407 --- /dev/null +++ b/benchtests/trunc-inputs @@ -0,0 +1,22 @@ +## args: double +## ret: double +## includes: math.h +0.0 +-0.0 +0.001 +-0.001 +0.5 +-0.5 +0.999 +-0.999 +1.0 +-1.0 +1.001 +-1.001 +123.5 +-123.5 +12345.1 +-1000000.1 +1e15 +-1e30 +1e200 |