Skip to content

Commit

Permalink
release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bcharlier committed Apr 21, 2019
1 parent 62515ea commit bc4bef7
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 12 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
* v1.0.2
- fix a bug in variable parsing for pykeops bindings
- KernelSolve syntax: move alpha kwarg in 'KernelSolve.__call__'
- doc improvement

* v1.0.1

* v1.0
- add conjugate gradient solver KernelSolve
- change variable notations in formula: {Vx,Vy} to {Vi,Vj}. Old notations are still compatible (warning message)
- change kwarg 'cuda_type' to 'dtype'. Old Kwarg is still valid for backward compatibility
- Doc has been improved

* v0.1.6


Expand Down
10 changes: 10 additions & 0 deletions doc/generate_doc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#! /usr/bin/bash
#
# This script build the doc and fix some links

#make clean
#make html

# Fix some bad links due interaction between rtd-theme and sphinx-gallery
find . -path "*_auto_*" -name "plot_*.html" -exec sed -i "s/doc\/_auto_\(.*\)rst/pykeops\/\1py/" {} \;
find . -path "*_auto_*" -name "index.html" -exec sed -i "s/doc\/_auto_\(.*\)\/index\.rst/pykeops\/\1\//" {} \;
19 changes: 8 additions & 11 deletions doc/python/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,10 @@ Testing your installation

.. code-block:: console
Compiling libKeOpsnumpy40ae98a6da in /home/..../build/:
formula: Sum_Reduction(SqNorm2(x - y),1)
aliases: x = Vi(0,3); y = Vj(1,3);
dtype : float32
... Done.
Loaded.
Compiling libKeOpsnumpy5ac3d464a2 in /path/to/build_dir/:
formula: Sum_Reduction(SqNorm2(x - y),1)
aliases: x = Vi(0,3); y = Vj(1,3);
dtype : float64
.. code-block:: python
Expand All @@ -125,12 +123,11 @@ Testing your installation

.. code-block:: console
Compiling libKeOpstorch40ae98a6da in /home/..../build/:
formula: Sum_Reduction(SqNorm2(x-y),1)
aliases: x = Vi(0,3); y = Vj(1,3);
dtype : float32
Compiling libKeOpstorch91c92bd508 in /path/to/build_dir/:
formula: Sum_Reduction(SqNorm2(x-y),1)
aliases: x = Vi(0,3); y = Vj(1,3);
dtype : float32
... Done.
Loaded.
.. code-block:: python
Expand Down
2 changes: 1 addition & 1 deletion pykeops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from .common.set_path import set_build_folder

__version__ = '1.0.1'
__version__ = '1.0.2'

###########################################################
# Initialize some variables: the values may be redefined
Expand Down

0 comments on commit bc4bef7

Please sign in to comment.