Release notes
===========
- Implement some GPU optimizations
- Dynamic views is changed (skjoenberg):
* Now the sliding view information is transferred to the cxx bridge right after the view is flushed, instead of right after indexing. The sliding view information is now stored in a Python object called dynamic_view_info.
* Sliding views now allow changes to shape between iterations
* Sliding views now support broadcasting
* Sliding views now support nesting sliding views (such as a=[i:i+5], b=a[i])
* Iterators can now be in grids corresponding to nested loops. The iterators can not be mixed when indexing into the same dimension.
* Temporary arrays now inherit the dynamic changes of the views involved in the operation