Skip to content

Commit 7d74c45

Browse files
committed
replace wrong variable with the correct one
1 parent 5054c76 commit 7d74c45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stumpy/gpu_aamp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def _gpu_aamp(
304304
See Table II, Figure 5, and Figure 6
305305
"""
306306
threads_per_block = config.STUMPY_THREADS_PER_BLOCK
307-
blocks_per_grid = math.ceil(k / threads_per_block)
307+
blocks_per_grid = math.ceil(w / threads_per_block)
308308

309309
T_A = np.load(T_A_fname, allow_pickle=False)
310310
T_B = np.load(T_B_fname, allow_pickle=False)

0 commit comments

Comments
 (0)