diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-04-17 17:45:55 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-04-17 17:45:55 +0530 |
commit | 037714dd49c1d43584163e80008bb53f693e2550 (patch) | |
tree | 7231f8fedeebe7a547749ffd27de6637e53bba54 /benchtests/Makefile | |
parent | e913141d5f4d4eed4b65f55b0077aeb1c8234e25 (diff) | |
download | glibc-037714dd49c1d43584163e80008bb53f693e2550.zip glibc-037714dd49c1d43584163e80008bb53f693e2550.tar.gz glibc-037714dd49c1d43584163e80008bb53f693e2550.tar.bz2 |
Add benchmark inputs for cos and tan
Diffstat (limited to 'benchtests/Makefile')
-rw-r--r-- | benchtests/Makefile | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index 5d3de5d..c61fd87 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -45,7 +45,8 @@ # See pow-inputs for an example. subdir := benchtests -bench := exp pow rint sin atan slowexp slowpow slowsin slowatan +bench := exp pow rint sin cos tan atan \ + slowexp slowpow slowsin slowcos slowtan slowatan # exp function fast path exp-ITER = 5e8 @@ -77,6 +78,18 @@ sin-ARGLIST = double sin-RET = double LDFLAGS-bench-sin = -lm +# cos function fast path +cos-ITER = 3e9 +cos-ARGLIST = double +cos-RET = double +LDFLAGS-bench-cos = -lm + +# tan function fast path +tan-ITER = 3e9 +tan-ARGLIST = double +tan-RET = double +LDFLAGS-bench-tan = -lm + # atan function fast path atan-ITER = 6e9 atan-ARGLIST = double @@ -97,6 +110,20 @@ slowsin-RET = double slowsin-INCLUDE = slowsin.c LDFLAGS-bench-slowsin = -lm +# cos function slowest path +slowcos-ITER = 3e7 +slowcos-ARGLIST = double +slowcos-RET = double +slowcos-INCLUDE = slowcos.c +LDFLAGS-bench-slowcos = -lm + +# tan function slowest path +slowtan-ITER = 3e7 +slowtan-ARGLIST = double +slowtan-RET = double +slowtan-INCLUDE = slowtan.c +LDFLAGS-bench-slowtan = -lm + # atan function slowest path slowatan-ITER = 3e8 slowatan-ARGLIST = double |