Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bcharlier committed Feb 9, 2024
1 parent 4e28f0e commit d3e7076
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* v2.2.2 - Feb 9, 2024
- Fix a utf8 encoding problem with "cuda_fp16.h" file


* v2.2.1 - Jan 25, 2024
- Fix a memory leak introduced with support of forward AD (issue 353)

Expand Down
1 change: 1 addition & 0 deletions keopscore/keopscore/formulas/maths/TensorProd.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
c_variable,
c_for_loop,
)
from keopscore.utils.misc_utils import KeOps_Error


####################################
Expand Down
4 changes: 1 addition & 3 deletions pykeops/pykeops/examples/pytorch/plot_anisotropic_kernels.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,7 @@ def plot_kernel(gamma):
#
# Providing a single vector we get uniform kernels

Sigma = torch.tensor([1 / 0.2**2, 1 / 0.25**2, 1 / 0.25**2, 1 / 0.1**2]).type(
dtype
)
Sigma = torch.tensor([1 / 0.2**2, 1 / 0.25**2, 1 / 0.25**2, 1 / 0.1**2]).type(dtype)
gamma = Sigma
plot_kernel(gamma)

Expand Down

0 comments on commit d3e7076

Please sign in to comment.