From 326814e5309832d0378557d3965b85a24b5186cb Mon Sep 17 00:00:00 2001 From: Joan Martinez Date: Sun, 21 Jul 2024 19:58:42 +0200 Subject: [PATCH] docs: contribute update --- CONTRIBUTING.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0da1851df..ba322147d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -72,3 +72,14 @@ The `simulator` directory contains a deterministic simulator for testing. What this means is that the behavior of a test run is deterministic based on the seed value. If the simulator catches a bug, you can always reproduce the exact same sequence of events by passing the same seed. The simulator also performs fault injection to discover interesting bugs. + +## Building perf/latency + +In order to build the perf/latency which simulates the multitenancy usage of Limbo, you will need to use the nightly compiler of Rust because it uses experimental features. + +``` +rustup toolchain install nightly +cd perf/latency/limbo +cargo +nightly build +``` +