-
Rust_내 컴퓨터에 MultiThread가능한 코어갯수 확인하기코딩Coding/★Rust★기초★Syntax 2022. 5. 21. 22:15728x90
use std::thread::available_parallelism; fn main() { println!("thread number: {:?}", available_parallelism()); }
https://github.com/rust-lang/rust/blob/1.61.0/RELEASES.md
반응형'코딩Coding > ★Rust★기초★Syntax' 카테고리의 다른 글
Rust attributes ❤️ 이해하기 (0) 2022.05.25 Rust & git❤️관련 배울게 많은 외국 유튜브 (0) 2022.05.23 rust style)❤️ iter()활용방법 (c언어 style 0..stuff.len()) (0) 2022.05.23 Rust❤️downcast_ref개념이해 (0) 2022.05.23 러스트Rust프로그래밍 언어의 좋은 점 - 영어 (0) 2022.05.21 Crust of Rust : async/ await - Jon Gjengset (0) 2022.05.19 Rust Macros: ❤️The What, Why? and How- Mattsi Jansky (0) 2022.05.18 Rust_error handling pattern) best no op macro? assert!(true)? What do you think of this error handling pattern? (0) 2022.05.15