[python-arrayfire] branch master updated (619de82 -> 7cec9c8)
Ghislain Vaillant
ghisvail-guest at moszumanska.debian.org
Wed Sep 28 13:57:02 UTC 2016
This is an automated email from the git hooks/post-receive script.
ghisvail-guest pushed a change to branch master
in repository python-arrayfire.
from 619de82 Fixing setup.py
new 92068a8 Ensure arrayfire is called in infix operations with numpy
new 149cdcb Merge pull request #71 from FilipeMaia/array_priority
new aa5ca57 Merge branch 'master' into devel
new ca848fa Updating devel version
new 363fbd1 Merge branch 'master' into devel
new 06aa0d6 Fixing link in README for installing devel version
new 7c134f3 Adding Linux on ARM build status
new 9e32b6e Contribute numpy example.
new 2baa648 Fixes to monte carlo example
new d051a34 Merge pull request #79 from drufat/numpy
new 1b5a8d3 Merge remote-tracking branch 'origin/master' into devel
new ed52b90 Add numpy benchmarks to fft and blas.
new cb8fdcf Merge branch 'master' into devel
new 2b8257a Merge branch 'master' into devel
new 2efb2ad Fixing mistake in documentation
new 2851540 Add support for short types
new 7a79ae7 Merge branch 'master' into devel
new 6c21056 Merge branch 'master' into devel
new 084f7c3 Fixing bug in setup.py
new 0081fe9 Adding delimiters to functions in documentation
new af9854a Another minor change to style.css
new b65abb1 Add self as parameter to all methods of class Feature
new af52c64 Merge pull request #93 from lukasbindreiter/features-fix
new 726605c BUGFIX: array.H() now calls af_transpose with proper options
new 7b30010 BUGFIX: Fixing typo in QR (was calling af_lu instead)
new 2196fe5 BUGFIX: Fix conversion between numpy and arrayfire arrays
new 3537d10 Merge pull request #94 from arrayfire/bug-fixes
new fb73d7e Corrected 'set_backend' command in readme.
new 242bf1c Merge pull request #95 from dela3499/patch-1
new 0002f8d Fix standalone tests module.
new ce7816b Merge pull request #97 from ghisvail/fix/standalone-tests
new da596b0 Moving tests to be part of the arrayfire module
new 135b6d5 Updating setup.py to reflect package structure
new a796a89 initial v34 api additions to python wrapper
new 204d900 Cleaning up scan, scan_by_key and moments
new 4880355 Adding tests for scan and scan_by_key
new bdfed50 Add missing enums from arrayfire 3.4 release
new 596951d FEAT: Adding clamp function and relevant tests
new d8db269 Check and load a functional backend
new 2f8503d Check if arrayfire can be run immediately after loading the library
new 7594769 Adding functions from array.h and device.h
new fe18684 Adding random engine class and relavent methods
new 208465d Adding medfilt1 and medfilt2 and necessary tests
new ef44a7a Adding new graphics functions from v3.4
new 4b3369f Adding get_size_of
new 85465c2 Fixing bugs in random and random tests
new 3637f58 Adding functions to create and manipulate sparse matrices
new 8b3aea1 Merge pull request #99 from arrayfire/features_3.4
new a79ccc5 Changing Tegra K1 badge to Tegra X1
new 5f8dce0 Alias ctypes data types to custom data types
new 64fb62e Cleaning up Index
new 300c7d0 Changing setup.py and README.md
new 48d1ffb Changing sparse* functions to create_sparse*
new 3f1d3ab Updating changes to reflect new documentation
new a9fec06 Workaround for upstream bug
new 17e9179 Updating Changelog
new 7935ed9 Fixing bug in graphics documentation
new 7cec9c8 Updating release version
The 58 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
CHANGELOG.md | 54 ++++
README.md | 11 +-
__af_version__.py | 4 +-
arrayfire/__init__.py | 4 +-
arrayfire/algorithm.py | 119 +++++++--
arrayfire/arith.py | 48 +++-
arrayfire/array.py | 195 +++++++-------
arrayfire/base.py | 2 +-
arrayfire/blas.py | 10 +-
arrayfire/cuda.py | 8 +-
arrayfire/data.py | 142 ++--------
arrayfire/device.py | 152 ++++++++---
arrayfire/features.py | 30 ++-
arrayfire/graphics.py | 289 +++++++++++++++++----
arrayfire/image.py | 164 ++++++------
arrayfire/index.py | 58 +++--
arrayfire/interop.py | 16 +-
arrayfire/lapack.py | 47 ++--
arrayfire/library.py | 117 +++++++--
arrayfire/opencl.py | 20 +-
arrayfire/random.py | 232 +++++++++++++++++
arrayfire/signal.py | 165 +++++++++---
arrayfire/sparse.py | 275 ++++++++++++++++++++
arrayfire/statistics.py | 54 ++--
__af_version__.py => arrayfire/tests/__init__.py | 6 -
{tests => arrayfire/tests}/__main__.py | 4 +-
{tests => arrayfire/tests}/simple/__init__.py | 2 +
{tests => arrayfire/tests}/simple/_util.py | 0
{tests => arrayfire/tests}/simple/algorithm.py | 8 +
{tests => arrayfire/tests}/simple/arith.py | 5 +
{tests => arrayfire/tests}/simple/array_test.py | 2 +
{tests => arrayfire/tests}/simple/blas.py | 0
{tests => arrayfire/tests}/simple/data.py | 10 -
{tests => arrayfire/tests}/simple/device.py | 19 ++
{tests => arrayfire/tests}/simple/image.py | 0
{tests => arrayfire/tests}/simple/index.py | 0
{tests => arrayfire/tests}/simple/lapack.py | 0
arrayfire/tests/simple/random.py | 38 +++
{tests => arrayfire/tests}/simple/signal.py | 4 +
.../blas.py => arrayfire/tests/simple/sparse.py | 21 +-
{tests => arrayfire/tests}/simple/statistics.py | 0
{tests => arrayfire/tests}/simple_tests.py | 4 +-
arrayfire/util.py | 36 +--
arrayfire/vision.py | 42 +--
docs/_static/style.css | 3 +
docs/_templates/page.html | 3 +
...arrayfire.features.rst => arrayfire.random.rst} | 4 +-
docs/arrayfire.rst | 4 +-
...arrayfire.features.rst => arrayfire.sparse.rst} | 4 +-
examples/benchmarks/bench_blas.py | 57 +++-
examples/benchmarks/bench_fft.py | 60 +++--
examples/benchmarks/monte_carlo_pi.py | 25 +-
setup.py | 7 +-
53 files changed, 1892 insertions(+), 692 deletions(-)
create mode 100644 arrayfire/random.py
create mode 100644 arrayfire/sparse.py
copy __af_version__.py => arrayfire/tests/__init__.py (77%)
rename {tests => arrayfire/tests}/__main__.py (94%)
rename {tests => arrayfire/tests}/simple/__init__.py (93%)
rename {tests => arrayfire/tests}/simple/_util.py (100%)
rename {tests => arrayfire/tests}/simple/algorithm.py (89%)
rename {tests => arrayfire/tests}/simple/arith.py (97%)
rename {tests => arrayfire/tests}/simple/array_test.py (98%)
copy {tests => arrayfire/tests}/simple/blas.py (100%)
rename {tests => arrayfire/tests}/simple/data.py (86%)
rename {tests => arrayfire/tests}/simple/device.py (77%)
rename {tests => arrayfire/tests}/simple/image.py (100%)
rename {tests => arrayfire/tests}/simple/index.py (100%)
rename {tests => arrayfire/tests}/simple/lapack.py (100%)
create mode 100644 arrayfire/tests/simple/random.py
rename {tests => arrayfire/tests}/simple/signal.py (96%)
rename tests/simple/blas.py => arrayfire/tests/simple/sparse.py (53%)
rename {tests => arrayfire/tests}/simple/statistics.py (100%)
rename {tests => arrayfire/tests}/simple_tests.py (90%)
create mode 100644 docs/_static/style.css
create mode 100644 docs/_templates/page.html
copy docs/{arrayfire.features.rst => arrayfire.random.rst} (57%)
copy docs/{arrayfire.features.rst => arrayfire.sparse.rst} (57%)
--
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