Live data from Hacker News

How Not to Measure Computer System Performance

homes.cs.washington.edu

1–10 of 14 posts

Re: How Not to Measure Computer System Performance

#3
Great article the gist I get from it is: running an experiment in computer science is easy (just ./bench), running an experiment in computer science in a correct way is hard. I agree with this assessment.

This plotty tool [0] seems interesting and valuable - but I'm not sure how it relates to the problem the author talks about.

[0] https://github.com/jamesbornholt/plotty

Re: How Not to Measure Computer System Performance

#5
post #4

Why would linking order affect runtime performance? Something to do with the interaction between offsets and cache, maybe? Would it be possible to determine ahead of time what order would maximize performance, or would that require profiling?

Guessing, locality of reference might play a role.

Re: How Not to Measure Computer System Performance

#6
Benchmarking practises are currently poor, almost without exception. For peak VM performance, we have started to use Kalibera/Jones's method http://kar.kent.ac.uk/33611/7/paper.pdf (we reimplemented the statistical computations at http://soft-dev.org/src/libkalibera/ to make it more accessible). I don't think this method is the end of the story, but it's a definite improvement: we were surprised at some of the odd effects it highlighted (non-determinism was not what I was expecting). It's definitely changed how I think about benchmarking.

Re: How Not to Measure Computer System Performance

#7
post #4

Why would linking order affect runtime performance? Something to do with the interaction between offsets and cache, maybe? Would it be possible to determine ahead of time what order would maximize performance, or would that require profiling?

I'd speculate that if you're unlucky about link order, two hot cache lines may get mapped to the same slot in an N-way associative cache -- whereas if you're lucky, they end up going to different slots and don't continuously evict each other.

With regards to alignment... do linkers typically pack objects so tightly that the start of each object isn't aligned on a cache line boundary? AFAIK they're typically 32, 64, or 128 bytes.

Re: How Not to Measure Computer System Performance

#8
post #4

Why would linking order affect runtime performance? Something to do with the interaction between offsets and cache, maybe? Would it be possible to determine ahead of time what order would maximize performance, or would that require profiling?

Linking order will affect code and static data order and cache alignment in turn. Similarly, environment variables are pushed on the stack by the kernel. Their size will affect alignment of application data on the stack.

Maybe there are other causes as well.

> Would it be possible to determine ahead of time what order would maximize performance, or would that require profiling?

I think at the very least, you'd need profiling to determine the hot code path, and that can change depending on input...

Re: How Not to Measure Computer System Performance

#9
post #7
post #4

Why would linking order affect runtime performance? Something to do with the interaction between offsets and cache, maybe? Would it be possible to determine ahead of time what order would maximize performance, or would that require profiling?

I'd speculate that if you're unlucky about link order, two hot cache lines may get mapped to the same slot in an N-way associative cache -- whereas if you're lucky, they end up going to different slots and don't continuously evict each other. With regards to alignment... do linkers typically pack objects so tightly that the start of each object isn't aligned on a cache line boundary? AFAIK they're typically 32, 64, o…

Cacheline boundary?

Probably, because caches line sizes are an implementation detail, not part of the architectural specification.

Re: How Not to Measure Computer System Performance

#10
post #5
post #4

Why would linking order affect runtime performance? Something to do with the interaction between offsets and cache, maybe? Would it be possible to determine ahead of time what order would maximize performance, or would that require profiling?

Guessing, locality of reference might play a role.

That, the branch predictors, and caching behaviors, n-way, alignment, etc.

It probably explains why different runs vary so widely, I always thought it was other things going on in the OS, never really thought about the caches, etc.

Post reply on HN