Commit 605a2a90 authored by Kirill Smelkov's avatar Kirill Smelkov

bigarray: multiply imported but unused

We stopped using numpy.multiply in 73926487 (*: It is not safe to use
multiply.reduce() - it overflows).
parent da4617c7
...@@ -36,7 +36,7 @@ of physical RAM. ...@@ -36,7 +36,7 @@ of physical RAM.
from __future__ import print_function from __future__ import print_function
from wendelin.lib.calc import mul from wendelin.lib.calc import mul
from numpy import ndarray, dtype, multiply, sign, newaxis from numpy import ndarray, dtype, sign, newaxis
import logging import logging
......
...@@ -21,7 +21,7 @@ from wendelin.bigfile import BigFile ...@@ -21,7 +21,7 @@ from wendelin.bigfile import BigFile
from wendelin.lib.mem import memcpy from wendelin.lib.mem import memcpy
from wendelin.lib.calc import mul from wendelin.lib.calc import mul
from numpy import ndarray, dtype, int32, uint32, uint8, all, zeros, arange, \ from numpy import ndarray, dtype, int32, uint32, uint8, all, zeros, arange, \
multiply, array_equal, asarray array_equal, asarray
from pytest import raises from pytest import raises
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment