From 0bd1a4d6a9893e45438505514a063d9deee91f21 Mon Sep 17 00:00:00 2001
From: Xingchen Song(宋星辰) <xingchensong1996@163.com>
Date: 星期二, 11 六月 2024 14:00:10 +0800
Subject: [PATCH] [fix] better solution for handling empty result (#1796)

---
 runtime/onnxruntime/third_party/jieba/include/limonp/StdExtension.hpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/runtime/onnxruntime/third_party/jieba/include/limonp/StdExtension.hpp b/runtime/onnxruntime/third_party/jieba/include/limonp/StdExtension.hpp
index cf00e94..e1133d6 100644
--- a/runtime/onnxruntime/third_party/jieba/include/limonp/StdExtension.hpp
+++ b/runtime/onnxruntime/third_party/jieba/include/limonp/StdExtension.hpp
@@ -70,13 +70,13 @@
   return os;
 }
 
-
+#ifndef USE_GPU
 template<class T1, class T2>
 ostream& operator << (ostream& os, const pair<T1, T2>& pr) {
   os << pr.first << ":" << pr.second ;
   return os;
 }
-
+#endif
 
 template<class T>
 string& operator << (string& str, const T& obj) {

--
Gitblit v1.9.1