Python multiprocessing 共享对象
在 Python 中,共享内存多处理由连接多个处理器组成,但这些处理器必须能够直接访问系统的主内存。 这将允许所有连接的处理器访问它们使用或创建的其他处理器数据。
在多进程中使用 Python 共享内存对象
在 Python 中使用 multiprocessing,一个新的进程可以独立运行并拥有自己的内存空间。 通过查看下面的示例,让我们详细了解使用 Python 的共享对象多处理。
示例代码:
import multiprocessing
#an empty array globally declared
answer = []
def square_numbers(mynumbers):
#for squaring array elements, a function has been used
global answer
#appending square numbers to a global array
for n in mynumbers:
answer.append(n * n)
#print a global array for generating an answer
print("Answer using first process: {}".format(answer))
if __name__ == "__main__":
#input array
mynumbers = [5,10,15]
#new process has been created
p = multiprocessing.Process(target=square_numbers, args=(mynumbers,))
#process begins here
p.start()
#wait unless a process is completed
p.join()
#print a global array for generating an answer
print("Answer using main program: {}".format(answer))
输出:
Answer using first process: [25, 100, 225]
Answer using main program: []
我们使用上面的例子在两个地方打印了全局数组答案。
进程 p 调用 square_numbers 函数,以便在内存空间中为进程 p 更改数组元素。
主程序在进程 p 完成后运行,我们将在内存空间中得到一个空数组作为答案。
Python 中的多处理提供了值对象和一个数组,用于在多个进程之间共享数据。
示例代码:
import multiprocessing
def square_data(mydata, answer, square_sum):
#a function has been made for squaring of given data
#appending squares of mydata to the given array
for ix, n in enumerate(mydata):
answer[ix] = n * n
#sum the square values
square_sum.value = sum(answer)
#print array of squared values for process p
print("Answer in process p: {}".format(answer[:]))
# print the sum of squared values for process p
print("Sum of squares values in process p: {}".format(square_sum.value))
if __name__ == "__main__":
#here, we input the data
mydata = [1,2,3]
#an array has been created for the int data type for three integers
answer = multiprocessing.Array('i', 3)
#value has been created for int data type
square_sum = multiprocessing.Value('i')
#new process has been created
p = multiprocessing.Process(target=square_data, args=(mydata, answer, square_sum))
#process begins from here
p.start()
#wait unless the process is completed
p.join()
# print an array of squared values for the main program
print("Answer in main program: {}".format(answer[:]))
# print the sum of squared values for the main program
print("Sum of square values in main program: {}".format(square_sum.value))
输出:
Answer in process p: [1, 4, 9]
Sum of squares in process p: 14
Answer in main program: [1, 4, 9]
Sum of squares in main program: 14
在上面的示例中,我们创建了一个数组并将三个整数传递给它。 我们打印了一个平方值数组,然后是进程 p 的平方值之和。
在此之后,我们再次为主程序打印一个平方值数组和平方值之和。
总结
可以通过多种方式来解释使用 Python 的共享内存多处理。 因此,在本文中,我们解释了多进程共享内存概念,即一个对象如何放置在共享内存空间并独立运行。
除此之外,我们还了解到 Python 允许进程在不同进程之间共享数据。
相关文章
在 Python Lambda 中使用 Await
发布时间:2023/06/13 浏览次数:143 分类:Python
-
在 Python 中,要实现异步编程,我们可以将 async/await 特性与函数一起使用,但我们使用 lambda 函数来实现。 本文将讨论在 Python lambda 函数中使用 await 的可能性。Python Lamda 中没有async/await lambda
Python Lambda 闭包
发布时间:2023/06/13 浏览次数:141 分类:Python
-
本篇文章将介绍在 Python 中使用 lambda 函数和闭包。在 Python 中使用 Lambda 函数的语法
Python 中的最长公共子序列
发布时间:2023/06/02 浏览次数:147 分类:Python
-
本篇文章讲介绍在 Python 中查找两个序列之间最长公共子序列的长度。使用 Naive 方法在 Python 中查找最长公共子序列;使用动态规划在 Python 中查找最长公共子序列
在 Python 请求中使用 Cookie
发布时间:2023/06/02 浏览次数:98 分类:Python
-
本篇文章介绍如何使用 requests.get() 借助 Python 中的 cookies 参数获取 cookies,以及如何访问需要登录的特定网页。
在 Python 中带有参数的请求查询字符串
发布时间:2023/06/02 浏览次数:174 分类:Python
-
本篇文章将介绍在使用 Python 中的请求库创建请求时查询字符串参数的使用。在 Python 中使用参数查询请求的字符串
在 Python 中设置请求的最大重试次数
发布时间:2023/06/02 浏览次数:67 分类:Python
-
本教程描述了为什么我们会收到错误消息,指出超出了最大重试次数,以及我们如何在 Python 中为请求设置 max_retries。 如果服务器上的负载导致此错误,它还会为我们提供提示。
在 Python 中使用requests模块发布表单数据
发布时间:2023/06/02 浏览次数:184 分类:Python
-
本篇文章介绍了 Python requests 模块,并说明了我们如何使用该模块在 Python 中发布表单数据。使用 requests 模块在 Python 中发布表单数据
在 Python 中使用令牌进行 API 调用
发布时间:2023/06/02 浏览次数:149 分类:Python
-
在 Python 中进行不带令牌的 API 调用 要启动,我们需要先安装一个 Python 库来处理这个请求; 当我们在 Python 中调用 API 时,我们可以使用令牌来调用
在 Python 中使用请求设置用户代理 User-Agent
发布时间:2023/06/02 浏览次数:176 分类:Python
-
本文介绍 HTTP 标头用户代理主题以及如何使用 Python 中的请求设置用户代理。 您将了解 HTTP 标头及其在理解用户代理、获取用户代理以及学习使用 Python 中的请求设置用户代理的多种方法方面的