-
Rust연습❤️내 컴퓨터에 병렬 실행 가능한 코어수 알아보기available_parallelism코딩Coding/Rust연습 2022. 6. 29. 00:33728x90
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반응형'코딩Coding > Rust연습' 카테고리의 다른 글
Rust연습❤️Processing 0~100%올라가는 프린트 ㅎㅎ (0) 2022.08.13 Rust연습❤️HashMap, Arc, Mutex, thread연습 (0) 2022.08.13 Rust연습❤️] Hello from asm__assembly코드 연습 (0) 2022.07.03 Rust연습❤️] Displaying raw pointers (0) 2022.07.03 Rust – Fibonacci using Recursion and Iteration (0) 2022.06.26 Rust연습❤️) Collect & Vec 조합 Closure활용 (0) 2022.06.23 Rust연습)그래프 그리기 + 움직이는 별 표현하기(움직이는 gif만들기) (0) 2022.06.15 Rust연습] tuple연습❤️ & ndarray ❤️연습 (0) 2022.06.02