]> Cypherpunks repositories - gostls13.git/commit
math: add Exp2; 386 FPU versions of Exp2 and Log1p
authorCharles L. Dorian <cldorian@gmail.com>
Wed, 10 Feb 2010 08:06:41 +0000 (00:06 -0800)
committerRuss Cox <rsc@golang.org>
Wed, 10 Feb 2010 08:06:41 +0000 (00:06 -0800)
commitaee1434193fc5650170b053d2d169b2a11161384
tree641e9fbd1da2f110f57843d69d15e4e1c2b930ee
parentf25586a306cab6bf06fee66336ba77c0fac471c6
math: add Exp2; 386 FPU versions of Exp2 and Log1p

Added tests and benchmarks for Exp2 (special cases same
as Exp). Log1p also enhances speed of inverse hyperbolics.

R=rsc
CC=golang-dev
https://golang.org/cl/206058
src/pkg/math/Makefile
src/pkg/math/all_test.go
src/pkg/math/exp.go
src/pkg/math/exp2_386.s [new file with mode: 0644]
src/pkg/math/exp2_decl.go [new file with mode: 0644]
src/pkg/math/log1p_386.s [new file with mode: 0644]
src/pkg/math/log1p_decl.go [new file with mode: 0644]