- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须计算大约 1e6 个物体的粒子速度的成对差异,每个物体的速度约为。 1e4 粒子。现在我正在使用 itertools.combinations 来循环粒子,但仅对于一个对象我的代码就已经花费了 30 多分钟。我想知道我还能做些什么来将其加速到可行的速度,因为并行化似乎并没有在 python 中增加太多。 cython 是正确的选择吗?
这是我仅针对其中一个对象的代码:
def pairwisevel(hist,velj,velk, xj, xk):
vlos = (velj - velk)
if( (xj - xk) < 0.):
vlos = - vlos
hist.add_from_value(vlos)
for i in itertools.combinations(np.arange(0,int(particles_per_group[0]),1),2):
pairwisevel(hist, pvel[i[0]], pvel[i[1]],\
pcoords[i[0]], pcoords[i[1]])
最佳答案
我希望我能理解你的问题。在此示例中,我计算了一个粒子对象的直方图。但如果您不想对所有 1e6 组 (1e4*1e4*1e6=1e14) 进行比较,这仍然需要几天时间。在此示例中,我使用 Numba完成任务。
代码
import numpy as np
import numba as nb
import time
#From Numba source
#Copyright (c) 2012, Anaconda, Inc.
#All rights reserved.
@nb.njit(fastmath=True)
def digitize(x, bins, right=False):
# bins are monotonically-increasing
n = len(bins)
lo = 0
hi = n
if right:
if np.isnan(x):
# Find the first nan (i.e. the last from the end of bins,
# since there shouldn't be many of them in practice)
for i in range(n, 0, -1):
if not np.isnan(bins[i - 1]):
return i
return 0
while hi > lo:
mid = (lo + hi) >> 1
if bins[mid] < x:
# mid is too low => narrow to upper bins
lo = mid + 1
else:
# mid is too high, or is a NaN => narrow to lower bins
hi = mid
else:
if np.isnan(x):
# NaNs end up in the last bin
return n
while hi > lo:
mid = (lo + hi) >> 1
if bins[mid] <= x:
# mid is too low => narrow to upper bins
lo = mid + 1
else:
# mid is too high, or is a NaN => narrow to lower bins
hi = mid
return lo
#Variant_1
@nb.njit(fastmath=True,parallel=True)
def bincount_comb_1(pvel,pcoords,bins):
vlos_binned=np.zeros(bins.shape[0]+1,dtype=np.uint64)
for i in nb.prange(pvel.shape[0]):
for j in range(pvel.shape[0]):
if( (pcoords[i] - pcoords[j]) < 0.):
vlos = 0.
else:
vlos = (pvel[i] - pvel[j])
dig_vlos=digitize(vlos, bins, right=False)
vlos_binned[dig_vlos]+=1
return vlos_binned
#Variant_2
#Is this also working?
@nb.njit(fastmath=True,parallel=True)
def bincount_comb_2(pvel,pcoords,bins):
vlos_binned=np.zeros(bins.shape[0]+1,dtype=np.uint64)
for i in nb.prange(pvel.shape[0]):
for j in range(pvel.shape[0]):
#only particles which fulfill this condition are counted?
if( (pcoords[i] - pcoords[j]) < 0.):
vlos = (pvel[i] - pvel[j])
dig_vlos=digitize(vlos, bins, right=False)
vlos_binned[dig_vlos]+=1
return vlos_binned
#Variant_3
#Only counting once
@nb.njit(fastmath=True,parallel=True)
def bincount_comb_3(pvel,pcoords,bins):
vlos_binned=np.zeros(bins.shape[0]+1,dtype=np.uint64)
for i in nb.prange(pvel.shape[0]):
for j in range(i,pvel.shape[0]):
#only particles, where this condition is met are counted?
if( (pcoords[i] - pcoords[j]) < 0.):
vlos = (pvel[i] - pvel[j])
dig_vlos=digitize(vlos, bins, right=False)
vlos_binned[dig_vlos]+=1
return vlos_binned
#Create some data to test
bins=np.arange(2,32)
pvel=np.random.rand(10_000)*35
pcoords=np.random.rand(10_000)*35
#first call has compilation overhead, we don't measure this
res_1=bincount_comb_1(pvel,pcoords,bins)
res_2=bincount_comb_2(pvel,pcoords,bins)
t1=time.time()
res=bincount_comb_1(pvel,pcoords,bins)
print(time.time()-t1)
t1=time.time()
res=bincount_comb_2(pvel,pcoords,bins)
print(time.time()-t1)
t1=time.time()
res=bincount_comb_3(pvel,pcoords,bins)
print(time.time()-t1)
性能
#Variant_1: 0.5s 5.78d for 1e6 groups of points
#Variant_2: 0.3s 3.25d for 1e6 groups of points
#Variant_3: 0.22s 2.54d for 1e6 groups of points
关于python - 优化成对减法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50787624/
我有一个用于“从”和“到”字段的日期选择器,我想要减法的结果。例如:toValue-fromValue,结果以小时为单位。如何做到这一点? 最佳答案 可以使用timeIntervalSinceDate
多边形之间可以进行 bool 运算吗? 我想在 OpenGL 中做一个这样的图形,我想用一个球体和四个较小的球体进行四次减法来实现。 最佳答案 不,仅使用 OpenGL 是不可能的。 OpenGL 是
这就是我在 Haskell 中进行矩阵加法的内容 > add :: (Num a) => [[a]] -> [[a]] -> [[a]] > add [] [] = [] >
我有两个约会: def lastRequestDate = "08-09-2019" (MM-dd-yyyy) 和 def Today = new Date().format('MM-dd-yyyy'
我在 Python 中玩弄大数,我计算了 2**(1322134) 而且显然计算了很长时间。然而,当我计算 2**(1322134) - 2**(1322134) 它立即返回 0。 Python 如
我正在尝试解决一个问题: 编写一个程序计算非负整数之间的差值。 输入: 输入的每一行都由一对整数组成。每个整数都在 0 到 10 之间提高到 15(含)。输入在文件末尾终止。 输出: 对于输入中的每一
是否可以有一个文本框,用户将在其中输入一个数字,而在另一个文本框中,它会自动将第一个文本框的值加 5 并从第三个文本框的值中减去 5? 例如: 用户输入:10 第二个文本框:15 第三个文本框:5 请
假设性问题。我的程序中有一个自定义对象,称为 GamePoint。它已正确定义并具有所有必需的成员。我想知道我是否可以实现类似于以下内容的东西: GamePoint p = new GamePoint
编辑 以前版本的问题没有准确反射(reflect)我的问题。我编辑了它。 我想做一系列破坏性的加法/减法(对具有相应方法的可变对象)。 a 被赋值后: a = [:a, :b] 以下所有返回语法错误。
我需要一个函数来计算 unsigned val 的总和和 signed dX并将结果包装在 lower 范围内和 upper 例如: 值为 5 , 变化 -6 , 以及 0 的范围和 10会返回 10
分而治之矩阵乘法是否执行与经典矩阵乘法相同数量的加法/减法? 我知道它们专门用于乘法运算,因为它们具有相同的 O(n^3) 复杂度... 但是当我尝试在我正在制作的程序中对它们进行计数时,加法/减法得
好的,我需要我的代码来检查减号/减号/-是否被按下,如果它被按下我想要弹出一个警告框。我尝试了 109 和 189 键码,但我仍然没有得到想要的结果。虽然我按 "-" 我没有得到那个警告框 最佳答案
如果我们想要映射一个将范围内的每个元素加 1 的函数,我们可以编写 map (\x -> x + 1) [1..5] 但我想大多数人都会选择 map (+1) [1..5] 相反。但这显然不适用于 (
我正在使用 lex 和 bison 进行简单的计算。它应该做的是解析每个提到的减法 - 1 - -1,1- 1,1--1,最多的是什么重要:1-1。前三种情况有效,但在最后一种情况下,它看起来好像将句
我有一个 MySQL 查询: $q = mysql_query("SELECT id FROM table ORDER BY id DESC LIMIT 2"); while($row = mysql
我有两个字符串列表,listA 和 listB。 listA 更长,我想通过向其添加空字符串来使 listB 具有相同的大小。 这个有效: int diff = listA.size() - list
我现在有两个相似的表(一个用于账单,另一个用于支付),我向用户展示了来自两者的联合混合数据.. Table Bills CustomerId
我有 2 个非索引数据框如下:df1 John Mullen 12/08/1993 Lisa Bush 06/12/1990 Maria Murphy 30/03/1989 Set
我有这个功能: (defun test (variable) (cond ((null variable) nil) (( (lisp-implementation-type) "
我有一个数据框 [in] MyDates [out] 2017-04-04 -5.0 2017-04-03 -5.0 2017-03-31 -4.0 201
我是一名优秀的程序员,十分优秀!