Skip to content

Commit b1a7c3f

Browse files
committed
shallow water: initialize coord arrays with int64
1 parent 75c7c19 commit b1a7c3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/shallow_water.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ def ind_arr(shape, columns=False):
115115
"""Construct an (nx, ny) array where each row/col is an arange"""
116116
nx, ny = shape
117117
if columns:
118-
ind = np.arange(0, nx * ny, 1, dtype=np.int32) % nx
118+
ind = np.arange(0, nx * ny, 1, dtype=np.int64) % nx
119119
ind = transpose(np.reshape(ind, (ny, nx)))
120120
else:
121-
ind = np.arange(0, nx * ny, 1, dtype=np.int32) % ny
121+
ind = np.arange(0, nx * ny, 1, dtype=np.int64) % ny
122122
ind = np.reshape(ind, (nx, ny))
123123
return ind.astype(dtype)
124124

0 commit comments

Comments
 (0)