From 59efac690541f326d3ec482e83376aea5583be3e Mon Sep 17 00:00:00 2001 From: tuna2134 Date: Wed, 11 Sep 2024 00:36:00 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=87=8D=E8=A4=87=E9=83=A8=E5=88=86?= =?UTF-8?q?=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sbv2_core/src/model.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/sbv2_core/src/model.rs b/sbv2_core/src/model.rs index a93d5dd..ca96d55 100644 --- a/sbv2_core/src/model.rs +++ b/sbv2_core/src/model.rs @@ -7,7 +7,6 @@ use std::io::Cursor; pub fn load_model(model_file: &str) -> Result { let session = Session::builder()? .with_optimization_level(GraphOptimizationLevel::Level3)? - .with_intra_threads(1)? .with_intra_threads(num_cpus::get_physical())? .with_parallel_execution(true)? .with_inter_threads(num_cpus::get_physical())?