[arrayfire] 01/08: Merge tag 'upstream/v3.2.2+dfsg1' into debian/sid

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Wed Jan 6 07:53:58 UTC 2016


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

ghisvail-guest pushed a commit to branch debian/sid
in repository arrayfire.

commit eab3b7b86c9cae2b043efca2e6003b64d347f375
Merge: 8f24455 25a2a75
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date:   Mon Jan 4 18:10:34 2016 +0000

    Merge tag 'upstream/v3.2.2+dfsg1' into debian/sid
    
    Upstream version v3.2.2+dfsg1

 .gitignore                                         |   1 +
 CMakeLists.txt                                     |  10 ++
 CMakeModules/FindCBLAS.cmake                       |  52 ++++-----
 CMakeModules/FindLAPACKE.cmake                     |   6 +-
 CMakeModules/MinBuildTime.cmake                    |  93 ++++++++++++++++
 CMakeModules/Version.cmake                         |   7 +-
 CMakeModules/build_clBLAS.cmake                    |   6 +-
 CMakeModules/build_clFFT.cmake                     |   6 +-
 CMakeModules/build_forge.cmake                     |   2 +-
 CMakeModules/version.h.in                          |   2 -
 .../cpu/err_cpu.hpp => CMakeModules/version.hpp.in |   7 +-
 docs/arrayfire.css                                 |   5 +
 docs/details/backend.dox                           |   9 ++
 docs/pages/release_notes.md                        |  75 +++++++++++++
 examples/CMakeLists.txt                            |  10 +-
 examples/benchmarks/blas.cpp                       |  13 +--
 examples/benchmarks/fft.cpp                        |   7 --
 examples/benchmarks/pi.cpp                         |   7 --
 examples/financial/black_scholes_options.cpp       |   9 +-
 examples/financial/heston_model.cpp                |   1 +
 examples/getting_started/convolve.cpp              |   7 --
 examples/getting_started/integer.cpp               |   7 --
 examples/getting_started/rainfall.cpp              |   7 --
 examples/getting_started/vectorize.cpp             |   8 +-
 examples/graphics/conway.cpp                       |   9 --
 examples/graphics/conway_pretty.cpp                |  11 +-
 examples/graphics/fractal.cpp                      |   8 +-
 examples/graphics/histogram.cpp                    |   9 --
 examples/graphics/plot2d.cpp                       |   9 --
 examples/graphics/plot3.cpp                        |  14 +--
 examples/graphics/surface.cpp                      |  29 ++---
 examples/helloworld/helloworld.cpp                 |   8 +-
 .../image_processing/adaptive_thresholding.cpp     |  10 +-
 examples/image_processing/binary_thresholding.cpp  |   8 --
 examples/image_processing/brain_segmentation.cpp   |   1 +
 examples/image_processing/edge.cpp                 |   5 +-
 examples/image_processing/filters.cpp              |  26 ++---
 examples/image_processing/image_demo.cpp           |   5 +-
 examples/image_processing/image_editing.cpp        |   8 --
 examples/image_processing/morphing.cpp             |   5 +-
 examples/image_processing/optical_flow.cpp         |   7 --
 examples/image_processing/pyramids.cpp             |   5 +-
 examples/lin_algebra/cholesky.cpp                  |   7 --
 examples/lin_algebra/lu.cpp                        |   7 --
 examples/lin_algebra/qr.cpp                        |   7 --
 examples/lin_algebra/svd.cpp                       |   7 --
 examples/machine_learning/bagging.cpp              |   1 +
 examples/machine_learning/deep_belief_net.cpp      |   1 +
 examples/machine_learning/kmeans.cpp               |   2 +
 examples/machine_learning/knn.cpp                  |   1 +
 examples/machine_learning/logistic_regression.cpp  |   1 +
 examples/machine_learning/naive_bayes.cpp          |   1 +
 examples/machine_learning/neural_network.cpp       |   1 +
 examples/machine_learning/perceptron.cpp           |   1 +
 examples/machine_learning/rbm.cpp                  |   1 +
 examples/machine_learning/softmax_regression.cpp   |   1 +
 examples/pde/swe.cpp                               |   1 +
 examples/unified/basic.cpp                         |   8 --
 include/af/arith.h                                 |   2 +-
 include/af/array.h                                 |   2 +-
 include/af/data.h                                  |  12 +-
 include/af/graphics.h                              |   4 +-
 include/af/macros.h                                |  60 ++++++++++
 src/api/c/colorspace.cpp                           |  63 ++++++-----
 src/api/c/err_common.cpp                           |  84 ++++++++------
 src/api/c/err_common.hpp                           | 122 ++++++++++++++-------
 src/api/c/graphics_common.hpp                      |   6 +-
 src/api/c/hist.cpp                                 |   2 +-
 src/api/c/image.cpp                                |  18 +--
 src/api/c/imageio.cpp                              |  17 ++-
 src/api/c/imageio2.cpp                             |   8 +-
 src/api/c/plot.cpp                                 |   2 +-
 src/api/c/plot3.cpp                                |   2 +-
 src/api/c/print.cpp                                |  24 ++--
 src/api/c/surface.cpp                              |   2 +-
 src/api/cpp/array.cpp                              |  10 +-
 src/api/cpp/error.hpp                              |  12 +-
 src/api/cpp/gfor.cpp                               |   2 +-
 src/api/cpp/seq.cpp                                |   4 +-
 src/api/cpp/where.cpp                              |   2 +-
 src/api/unified/data.cpp                           |   6 +-
 src/api/unified/symbol_manager.cpp                 |  47 +++++++-
 src/api/unified/symbol_manager.hpp                 |   2 +-
 src/backend/cpu/err_cpu.hpp                        |   5 +-
 src/backend/cpu/platform.cpp                       |   5 +-
 src/backend/cpu/random.cpp                         |   2 +-
 src/backend/cuda/err_cuda.hpp                      |   3 +-
 src/backend/cuda/kernel/homography.hpp             |  45 +++++---
 src/backend/cuda/kernel/identity.hpp               |  17 +--
 src/backend/cuda/kernel/random.hpp                 | 108 +++++++++++++-----
 src/backend/cuda/platform.cpp                      |  26 ++++-
 src/backend/cuda/random.cu                         |  10 +-
 src/backend/defines.hpp                            |  24 +++-
 src/backend/opencl/err_opencl.hpp                  |   5 +-
 src/backend/opencl/magma/labrd.cpp                 | 119 ++++++++++----------
 src/backend/opencl/magma/magma_cpu_blas.h          |  31 ++++--
 src/backend/opencl/platform.cpp                    |   1 +
 test/CMakeLists.txt                                |  38 +++++--
 test/backend.cpp                                   |  66 +++++++++++
 test/bilateral.cpp                                 |   1 +
 test/cholesky_dense.cpp                            |   1 +
 test/fast.cpp                                      |   2 +
 test/harris.cpp                                    |   2 +
 test/homography.cpp                                |   3 +
 test/imageio.cpp                                   |  12 ++
 test/info.cpp                                      |  25 +----
 test/inverse_dense.cpp                             |   1 +
 test/lu_dense.cpp                                  |   3 +
 test/meanshift.cpp                                 |   2 +
 test/medfilt.cpp                                   |   1 +
 test/morph.cpp                                     |   2 +
 test/orb.cpp                                       |   2 +
 test/qr_dense.cpp                                  |   2 +
 test/rank_dense.cpp                                |   7 ++
 test/replace.cpp                                   |  22 +++-
 test/select.cpp                                    |  20 +++-
 test/solve_dense.cpp                               |   6 +
 test/susan.cpp                                     |   1 +
 test/svd_dense.cpp                                 |   1 +
 test/testHelpers.hpp                               |  35 ++++++
 120 files changed, 1108 insertions(+), 645 deletions(-)

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



More information about the debian-science-commits mailing list