现在我正在开发在Windows上运行的C#app。一些进程是用Python编写的,通过pythonnet(Python for .NET)调用。这些过程计算量很大,所以我想并行完成。
它们是CPU限制的,可以独立处理。
据我所知,有两种可能的方法来实现它:
if __name__ == "__main__":
但是,用Python编写的函数作为模块的一部分,因为它嵌入到.NET中。
例如,以下代码是可执行的,但无限生成进程。//C#
static void Main(string[] args)
{
using (Py.GIL())
{
PythonEngine.Exec(
"print(__name__)\n" + //output is "buitlins"
"if __name__ == 'builtins':\n" +
" import test_package\n" + //import Python code below
" test_package.async_test()\n"
);
}
}
# Python
import concurrent.futures
def heavy_calc(x):
for i in range(int(1e7) * x):
i*2
def async_test():
# multiprocessing
with concurrent.futures.ProcessPoolExecutor(max_workers=8) as executor:
futures = [executor.submit(heavy_calc,x) for x in range(10)]
(done, notdone) = concurrent.futures.wait(futures)
for future in futures:
print(future.result())
解决上述问题有什么好主意吗?任何意见将不胜感激。提前致谢。
对于每个python调用,1。创建一个appDomain 2.在appdomain中创建一个将异步运行python的任务。
由于它是独立的AppDomains,因此静态方法将是独立的。
使用AppDomain创建很重,所以如果你拥有的调用数量非常大,我就无法做到,但听起来你可能只有少量进程异步运行。