HN user

lazard

57 karma

PhD student at MIT

Posts1
Comments20
View on HN

The compiler got a bit slower:

https://github.com/golang/go/issues/19386

Those numbers are just for my CLs that fix stack traces but with mid-stack inlining still off. Turning it on makes builds noticeably slower:

    $ time ./make.bash
    real: 45.32s  user: 118.67s  cpu: 5.85s

    $ time GO_GCFLAGS='-l=4' ./make.bash
    real: 64.51s  user: 167.04s  cpu: 7.12s
We'll need to tweak the inlining heuristic to find a good balance between performance, build times, and binary size.

Author here:

The latency can be reduced by future work. For example, Section 9 in the paper mentions an idea for reducing the amount of noise (and thus reducing latency) by treating honest users as noise.

Vuvuzela can also be configured with a smaller "privacy budget" to reduce latency.