This commit is contained in:
Shakiba Kheradmand 2024-06-29 21:32:51 -07:00
parent 5bf590e587
commit 33924d1ce1

View File

@ -9,4 +9,5 @@ for n in range(N_max):
binoms[n, k] = math.comb(n, k)
def compute_relocation_cuda(opacity_old, scale_old, N):
N.clamp_(min=1, max=N_max-1)
return compute_relocation(opacity_old, scale_old, N, binoms, N_max)