Skip to content

Commit

Permalink
v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bcharlier committed Aug 8, 2019
1 parent 96aaff5 commit ce1f7d1
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* v1.1.2
- Fix bug in bashed computations
- Add to wheel pykeops package licence file


* v1.1.1
- Change LazyTensor imports. One should use: from pykeops.{numpy,torch} import LazyTensor.
- Add to wheel pykeops package a 'devtools' option that install cmake and gcc.
Expand Down
8 changes: 4 additions & 4 deletions keops/core/formulas/maths.h
Original file line number Diff line number Diff line change
Expand Up @@ -1219,11 +1219,11 @@ template<class V, class GRADIN>
DIMFB,
typename parameters::list_indices_keepdim_b_inout,
typename parameters::indices_keepdim_b_t>>,
DiffTB<V, TensorDot<GRADIN, A,
typename parameters::keepdim_t,
DiffTB<V, TensorDot<A,GRADIN,
DIMFA,
typename parameters::list_indices_keepdim_a_inout,
typename parameters::indices_keepdim_a_t >>
typename parameters::keepdim_t,
typename parameters::indices_keepdim_a_t,
typename parameters::list_indices_keepdim_a_inout >>
>;


Expand Down
2 changes: 1 addition & 1 deletion pykeops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from .common.set_path import set_build_folder

__version__ = '1.1.2b'
__version__ = '1.1.2'

###########################################################
# Initialize some variables: the values may be redefined
Expand Down
2 changes: 1 addition & 1 deletion pykeops/numpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from .operations import KernelSolve
from .convolutions.radial_kernel import RadialKernelConv, RadialKernelGrad1conv
from .generic.generic_ops import generic_sum, generic_logsumexp, generic_argmin, generic_argkmin
from pykeops.common.lazy_tensor import LazyTensor
from pykeops.common.lazy_tensor import LazyTensor, Vi, Vj, Pm

# N.B.: If "from pykeops.torch import LazyTensor" has already been run,
# the line above will *not* import "numpytools" and we'll end up with an error...
Expand Down
2 changes: 1 addition & 1 deletion pykeops/torch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from .kernel_product.kernels import Kernel, kernel_product, kernel_formulas
from .generic.generic_ops import generic_sum, generic_logsumexp, generic_argmin, generic_argkmin
from .kernel_product.formula import Formula
from pykeops.common.lazy_tensor import LazyTensor
from pykeops.common.lazy_tensor import LazyTensor, Vi, Vj, Pm

# N.B.: If "from pykeops.numpy import LazyTensor" has already been run,
# the line above will *not* import "torchtools" and we'll end up with an error...
Expand Down

0 comments on commit ce1f7d1

Please sign in to comment.