Remove unused set_thread_count() (#6424)

automerge
This commit is contained in:
Michael Vines 2019-10-17 20:55:05 -07:00 committed by Grimes
parent 298ba34c3c
commit e6198debd6
1 changed files with 4 additions and 11 deletions

View File

@ -1,21 +1,14 @@
#[macro_use]
extern crate lazy_static;
use std::sync::RwLock;
//TODO remove this hack when rayon fixes itself
lazy_static! {
// reduce the number of threads each pool is allowed to half the cpu core count, to avoid rayon
// hogging cpu
static ref MAX_RAYON_THREADS: RwLock<usize> =
RwLock::new(sys_info::cpu_num().unwrap() as usize / 2);
// reduce the number of threads each pool is allowed to half the cpu core count, to avoid rayon
// hogging cpu
static ref MAX_RAYON_THREADS: usize = sys_info::cpu_num().unwrap() as usize / 2;
}
pub fn get_thread_count() -> usize {
*MAX_RAYON_THREADS.read().unwrap()
}
pub fn set_thread_count(count: usize) {
*MAX_RAYON_THREADS.write().unwrap() = count;
*MAX_RAYON_THREADS
}