[python-arrayfire] annotated tag debian/3.3.20160328-1 created (now 064a0d8)

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Mon Mar 28 23:00:27 UTC 2016


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a change to annotated tag debian/3.3.20160328-1
in repository python-arrayfire.

        at  064a0d8   (tag)
   tagging  0c379b0bd0fb1306fecc550140a1ab134816adda (commit)
 tagged by  Ghislain Antony Vaillant
        on  Mon Mar 28 23:52:51 2016 +0100

- Log -----------------------------------------------------------------
python-arrayfire Debian release 3.3.20160328-1
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAABAgAGBQJW+bXDAAoJEGqZD7Pd65EKVUEP/jTqHTTW9MmQKEh3kjKRweZ0
2/5QDQ7wLAVbbijmpOrWYzyjwJb8huaoJffXnXpbrOrFGObMEjxeT346lqR49OZq
AICa+2IbtAMViCmbBKWWf2cejmLUtMsC0wuTbykWZk13DN0qFPbI42IRmw8CvxRM
ulAFdZdB7ENWLSrLDmW6QHbogkqFGMsMafuZ7BuyL/BYaM8+lbRvsV+rY65ntQcE
QHBbYqzm1DMVmKCPBrcAnXwGL8B21XIy9cZocwhi7ck1HKFYkr5XVbJKm4c/TNDM
R6FXWYw53yZeMuSyDWbYRy2/prZiOEnb4esJdfQ3SjJ42wtnhKQbviVGTA1MCEui
knyQKWpMlB1xNileyfsHNcBuJApYFC9Ij4kwDWYXb3umuM2uw7UHC4hKSWunPGO5
q46/D2FQYNveM2CQ0D0gD1Wi3fTanQpsKI38ItwcOw/21Wl65mhtD+NNqybsJXsC
8ZXcK1RsdRisityZ/HrxwnYWj2yG4UfinTzV+IdZtDJ2aLbrtqnJLp34yr/zk0KU
GOn8YHNfbr7PfcdBm2EeDpvv6t0PgtFQExNxEDSLrOeF6Ixh5Kfgm92/vQUi3FG4
rmI64yNn3G89jPpcDTLrWvevyub9SIC9GkEogHHr7bRy6SZRWLOE6K3TgrpRDjCL
sNEkFX3P4/x9UEvrLF9x
=ZCE1
-----END PGP SIGNATURE-----

Filipe Maia (28):
      Correct order of arguments
      Ensure array.copy() does a deep copy
      Add array.device_ptr
      Add complex typecodes
      Add number to dtype conversion
      Derive the dtype directly from the number
      Add missing raise
      Avoid promoting arrays to 64-bit
      Improve handling of negative steps in sequences
      Remove unnecessary import
      Need to set the type of the constant array
      Missing return
      Add Array.__repr__()
      Add __array__ for easier numpy interoperability
      Stop __repr__ from directly printing
      BaseArray is needed in _get_assign_dims and cannot be deleted
      Fix memory leak
      Index array wrapper class to avoid premature Index destruction
      Correctly calculate dimensions for assignments with boolean keys
      Avoid problems with circular import
      Adding raw_ptr()
      Adding is_linear()
      Adding is_owner()
      Adding strides()
      Adding offset()
      Enabling to pass offset and strides to the array constructor
      Improving the documentation of raw_ptr() and device_ptr()
      Ensure that the types of the enums values are correct

Ghislain Antony Vaillant (2):
      Initial debianization.
      Release to unstable.

Matthew Bergkoetter (2):
      Fixes typo that prevented setting backend.
      Fixes typo that prevented setting backend.

Michael Nowotny (1):
      Adding heston model example

