Skip to content

Commit

Permalink
ChangeLog: add notes about Cython memoryview transition
Browse files Browse the repository at this point in the history
  • Loading branch information
strohel committed Aug 13, 2013
1 parent fa7252d commit aefb657
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ recent versions are mentioned on top.
Changes between 0.3 and 0.4
===========================

* The optimised Cython PyBayes version was turned to use Cython memoryviews (with help
from Ceygen_) instead of NumPy arrays where it makes sense. Cython memoryviews and NumPy
arrays are mostly mutually compatible, but you may need to use :func:`np.asarray(...)
<numpy.asarray>` or convert your code to use e.g. :func:`np.sum(pybayes_result)
<numpy.sum>` instead of :obj:`pybayes_result.sum() <numpy.ndarray.sum>`. Alternatively,
you can convert your code to use Cython memoryviews too.
* Use of bundled Tokyo is replaced by the Ceygen_ project and Tokyo submodule is removed.
* ParticleFilter.bayes() now ignores cond completely. Yell if you need it.
* ParticleFilter lost last emp_pdf argument. Pass the same object as the init_pdf argument
Expand Down

0 comments on commit aefb657

Please sign in to comment.