Skip to content

Commit

Permalink
Fixed interp bug introduced in last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankong committed Jul 29, 2018
1 parent 966b0df commit 79917d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sigpy/interp.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def interp(input, width, table, coord):
if device == util.cpu_device:
_interp(output, input, width, table, coord)
else:
_interp(output, input, width, table, coord, size=npts)
_interp(output, input, width, table, coord, size=npts * batch)

return output.reshape(batch_shape + pts_shape)

Expand Down

0 comments on commit 79917d7

Please sign in to comment.