Skip to content

Commit 52ad966

Browse files
committed
Remove reshape_t reference
1 parent 2a440de commit 52ad966

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc/aesaraf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ def join_nonshared_inputs(
572572
for var in vars:
573573
shape = point[var.name].shape
574574
arr_len = np.prod(shape, dtype=int)
575-
replace[var] = reshape_t(inarray[last_idx : last_idx + arr_len], shape).astype(var.dtype)
575+
replace[var] = inarray[last_idx : last_idx + arr_len].reshape(shape).astype(var.dtype)
576576
last_idx += arr_len
577577

578578
replace.update(shared)

0 commit comments

Comments
 (0)