Closed
Description
What version of Go are you using (go version
)?
λ go version go version go1.13 windows/amd64
And Go 1.14-RC1.
Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (go env
)?
go env
Output
λ go env set GO111MODULE= set GOARCH=amd64 set GOBIN= set GOCACHE=C:\Users\klaus\AppData\Local\go-build set GOENV=C:\Users\klaus\AppData\Roaming\go\env set GOEXE=.exe set GOFLAGS= set GOHOSTARCH=amd64 set GOHOSTOS=windows set GONOPROXY= set GONOSUMDB= set GOOS=windows set GOPATH=c:\gopath set GOPRIVATE= set GOPROXY=https://proxy.golang.org,direct set GOROOT=c:\go set GOSUMDB=sum.golang.org set GOTMPDIR= set GOTOOLDIR=c:\go\pkg\tool\windows_amd64 set GCCGO=gccgo set AR=ar set CC=gcc set CXX=g++ set CGO_ENABLED=1 set GOMOD= set CGO_CFLAGS=-g -O2 set CGO_CPPFLAGS= set CGO_CXXFLAGS=-g -O2 set CGO_FFLAGS=-g -O2 set CGO_LDFLAGS=-g -O2 set PKG_CONFIG=pkg-config set GOGCCFLAGS=-m64 -mthreads -fmessage-length=0 -fdebug-prefix-map=c:\temp\wintemp\go-build453787042=/tmp/go-build -gno-record-gcc-switches
What did you do?
Isolated code: reproducer.zip
go test -bench=. -test.benchtime=10s
Most of the code is needed for the test setup, only (*tokens).EstimatedBits
and mFastLog2
is run during the benchmark.
λ benchcmp go113.txt go114.txt
benchmark old ns/op new ns/op delta
Benchmark_tokens_EstimatedBits-12 663 716 +7.99%
benchmark old MB/s new MB/s speedup
Benchmark_tokens_EstimatedBits-12 1.51 1.40 0.93x
What did you expect to see?
Equivalent performance.
What did you see instead?
8% performance regression.