We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
LMUTILS_BLOCKS_AT_ONCE
LMUTILS_NUM_MAIN_THREADS
1 parent 078c93a commit 2728de7Copy full SHA for 2728de7
src/lib.rs
@@ -60,7 +60,7 @@ pub fn calculate_r2s<'a>(
60
.collect::<Result<Vec<_>, _>>()?,
61
);
62
let results = Mutex::new(Vec::new());
63
- let blocks_at_once = std::env::var("LMUTILS_BLOCKS_AT_ONCE")
+ let blocks_at_once = std::env::var("LMUTILS_NUM_MAIN_THREADS")
64
.ok()
65
.and_then(|x| x.parse::<usize>().ok())
66
.unwrap_or(16)
0 commit comments