Pavan Yalamanchili (212):
      Initial commit
      Porting a few basic functions to python
      Updating README with examples and sample output
      Ported all functions from algorithm.h
      Updating README sample code to reflect the changes to min and max
      Add the ability to construct af.array from array.array
      Generalizing af.constant to handle complex and 64 bit data types
      BUGFIX: Fixing copy paste error in algorithm.py
      TEST: Added simple test for algorithms
      Porting all functions from data.h
      TEST: Simple test for data functions
      Adding operator overloading to the array class
      Adding simple tests for operators in af.array class
      Adding division support for python2
      Example: Monte carlo estimation of pi using arrayfire
      Adding error checking to all clib function calls
      Adding device helper functions
      Updating the monte carlo pi example
      Adding blas functions and simple tests
      Adding all functions from arith.h
      BUGFIX: value of f32 was being overwritten
      Display the print expression if possible
      Simplifying the array constructor using python maps
      Adding tests for array class
      Updating the utility functions and adding relevant tests
      Adding statistics functions and relevant tests
      Adding licenses to all source and test files
      FEAT/TEST: Adding all functions from lapack.h
      FEAT/TEST: imported all functions from singal.h
      FEAT/TEST: Porting all functions from image.h
      Updating the year to 2015
      FEAT: adding features class
      FEAT: Adding vision functions
      BUGFIX: save_image was calling incorrect C function
      BUGFIX: Fixing import mess in arrayfire
      TEST: Fixing blas test
      Updating README.md to add acknowledgements
      FEAT: Add support for copy and constructing af.array from another array
      FEAT/TEST: Added indexing and assignment support
      Changing print_array to display
      Adding graphics functions and an example
      Adding support for windows and cygwin
      BUGFIX: Fixing the dimension lengths when negative indices are used
      Adding licensing for examples
      FEAT/TEST: Adding support for getting data back to the host
      FEAT: Adding broadcast to arrayfire
      FEAT: Added the ability to make broadcast a decorator
      Reorganizing the array.py file
      Changes required to work on python2
      Adding parallel range. First step towards GFOR like functionality.
      Add the ability to create af.array from C pointers
      Raise exceptions when calling array.to_* if array is empty
      Merge pull request #21 from FilipeMaia/array_fixes
      Merge pull request #22 from FilipeMaia/array_fixes
      BUGFIX: Using c_void_p instead of c_ulonglong for void *
      STYLE: Changing array class to Array to comply with python style guide
      Capitalizing the class names for Seq, Index, ParallelRange and Cell
      Removing unnecessary backslashes
      Merge remote-tracking branch 'upstream/master' into cleanup
      Merge pull request #23 from pavanky/cleanup
      Merge pull request #25 from FilipeMaia/indexing
      Merge pull request #27 from FilipeMaia/fixes
      Adding setup.py
      BUGFIX: deleting empty arrays was causing segmentation faults
      Updating README to reflect the installation method
      BUGFFIX: in join for num inputs > 2
      Cleaning up variables erraneously assigned to ctypes module
      Making sure indexing operation is not dropping dimensions
      BUGFIX: Comparing ctype ints was causing incorrect implicit types
      Avoid printing backend name during load time
      Adding runtime selection of arrayfire backends using af.backend.set(name)
      Merge pull request #30 from FilipeMaia/magic_functions
      Syle changes and converting util functions to be private
      Adding documentation for __init__.py
      Adding documentation for algorithm.py
      Adding documentation for arith.py
      Adding documentation for array.py
      STYLE: Use Python Enum instead of ctypes.c_int for enums
      Adding documentation for base.py and blas.py
      Adding documentation for bcast.py
      Adding documentation for data.py
      Adding documentation for device.py and features.py
      Documentation and bug fixes for graphics.py
      Adding documentation for image.py
      Moving functions to array.py to fix bugs and cleanup
      Adding documentation for index.py
      Adding documentation for lapack.py
      Adding documentation for library.py
      Adding documentation for signal.py
      Merge pull request #33 from FilipeMaia/base_array_fix
      Work around for missing Enum class
      BUGFIX: indexing with boolean arrays
      Implement a cleaner way for the Enum class
      Merge pull request #36 from FilipeMaia/index_destructor
      Removing unnecessary deletes
      TESTS: Reorganizing the tests folder for easier testing
      FEAT/TEST: Adding function to call garbage collector
      Updating the version number
      Updating README to reflect the pip install method
      Updating master to point to depend on 3.1 branch of arrayfire
      Merge pull request #38 from syurkevi/minor_fixes
      Merge pull request #43 from FilipeMaia/boolean_setitem
      Merge pull request #44 from FilipeMaia/master
      Add proper logging to tests when in verbose mode
      Adding support for replacing nan values for reductions
      FEAT: Adding sigmoid function
      FEAT: adding select and replace
      Fixing af.display to take precision digits as parameter
      Adding Array.__repr__
      FEAT: Adding the ability to get, lock, and unlock raw device pointers
      DOC: Adding missing documentation for vision.py
      FEAT: adding vision functions.
      FEAT: adding new image processing functions from 3.1
      BUGFIX: af.display now properly displays the expression
      FEAT: Adding new functions: inplace, r2c and c2r ffts.
      FEAT: Adding SVD
      FEAT: Adding support for arrays to save to and read from disk
      Updating README.mdx
      FEAT: Adding interop module
      A minor improvement to np_to_af_array
      Updating version numer to 3.1.20151111
      Add author information
      Add author information
      Updating version information
      Adding new enums from arrayfire 3.2
      FEAT: Adding new vision functions from arrayfire 3.2
      FEAT: Adding native image loading and saving from arrayfire 3.2
      FEAT: Adding graphics functions from arrayfire 3.2
      FEAT: Changes to use the unified backend from arrayfire when available
      Moving examples into their own folders
      Adding benchmark examples
      Adding the ability to switch devices for monte_carlo_pi example
      Fixing bug in graphics/plot3
      Fixing bug in surface. Also adding relevant example.
      Adding conway example
      FEAT: add missing eval function
      Example: Adding fractal example
      Adding histogram example to arrayfire
      Updating helloworld example
      Adding black scholes example
      Adding monte carlo option pricing example
      FEAT: Adding timeit function
      Modifying eval to take multiple parameters
      FEAT: Adding .as_type  method to Array class
      Fixing timeit to work with python2
      Changing number of iterations in black scholes example
      FEAT: Adding separable convolution for 2D images
      Adding convolve example
      BUGFIX: Removing buggy typecodes and use to_typecode
      Adding intro to arrayfire example
      Minor change to the output of repr
      Using as_type instead of af.cast in examples
      FEAT: Adding init function to ease interop with other libraries
      Cleaning up interop.py
      Adding functions specific to CUDA backend
      Functions specific to opencl backend
      Committing the changelog
      Updating version number to 3.2.20151211
      Changing version to depend on development version of arrayfire
      Merge branch 'v3.1'
      Merge remote-tracking branch v3.2
      Updating README.md to reflect post install options
      Updating install instructions from master to devel
      Updating README.md to reflect post install options
      Updating install instructions from master to devel
      Updating the error message when arrayfire libraries isn't found
      Adding default search paths
      Fixing bug in get_version()
      Adding af.info_str() function that mimics af.info()
      Fixing an issue with set_device in tests
      Updating CHANGELOG and the version number
      Merge pull request #53 from arrayfire/v3.2
      Merge branch 'master' into devel
      Changing the test framework to be verbose on FAIL and exit with 1
      Change tests to pass on windows
      Updated README with jenkins status icons
      Cleaning up the status section of README.md
      Minor changes to test status tables
      Minor change to packaging
      Set the AF_PATH to one of known paths if none is found
      Minor fixes to Heston model example to reduce memory footprint
      Updating version number
      Updating Changelog
      Merge pull request #58 from shehzan10/devel
      Merge pull request #61 from FilipeMaia/internals
      Merge pull request #62 from bergkoet/hotfix
      Fixing a test which was double freeing the data
      FEAT: Adding new graphics functions from 3.3
      Changing deprecated functions
      FEAT: Functions to allocate and free memory on host, device
      Functions to check if arrayfire has imageio and lapack support
      FEAT: Adding functions to query device and active backends
      Function to get the current revision of arrayfire
      BUGFIX: Append SO names to the full library path
      Merge pull request #66 from FilipeMaia/enum_fix
      BUGFIX: Fixes to image processing functions.
      RuntimeError now prints the proper error message from arrayfire
      Adding function to interop with pycuda
      FEAT: Adding functions to interact with other opencl libraries
      Cleaning up interop.py
      Adding interop functionality with pyopencl
      Adding a simple "to_array" function to ease interoperability
      BUGFIX: Fixing issues with boolean indexing
      Updating Changelog
      Updating CHANGELOG for 3.3 release
      Merge branch 'devel' for 3.3 release
      BUGFIX: Fixing bug for 32 bit architectures
      BUGFIX: Fixing the bug in constant for 64 bit int types
      Changing setup.py to avoid conflicts between master and devel
      Updating master tag for release
      Updated changelog
      BUGFIX installer: Add missing comma

Shehzan Mohammed (3):
      Suppress missing dll warnings on windows
      Fixing types in arith test
      Add OSX status badge to readme

syurkevi (2):
      README reorganization and minor typos
      fix missing console output from interactive python interpreter

-----------------------------------------------------------------------

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/python-arrayfire.git



More information about the debian-science-commits mailing list