Open
Description
The spawning benchmarks in benches/spawn.rs
seem to be rather poor:
- The spawned tasks are not awaited, so spawns from one iteration may still be consuming resources during the next benchmark iteration.
- The
threaded_scheduler_local_spawn
benchmark uses a basic scheduler and is identical to thebasic_scheduler_local_spawn
benchmark. - The
basic_scheduler_remote_spawn
benchmark doesn't useblock_on
, so the spawned tasks do not run, whereas they do run in other benchmarks.
Activity