This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.18-477-g9d17796


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  9d17796a97dd81fca8f9bdf7dd03b888c2233a37 (commit)
       via  fe7da22091be6e4939531eeeef593b6d4539b55c (commit)
      from  639a0ef8aba38b3ba1628d539fa95078132bca8a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=9d17796a97dd81fca8f9bdf7dd03b888c2233a37

commit 9d17796a97dd81fca8f9bdf7dd03b888c2233a37
Author: Steve Ellcey <sellcey@mips.com>
Date:   Mon Dec 2 09:38:38 2013 -0800

    Add ChangeLog entry for sqrt tests.

diff --git a/ChangeLog b/ChangeLog
index 8e6b527..f8339e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-12-02  Steve Ellcey  <sellcey@mips.com>
+
+	* benchtests/Makefile (bench): Add sqrt.
+	(LDLIBS-bench-sqrt): New.
+	* benchtests/sqrt-input: New.
+
 2013-12-02  Pavel Simerda  <psimerda@redhat.com>
 
 	* sysdeps/posix/getaddrinfo.c (GAIH_OKIFUNSPEC): Remove macro.

http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=fe7da22091be6e4939531eeeef593b6d4539b55c

commit fe7da22091be6e4939531eeeef593b6d4539b55c
Author: Steve Ellcey <sellcey@mips.com>
Date:   Mon Dec 2 09:37:18 2013 -0800

    Benchmark test for sqrt function.

diff --git a/benchtests/Makefile b/benchtests/Makefile
index 0820d20..c1698c6 100644
--- a/benchtests/Makefile
+++ b/benchtests/Makefile
@@ -21,7 +21,7 @@
 
 subdir := benchtests
 bench := acos acosh asin asinh atan atanh cos cosh exp log modf pow rint sin \
-	 sincos sinh tan tanh
+	 sincos sinh sqrt tan tanh
 
 # String function benchmarks.
 string-bench := bcopy bzero memccpy memchr memcmp memcpy memmem memmove \
@@ -49,6 +49,7 @@ LDLIBS-bench-pow = -lm
 LDLIBS-bench-rint = -lm
 LDLIBS-bench-sin = -lm
 LDLIBS-bench-sinh = -lm
+LDLIBS-bench-sqrt = -lm
 LDLIBS-bench-tan = -lm
 LDLIBS-bench-tanh = -lm
 LDLIBS-bench-sincos = -lm
diff --git a/benchtests/sqrt-inputs b/benchtests/sqrt-inputs
new file mode 100644
index 0000000..370bc05
--- /dev/null
+++ b/benchtests/sqrt-inputs
@@ -0,0 +1,10 @@
+## args: double
+## ret: double
+## includes: math.h
+0.25
+0.75
+2.0
+4.0
+2209.0
+6642.25
+15190.5625

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                               |    6 ++++++
 benchtests/Makefile                     |    3 ++-
 benchtests/{acos-inputs => sqrt-inputs} |   14 +++++++-------
 3 files changed, 15 insertions(+), 8 deletions(-)
 copy benchtests/{acos-inputs => sqrt-inputs} (53%)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]