方法一、利用numpy.dot函数计算时间
import numpy as np import time A = np.random.rand(10000, 10000) B = np.random.rand(10000, 10000) start_time = time.time() C = np.dot(A, B) end_time = time.time() print("方法1计算时间:", end_time - start_time)//3.94059681892395
方法二、利用numpy.multiply函数计算时间
import numpy as np import time A = np.random.rand(10000, 10000) B = np.random.rand(10000, 10000) start_time = time.time() C = np.multiply(A, B).sum() end_time = time.time() print("方法2计算时间:", end_time - start_time)//9.166156768798828
标签: NumPy, numpy.dot, numpy.multiply
上面是“利用NumPy计算时间(numpy.dot函数/numpy.multiply函数)”的全面内容,想了解更多关于 后端开发 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_14030.html
workflows工作流
- 树上一个快乐的猕猴桃ComfyUI工作流
- 一个冰淇淋ComfyUI工作流
- 3D几何打印人体模型ComfyUI工作流
- 3D圆形玉雕图案comfyui工作流
- 池塘边的大熊猫ComfyUI工作流
- 丛林里坐着一尊佛像
- 一只精致透明的朱红色水晶狐狸
- 一颗闪闪发光的水晶漂浮在森林里
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!