Skip to content

Commit 8b1c798

Browse files
committed
Fix incorrect passing through of L_lower to generate_precomputes
1 parent 8f6e4d5 commit 8b1c798

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

s2fft/transforms/otf_recursions.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,14 @@ def inverse_latitudinal_step(
8080
half_slices = [el + mm + 1, el - mm + 1]
8181

8282
if precomps is None:
83-
precomps = generate_precomputes(L, -mm, sampling, nside, L_lower)
83+
precomps = generate_precomputes(
84+
L=L,
85+
spin=-mm,
86+
sampling=sampling,
87+
nside=nside,
88+
forward=False,
89+
L_lower=L_lower,
90+
)
8491
lrenorm, vsign, cpi, cp2, indices = precomps
8592

8693
for i in range(2):

0 commit comments

Comments
 (0)