코딩Coding/Rust연습
Rust연습❤️내 컴퓨터에 병렬 실행 가능한 코어수 알아보기available_parallelism
내인생PLUS
2022. 6. 29. 00:33
728x90
Rust 내 컴퓨터에 병렬 실행 가능한 코어수 알아보기
fn main () {
println!("You can use {:?} threads(available_parallelism) now. ", std::thread::available_parallelism().unwrap());
}
결과
Compiling playground v0.0.1 (/playground)
Finished dev [unoptimized + debuginfo] target(s) in 0.75s
Running `target/debug/playground`
Standard Output
You can use 2 threads(available_parallelism) now.
다른 글 보기
C언어] ❤️
OpenMP를 사용해서
내 컴퓨터의 가능한 Threads숫자 알아보기 -
https://economiceco.tistory.com/m/14301
반응형