Merge pull request #9 from ubc-vision/8-any-reason-for-the-n_max-selection

clamp N
This commit is contained in:
Shakiba Kheradmand 2024-06-29 21:37:43 -07:00 committed by GitHub
commit 1926e2c007
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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)