Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(10)

Issue 5502079: code review 5502079: strconv: faster FormatFloat(x, *, -1, 64) using Grisu3 ... (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
13 years, 3 months ago by remyoudompheng
Modified:
13 years, 2 months ago
Reviewers:
CC:
rsc, golang-dev, remy_archlinux.org
Visibility:
Public.

Description

strconv: faster FormatFloat(x, *, -1, 64) using Grisu3 algorithm. The implementation is similar to the one from the double-conversion library used in the Chrome V8 engine. old ns/op new ns/op speedup BenchmarkAppendFloatDecimal 591 480 1.2x BenchmarkAppendFloat 2956 486 6.1x BenchmarkAppendFloatExp 10622 503 21.1x BenchmarkAppendFloatNegExp 40343 483 83.5x BenchmarkAppendFloatBig 2798 664 4.2x See F. Loitsch, ``Printing Floating-Point Numbers Quickly and Accurately with Integers'', Proceedings of the ACM, 2010.

Patch Set 1 #

Patch Set 2 : diff -r c956aa39a269 https://go.googlecode.com/hg/ #

Patch Set 3 : diff -r c956aa39a269 https://go.googlecode.com/hg/ #

Patch Set 4 : diff -r c956aa39a269 https://go.googlecode.com/hg/ #

Total comments: 16

Patch Set 5 : diff -r e8bfc2f65c2b https://go.googlecode.com/hg/ #

Patch Set 6 : diff -r 11bb73c84e6c https://go.googlecode.com/hg/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+257 lines, -20 lines) Patch
M src/pkg/strconv/extfloat.go View 1 2 3 4 2 chunks +190 lines, -0 lines 0 comments Download
M src/pkg/strconv/ftoa.go View 1 2 3 4 1 chunk +34 lines, -20 lines 0 comments Download
M src/pkg/strconv/ftoa_test.go View 1 2 3 4 4 chunks +33 lines, -0 lines 0 comments Download

Messages

Total messages: 8
remyoudompheng
Hello golang-dev@googlegroups.com (cc: golang-dev@googlegroups.com, remy@archlinux.org), I'd like you to review this change to https://go.googlecode.com/hg/
13 years, 3 months ago (2011-12-28 01:14:56 UTC) #1
remyoudompheng
Please note that the ftoa random tests will fail for the moment due to differing ...
13 years, 3 months ago (2011-12-28 01:18:40 UTC) #2
remyoudompheng
Hello golang-dev@googlegroups.com (cc: golang-dev@googlegroups.com, remy@archlinux.org), Please take another look.
13 years, 3 months ago (2011-12-30 07:44:04 UTC) #3
rsc
This is great. Thanks very much. Please update and re-hg mail once I've submitted the ...
13 years, 2 months ago (2012-01-12 03:02:47 UTC) #4
remyoudompheng
Also updated the benchmark comparison, since "AppendDecimal" was greatly improved by "strconv: implement fast path ...
13 years, 2 months ago (2012-01-13 07:26:44 UTC) #5
remyoudompheng
Hello rsc@golang.org (cc: golang-dev@googlegroups.com, remy@archlinux.org), Please take another look.
13 years, 2 months ago (2012-01-13 07:28:00 UTC) #6
rsc
LGTM Will leave for you to submit. Please run all.bash first.
13 years, 2 months ago (2012-01-13 22:00:35 UTC) #7
remyoudompheng
13 years, 2 months ago (2012-01-13 22:24:37 UTC) #8
*** Submitted as http://code.google.com/p/go/source/detail?r=0ebf155c8d5a ***

strconv: faster FormatFloat(x, *, -1, 64) using Grisu3 algorithm.

The implementation is similar to the one from the double-conversion
library used in the Chrome V8 engine.

                            old ns/op   new ns/op  speedup
BenchmarkAppendFloatDecimal      591         480      1.2x
BenchmarkAppendFloat            2956         486      6.1x
BenchmarkAppendFloatExp        10622         503     21.1x
BenchmarkAppendFloatNegExp     40343         483     83.5x
BenchmarkAppendFloatBig         2798         664      4.2x

See F. Loitsch, ``Printing Floating-Point Numbers Quickly and
Accurately with Integers'', Proceedings of the ACM, 2010.

R=rsc
CC=golang-dev, remy
http://codereview.appspot.com/5502079
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b