mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-04-23 00:17:25 +08:00
b05a6c4206
* [BugFix] Support to fix NaN bug in EP * Optimze notion for all the funs * Fix potential lock contention failure issues * Update fastdeploy/inter_communicator/ipc_signal.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update envs.py * Update default value for USE_KVCACHE_LOCK Change default value of USE_KVCACHE_LOCK from 1 to 0. * Update worker_process.py * Fix suffix wrong * Update test_prefix_cache_manager.py --------- Co-authored-by: Jiang-Jia-Jun <jiangjiajun@baidu.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
"""
|
|
# Copyright (c) 2025 PaddlePaddle Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
"""
|
|
|
|
from .engine_cache_queue import EngineCacheQueue
|
|
from .engine_worker_queue import EngineWorkerQueue
|
|
from .ipc_signal import IPCLock, IPCSignal, shared_memory_exists
|
|
from .ipc_signal_const import (
|
|
ExistTaskStatus,
|
|
KVCacheStatus,
|
|
ModelWeightsStatus,
|
|
PrefixTreeStatus,
|
|
RearrangeExpertStatus,
|
|
)
|
|
from .zmq_client import ZmqIpcClient
|
|
from .zmq_server import ZmqIpcServer, ZmqTcpServer
|
|
|
|
__all__ = [
|
|
"ZmqIpcClient",
|
|
"ZmqIpcServer",
|
|
"ZmqTcpServer",
|
|
"IPCLock",
|
|
"IPCSignal",
|
|
"EngineWorkerQueue",
|
|
"EngineCacheQueue",
|
|
"shared_memory_exists",
|
|
"ExistTaskStatus",
|
|
"PrefixTreeStatus",
|
|
"ModelWeightsStatus",
|
|
"KVCacheStatus",
|
|
"RearrangeExpertStatus",
|
|
]
|