gpt4 book ai didi

python - 在pycharm中使用多处理时如何调试

转载 作者:太空狗 更新时间:2023-10-29 21:05:28 27 4
gpt4 key购买 nike

我在 pycharm 社区版中使用 anaconda2 调试多进程程序。它有几个后台工作进程。工作进程将检查输入队列以在接收到任务之前不休眠地检索任务。事实上,我只对主进程感兴趣。但是pycharm调试器老是踩到子进程,好像主进程一直没在工作,任务一直没发出来。如何使调试器脱 ionic 进程?工作子进程如下所示:

class ILSVRC_worker:

...

def run(self):
cfg_parser = ConfigParser.ConfigParser()
cfg_parser.read(self.cfg_path)
data_factory = ILSVRC_DataFactory(cfg_parser)
logger = mp.log_to_stderr(logging.INFO)
while True:
try:
annotation_path = self.que_in.get(True,0.1)
except Queue.Empty:
continue
if annotation_path is None:
# to exit the subprocess
logger.info('exit the worker process')
break
...

最佳答案

我可以想到两种方法来实现这一点,但不幸的是,我认为社区版无法实现。

  • 如果您有进程的 PID,您可以尝试使用“工具”>“附加到进程..”功能附加到它(我不知道社区版是否提供该功能)。如果您使用 Pool,这会很困难,因为您不知道作业分配给了哪个进程。
  • 另一种方法是使用远程调试器并在分派(dispatch)的 python 进程中连接到它。这仅在专业版中可用

我最终在没有任何多处理的情况下测试了我的代码

关于python - 在pycharm中使用多处理时如何调试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34033754/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com