We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a440de commit 52ad966Copy full SHA for 52ad966
pymc/aesaraf.py
@@ -572,7 +572,7 @@ def join_nonshared_inputs(
572
for var in vars:
573
shape = point[var.name].shape
574
arr_len = np.prod(shape, dtype=int)
575
- replace[var] = reshape_t(inarray[last_idx : last_idx + arr_len], shape).astype(var.dtype)
+ replace[var] = inarray[last_idx : last_idx + arr_len].reshape(shape).astype(var.dtype)
576
last_idx += arr_len
577
578
replace.update(shared)
0 commit comments