Skip to content

Commit f5c2726

Browse files
fix(perf.py): np.bool -> bool
1 parent 2890035 commit f5c2726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

perf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def edf():
66
print("Running edf.")
77
N = 1
88
sx, sy, sz = 256, 256, 256
9-
values = np.ones((sx,sy,sz), dtype=np.bool)
9+
values = np.ones((sx,sy,sz), dtype=bool)
1010
for i in range(5):
1111
s = time.time()
1212
dijkstra3d.euclidean_distance_field(values, (100,100,100))

0 commit comments

Comments
 (0)