diff options
author | Aria Shrimpton <me@aria.rip> | 2024-03-20 00:23:12 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-03-20 00:23:12 +0000 |
commit | cf38c0a398eff36ce0c8f436d644dfe3834498bb (patch) | |
tree | d716726e627deb8aa408d16d8108edc49762acdc /src/crates | |
parent | db7c7a0bb4b96635737c4351d641aa87318865bf (diff) |
decrease profiling time
Diffstat (limited to 'src/crates')
-rw-r--r-- | src/crates/candelabra/src/profiler/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crates/candelabra/src/profiler/mod.rs b/src/crates/candelabra/src/profiler/mod.rs index 7f3eed2..aa53d6c 100644 --- a/src/crates/candelabra/src/profiler/mod.rs +++ b/src/crates/candelabra/src/profiler/mod.rs @@ -169,7 +169,7 @@ impl State { let child = Command::new("cargo") .current_dir(&project.source_dir) - .args(["bench", "--bench", name, "--", "--profile-time", "15"]) + .args(["bench", "--bench", name, "--", "--profile-time", "5"]) .env("PROFILER_OUT_DIR", profiler_out_dir.as_ref()) // Where profiler info gets outputted .stdout(Stdio::piped()) .stderr(if log_enabled!(Level::Debug) { |