mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-10 11:20:10 +00:00
Sort benchmark functions
This commit is contained in:
parent
051063c88b
commit
3ce9e01097
@ -1,5 +1,7 @@
|
|||||||
2013-05-22 Siddhesh Poyarekar <siddhesh@redhat.com>
|
2013-05-22 Siddhesh Poyarekar <siddhesh@redhat.com>
|
||||||
|
|
||||||
|
* benchtests/Makefile: Sort function entries.
|
||||||
|
|
||||||
* benchtests/Makefile (bench): Add asin, acos, sinh, cosh,
|
* benchtests/Makefile (bench): Add asin, acos, sinh, cosh,
|
||||||
tanh, asinh, acosh, atanh.
|
tanh, asinh, acosh, atanh.
|
||||||
* benchtests/acos-inputs: New file.
|
* benchtests/acos-inputs: New file.
|
||||||
|
@ -17,23 +17,56 @@
|
|||||||
|
|
||||||
|
|
||||||
# Makefile for benchmark tests. The only useful target here is `bench`.
|
# Makefile for benchmark tests. The only useful target here is `bench`.
|
||||||
|
# Add benchmark functions in alphabetical order.
|
||||||
|
|
||||||
subdir := benchtests
|
subdir := benchtests
|
||||||
bench := exp pow log rint sin cos tan asin acos atan modf sinh cosh tanh \
|
bench := acos acosh asin asinh atan atanh cos cosh exp log modf pow rint sin \
|
||||||
asinh acosh atanh
|
sinh tan tanh
|
||||||
|
|
||||||
|
acos-ARGLIST = double
|
||||||
|
acos-RET = double
|
||||||
|
LDFLAGS-bench-acos = -lm
|
||||||
|
|
||||||
|
acosh-ARGLIST = double
|
||||||
|
acosh-RET = double
|
||||||
|
LDFLAGS-bench-acosh = -lm
|
||||||
|
|
||||||
|
asin-ARGLIST = double
|
||||||
|
asin-RET = double
|
||||||
|
LDFLAGS-bench-asin = -lm
|
||||||
|
|
||||||
|
asinh-ARGLIST = double
|
||||||
|
asinh-RET = double
|
||||||
|
LDFLAGS-bench-asinh = -lm
|
||||||
|
|
||||||
|
atan-ARGLIST = double
|
||||||
|
atan-RET = double
|
||||||
|
LDFLAGS-bench-atan = -lm
|
||||||
|
|
||||||
|
atanh-ARGLIST = double
|
||||||
|
atanh-RET = double
|
||||||
|
LDFLAGS-bench-atanh = -lm
|
||||||
|
|
||||||
|
cos-ARGLIST = double
|
||||||
|
cos-RET = double
|
||||||
|
LDFLAGS-bench-cos = -lm
|
||||||
|
|
||||||
|
cosh-ARGLIST = double
|
||||||
|
cosh-RET = double
|
||||||
|
LDFLAGS-bench-cosh = -lm
|
||||||
|
|
||||||
exp-ARGLIST = double
|
exp-ARGLIST = double
|
||||||
exp-RET = double
|
exp-RET = double
|
||||||
LDFLAGS-bench-exp = -lm
|
LDFLAGS-bench-exp = -lm
|
||||||
|
|
||||||
pow-ARGLIST = double:double
|
|
||||||
pow-RET = double
|
|
||||||
LDFLAGS-bench-pow = -lm
|
|
||||||
|
|
||||||
log-ARGLIST = double
|
log-ARGLIST = double
|
||||||
log-RET = double
|
log-RET = double
|
||||||
LDFLAGS-bench-log = -lm
|
LDFLAGS-bench-log = -lm
|
||||||
|
|
||||||
|
pow-ARGLIST = double:double
|
||||||
|
pow-RET = double
|
||||||
|
LDFLAGS-bench-pow = -lm
|
||||||
|
|
||||||
rint-ARGLIST = double
|
rint-ARGLIST = double
|
||||||
rint-RET = double
|
rint-RET = double
|
||||||
LDFLAGS-bench-rint = -lm
|
LDFLAGS-bench-rint = -lm
|
||||||
@ -42,50 +75,18 @@ sin-ARGLIST = double
|
|||||||
sin-RET = double
|
sin-RET = double
|
||||||
LDFLAGS-bench-sin = -lm
|
LDFLAGS-bench-sin = -lm
|
||||||
|
|
||||||
cos-ARGLIST = double
|
sinh-ARGLIST = double
|
||||||
cos-RET = double
|
sinh-RET = double
|
||||||
LDFLAGS-bench-cos = -lm
|
LDFLAGS-bench-sinh = -lm
|
||||||
|
|
||||||
tan-ARGLIST = double
|
tan-ARGLIST = double
|
||||||
tan-RET = double
|
tan-RET = double
|
||||||
LDFLAGS-bench-tan = -lm
|
LDFLAGS-bench-tan = -lm
|
||||||
|
|
||||||
asin-ARGLIST = double
|
|
||||||
asin-RET = double
|
|
||||||
LDFLAGS-bench-asin = -lm
|
|
||||||
|
|
||||||
acos-ARGLIST = double
|
|
||||||
acos-RET = double
|
|
||||||
LDFLAGS-bench-acos = -lm
|
|
||||||
|
|
||||||
atan-ARGLIST = double
|
|
||||||
atan-RET = double
|
|
||||||
LDFLAGS-bench-atan = -lm
|
|
||||||
|
|
||||||
sinh-ARGLIST = double
|
|
||||||
sinh-RET = double
|
|
||||||
LDFLAGS-bench-sinh = -lm
|
|
||||||
|
|
||||||
cosh-ARGLIST = double
|
|
||||||
cosh-RET = double
|
|
||||||
LDFLAGS-bench-cosh = -lm
|
|
||||||
|
|
||||||
tanh-ARGLIST = double
|
tanh-ARGLIST = double
|
||||||
tanh-RET = double
|
tanh-RET = double
|
||||||
LDFLAGS-bench-tanh = -lm
|
LDFLAGS-bench-tanh = -lm
|
||||||
|
|
||||||
asinh-ARGLIST = double
|
|
||||||
asinh-RET = double
|
|
||||||
LDFLAGS-bench-asinh = -lm
|
|
||||||
|
|
||||||
acosh-ARGLIST = double
|
|
||||||
acosh-RET = double
|
|
||||||
LDFLAGS-bench-acosh = -lm
|
|
||||||
|
|
||||||
atanh-ARGLIST = double
|
|
||||||
atanh-RET = double
|
|
||||||
LDFLAGS-bench-atanh = -lm
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Rules to build and execute the benchmarks. Do not put any benchmark
|
# Rules to build and execute the benchmarks. Do not put any benchmark
|
||||||
|
Loading…
Reference in New Issue
Block a user