From 6bb021d2b143a58ece3a005af3a1135b0cdac4f2 Mon Sep 17 00:00:00 2001
From: znsoft <znsoft@163.com>
Date: 星期六, 22 四月 2023 05:12:09 +0800
Subject: [PATCH] build with onnxruntime
---
funasr/bin/lm_inference.py | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/funasr/bin/lm_inference.py b/funasr/bin/lm_inference.py
index 15c56ca..76de6df 100644
--- a/funasr/bin/lm_inference.py
+++ b/funasr/bin/lm_inference.py
@@ -89,10 +89,9 @@
**kwargs,
):
assert check_argument_types()
- logging.basicConfig(
- level=log_level,
- format="%(asctime)s (%(module)s:%(lineno)d) %(levelname)s: %(message)s",
- )
+ ncpu = kwargs.get("ncpu", 1)
+ torch.set_num_threads(ncpu)
+
if ngpu >= 1 and torch.cuda.is_available():
device = "cuda"
--
Gitblit v1.9.1