You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid triggering warnings in mandelbrot example. (#13226)
... namely
```
examples/showcase/mandelbrot.py:17: DeprecationWarning: object of type <class 'float'> cannot be safely interpreted as an integer.
X = np.linspace(xmin, xmax, xn).astype(np.float32)
examples/showcase/mandelbrot.py:18: DeprecationWarning: object of type <class 'float'> cannot be safely interpreted as an integer.
Y = np.linspace(ymin, ymax, yn).astype(np.float32)
```
plus some minor cleanups.
0 commit comments