Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runtime: map could be faster for small keys #5908

Closed
davecheney opened this issue Jul 18, 2013 · 3 comments
Closed

runtime: map could be faster for small keys #5908

davecheney opened this issue Jul 18, 2013 · 3 comments
Milestone

Comments

@davecheney
Copy link
Contributor

Following on from a discussion on IRC, then in email with khr, maps could do a better
job when hashing small keys. 

What steps will reproduce the problem?
1. go get github.com/davecheney/bfk
2. % go test -bench=. 

What is the expected output? What do you see instead?

On my linux/amd64 SNB core i5 I get something like this

BenchmarkArray  20000000                89.5 ns/op
BenchmarkSwitch 10000000               189 ns/op
BenchmarkMap      500000              4518 ns/op

Clearly for a this sort of problem, using an array if func pointers is the best
solution, but it does raise the question if performance for the map variant could be
improved. Looking at the profile

lucky(~/src/github.com/davecheney/bfk) % go tool pprof bfk.test cpu.out 
Welcome to pprof!  For help, type 'help'.
(pprof) top
Total: 232 samples
      84  36.2%  36.2%      145  62.5% hash_lookup
      58  25.0%  61.2%       58  25.0% runtime.aeshashbody
      38  16.4%  77.6%      232 100.0% github.com/davecheney/bfk.BenchmarkMap
      27  11.6%  89.2%      194  83.6% runtime.mapaccess1
      16   6.9%  96.1%       16   6.9% runtime.memmove
       6   2.6%  98.7%       22   9.5% runtime.memcopy
       2   0.9%  99.6%        2   0.9% runtime.memequal8
       1   0.4% 100.0%        1   0.4% runtime.aeshash
       0   0.0% 100.0%      232 100.0% runtime.gosched0
       0   0.0% 100.0%      232 100.0% testing.(*B).launch

aeshash{,body} is called when the key is a byte and the body is two words. khr thought
that this could be improved.

Please use labels and text to provide additional information.
@davecheney
Copy link
Contributor Author

Comment 1:

https://golang.org/cl/11502043/ 
applying a suggestion from khr in email results in
benchmark          old ns/op    new ns/op    delta
BenchmarkArray            89           88   -1.12%
BenchmarkSwitch          189          188   -0.53%
BenchmarkMap            4509         3758  -16.66%
(pprof) top
Total: 195 samples
     112  57.4%  57.4%      127  65.1% hash_lookup
      23  11.8%  69.2%       23  11.8% runtime.memmove
      22  11.3%  80.5%      195 100.0% github.com/davecheney/bfk.BenchmarkMap
      16   8.2%  88.7%      173  88.7% runtime.mapaccess1
       9   4.6%  93.3%        9   4.6% runtime.memequal8
       7   3.6%  96.9%       30  15.4% runtime.memcopy
       6   3.1% 100.0%        6   3.1% runtime.bytehash
       0   0.0% 100.0%      195 100.0% runtime.gosched0
       0   0.0% 100.0%      195 100.0% testing.(*B).launch
       0   0.0% 100.0%      195 100.0% testing.(*B).runN

@davecheney
Copy link
Contributor Author

Comment 2:

Not quite as awesome on linux/386
benchmark          old ns/op    new ns/op    delta
BenchmarkArray           714          715   +0.14%
BenchmarkSwitch         4495         4496   +0.02%
BenchmarkMap           22530        20812   -7.63%

@rsc
Copy link
Contributor

rsc commented Jul 30, 2013

Comment 3:

Hard to get excited about map[byte]. Let's avoid the complexity. (See also Rob's
comments on CL 11502043.)

Status changed to WontFix.

@rsc rsc added this to the Go1.2 milestone Apr 14, 2015
@rsc rsc removed the go1.2 label Apr 14, 2015
@golang golang locked and limited conversation to collaborators Jun 24, 2016
This issue was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants