lighthouse/.github/workflows
Michael Sproul f77e3bc0ad Add maxperf build profile (#3608)
## Proposed Changes

Add a new Cargo compilation profile called `maxperf` which enables more aggressive compiler optimisations at the expense of compilation time.

Some rough initial benchmarks show that this can provide up to a 25% reduction to run time for CPU bound tasks like block processing: https://docs.google.com/spreadsheets/d/15jHuZe7lLHhZq9Nw8kc6EL0Qh_N_YAYqkW2NQ_Afmtk/edit

The numbers in that spreadsheet compare the `consensus-context` branch from #3604 to the same branch compiled with the `maxperf` profile using:

```
PROFILE=maxperf make install-lcli
```

## Additional Info

The downsides of the maxperf profile are:

- It increases compile times substantially, which will particularly impact low-spec hardware. Compiling `lcli` is about 3x slower. Compiling Lighthouse is about 5x slower on my 5950X: 17m 38s rather than 3m 28s.

As a result I think we should not enable this everywhere by default.

- **Option 1**: enable by default for our released binaries. This gives the majority of users the fastest version of `lighthouse` possible, at the expense of slowing down our release CI. Source builds will continue to use the default `release` profile unless users opt-in to `maxperf`.
- **Option 2**: enable by default for source builds. This gives users building from source an edge, but makes them pay for it with compilation time. 

I think I would prefer Option 1. I'll try doing some benchmarking to see how long a maxperf build of Lighthouse would take on GitHub actions.

Credit to Nicholas Nethercote for documenting these options in the Rust Performance Book: https://nnethercote.github.io/perf-book/build-configuration.html.
2022-09-29 06:13:33 +00:00
..
book.yml Update mdbook runner to Ubuntu 20.04 (#3138) 2022-04-04 06:08:26 +00:00
cancel-previous-runs.yml Fix short sha in github actions (#2210) 2021-02-18 06:18:47 +00:00
docker-antithesis.yml Docker builds in GitHub actions (#3523) 2022-08-29 18:31:27 +00:00
docker.yml Add maxperf build profile (#3608) 2022-09-29 06:13:33 +00:00
linkcheck.yml Linkcheck fix (#3452) 2022-08-11 10:08:36 +00:00
local-testnet.yml Libp2p v0.48.0 upgrade (#3547) 2022-09-29 01:50:11 +00:00
publish-crate.yml Implement SSZ union type (#2579) 2021-09-25 05:58:36 +00:00
release.yml Add maxperf build profile (#3608) 2022-09-29 06:13:33 +00:00
test-suite.yml Libp2p v0.48.0 upgrade (#3547) 2022-09-29 01:50:11 +00:00