fixed product kernel copy error

This commit is contained in:
Max Zwiessele 2014-02-06 14:03:15 +00:00
parent 1c9151a7d0
commit 0d52430ffb

View file

@ -180,8 +180,10 @@ class kern(Parameterized):
:type tensor: bool :type tensor: bool
""" """
K1 = self.copy() K1 = self
K2 = other.copy() K2 = other
#K1 = self.copy()
#K2 = other.copy()
slices = [] slices = []
for sl1, sl2 in itertools.product(K1.input_slices, K2.input_slices): for sl1, sl2 in itertools.product(K1.input_slices, K2.input_slices):