Skip to content

Commit

Permalink
Updating version number to 3.5.20170718 and Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanky committed Jul 18, 2017
1 parent 7bf28b7 commit de788f9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,30 @@
### v3.3.20170222
### v3.5.20170718
- Feature parity with ArrayFire 3.5.
- `canny`: Canny Edge detector
- `Array.scalar`: Return the first element of the array
- `dot`: Now support option to return scalar
- `print_mem_info`: Prints memory being used / locked by arrayfire memory manager.
- `Array.allocated`: Returs the amount of memory allocated for the given buffer.
- `set_fft_plan_cache_size`: Sets the size of the fft plan cache.

- Bug Fixes:
- `sort_by_key` had key and value flipped in documentation.

- Improvements and bugfixes from upstream include:
- CUDA backend uses nvrtc instead of nvvm
- Performance improvements to arrayfire.reorder
- Faster unified backend
- You can find more information at arrayfire's [release notes](https://github.com/arrayfire/arrayfire/blob/v3.5.0/docs/pages/release_notes.md)

### v3.4.20170222
- Bugfix: Fixes typo in `approx1`.
- Bugfix: Fixes typo in `hamming_matcher` and `nearest_neighbour`.
- Bugfix: Added necessary copy and lock mechanisms in interop.py.
- Example / Benchmark: New conjugate gradient benchmark.
- Feature: Added support to create arrayfire arrays from numba.
- Behavior change: af.print() only prints full arrays for smaller sizes.

### v3.3.20161126
### v3.4.20161126
- Fixing memory leak in array creation.
- Supporting 16 bit integer types in interop.

Expand Down
4 changes: 2 additions & 2 deletions __af_version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
# http://arrayfire.com/licenses/BSD-3-Clause
########################################################

version = "3.4"
release = "20160925"
version = "3.5"
release = "20170718"
full_version = version + "." + release
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
author="Pavan Yalamanchili",
author_email="[email protected]",
name="arrayfire",
version="3.4.20170222",
version="3.5.20170718",
description="Python bindings for ArrayFire",
license="BSD",
url="http://arrayfire.com",
Expand Down

0 comments on commit de788f9

Please sign in to comment.