Skip to content

Commit

Permalink
Merge pull request #276 from clEsperanto/update-clic-0.14.0
Browse files Browse the repository at this point in the history
Update to CLIc@0.14.0
  • Loading branch information
StRigaud authored Oct 18, 2024
2 parents 94e59db + 2732c23 commit 3da67ee
Show file tree
Hide file tree
Showing 21 changed files with 250 additions and 242 deletions.
6 changes: 3 additions & 3 deletions pyclesperanto/_operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def __add__(x1, x2):
else:
from ._tier1 import add_images_weighted

return add_images_weighted(x1, x2, factor0=1, factor1=1)
return add_images_weighted(x1, x2, factor1=1, factor2=1)


def __iadd__(x1, x2):
Expand All @@ -150,7 +150,7 @@ def __iadd__(x1, x2):
else:
from ._tier1 import add_images_weighted

add_images_weighted(temp, x2, output_image=x1, factor0=1, factor1=1)
add_images_weighted(temp, x2, output_image=x1, factor1=1, factor2=1)
return x1


Expand All @@ -163,7 +163,7 @@ def __sub__(x1, x2):
else:
from ._tier1 import add_images_weighted

return add_images_weighted(x1, x2, factor0=1, factor1=-1)
return add_images_weighted(x1, x2, factor1=1, factor2=-1)


def __div__(x1, x2):
Expand Down
Loading

0 comments on commit 3da67ee

Please sign in to comment.