[DRE-commits] [ruby-nmatrix] branch master updated (af38229 -> 0fe59a5)

Cédric Boutillier boutil at moszumanska.debian.org
Thu Feb 6 14:25:43 UTC 2014


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

boutil pushed a change to branch master
in repository ruby-nmatrix.

      from  af38229   add missing Vcs-* fields
      adds  78eb581   Imported Upstream version 0.1.0~rc1
       new  e82eedd   Merge tag 'upstream/0.1.0_rc1'
       new  a03d20e   Refresh link_lapack_atlas.patch
       new  a69e6dd   Bump Standards-Version to 3.9.5 (no changes needed)
       new  0fe59a5   prepare changelog

The 4 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:
 Gemfile                                            |    1 +
 History.txt                                        |   96 +-
 LICENSE.txt                                        |    4 +-
 README.rdoc                                        |   50 +-
 Rakefile                                           |   48 +-
 checksums.yaml.gz                                  |  Bin 268 -> 270 bytes
 debian/changelog                                   |    9 +-
 debian/control                                     |    2 +-
 debian/patches/link_lapack_atlas.patch             |   17 +-
 ext/nmatrix/data/complex.h                         |    4 +-
 ext/nmatrix/data/data.cpp                          |   78 +-
 ext/nmatrix/data/data.h                            |   96 +-
 ext/nmatrix/data/meta.h                            |    4 +-
 ext/nmatrix/data/rational.h                        |    4 +-
 ext/nmatrix/data/ruby_object.h                     |    4 +-
 ext/nmatrix/extconf.rb                             |  173 +--
 ext/nmatrix/math.cpp                               |   85 +-
 ext/nmatrix/math/asum.h                            |    6 +-
 ext/nmatrix/math/geev.h                            |    4 +-
 ext/nmatrix/math/gemm.h                            |    8 +-
 ext/nmatrix/math/gemv.h                            |    8 +-
 ext/nmatrix/math/ger.h                             |    4 +-
 ext/nmatrix/math/gesdd.h                           |    4 +-
 ext/nmatrix/math/gesvd.h                           |    4 +-
 ext/nmatrix/math/getf2.h                           |    4 +-
 ext/nmatrix/math/getrf.h                           |    4 +-
 ext/nmatrix/math/getri.h                           |    4 +-
 ext/nmatrix/math/getrs.h                           |   10 +-
 ext/nmatrix/math/idamax.h                          |    4 +-
 ext/nmatrix/math/inc.h                             |   18 +-
 ext/nmatrix/math/laswp.h                           |    4 +-
 ext/nmatrix/math/long_dtype.h                      |    4 +-
 ext/nmatrix/math/math.h                            |   26 +-
 ext/nmatrix/math/nrm2.h                            |    6 +-
 ext/nmatrix/math/potrs.h                           |   10 +-
 ext/nmatrix/math/rot.h                             |    4 +-
 ext/nmatrix/math/rotg.h                            |    4 +-
 ext/nmatrix/math/scal.h                            |    4 +-
 ext/nmatrix/math/swap.h                            |    4 +-
 ext/nmatrix/math/trsm.h                            |   10 +-
 ext/nmatrix/nm_memory.h                            |   60 ++
 ext/nmatrix/nmatrix.cpp                            |   60 +-
 ext/nmatrix/nmatrix.h                              |   49 +-
 ext/nmatrix/ruby_constants.cpp                     |    6 +-
 ext/nmatrix/ruby_constants.h                       |    6 +-
 ext/nmatrix/ruby_nmatrix.c                         | 1107 +++++++++++++++++---
 ext/nmatrix/storage/common.cpp                     |    4 +-
 ext/nmatrix/storage/common.h                       |    4 +-
 ext/nmatrix/storage/{ => dense}/dense.cpp          |  353 +++++--
 ext/nmatrix/storage/{ => dense}/dense.h            |   11 +-
 ext/nmatrix/storage/{ => list}/list.cpp            |  615 +++++++++--
 ext/nmatrix/storage/{ => list}/list.h              |   19 +-
 ext/nmatrix/storage/storage.cpp                    |   67 +-
 ext/nmatrix/storage/storage.h                      |    8 +-
 ext/nmatrix/storage/yale/class.h                   |  155 ++-
 ext/nmatrix/storage/yale/iterators/base.h          |    4 +-
 ext/nmatrix/storage/yale/iterators/iterator.h      |    4 +-
 ext/nmatrix/storage/yale/iterators/row.h           |    4 +-
 ext/nmatrix/storage/yale/iterators/row_stored.h    |    4 +-
 ext/nmatrix/storage/yale/iterators/row_stored_nd.h |    7 +-
 .../storage/yale/iterators/stored_diagonal.h       |    4 +-
 ext/nmatrix/storage/yale/math/transpose.h          |    4 +-
 ext/nmatrix/storage/yale/yale.cpp                  |  395 ++++++-
 ext/nmatrix/storage/yale/yale.h                    |   10 +-
 ext/nmatrix/types.h                                |    4 +-
 ext/nmatrix/util/io.cpp                            |   10 +-
 ext/nmatrix/util/io.h                              |    4 +-
 ext/nmatrix/util/sl_list.cpp                       |   67 +-
 ext/nmatrix/util/sl_list.h                         |    6 +-
 ext/nmatrix/util/util.h                            |    4 +-
 lib/nmatrix.rb                                     |    4 +-
 lib/nmatrix/blas.rb                                |    4 +-
 lib/nmatrix/enumerate.rb                           |   23 +-
 lib/nmatrix/io/market.rb                           |    5 +-
 lib/nmatrix/io/mat5_reader.rb                      |    4 +-
 lib/nmatrix/io/mat_reader.rb                       |    4 +-
 lib/nmatrix/lapack.rb                              |   92 +-
 lib/nmatrix/math.rb                                |  233 +++-
 lib/nmatrix/monkeys.rb                             |   26 +-
 lib/nmatrix/nmatrix.rb                             |  403 ++++++-
 lib/nmatrix/nvector.rb                             |   66 +-
 lib/nmatrix/rspec.rb                               |    4 +-
 lib/nmatrix/shortcuts.rb                           |   75 +-
 lib/nmatrix/version.rb                             |   14 +-
 lib/nmatrix/yale_functions.rb                      |    8 +-
 metadata.yml                                       |   30 +-
 nmatrix.gemspec                                    |    9 +-
 scripts/mac-brew-gcc.sh                            |   19 +-
 scripts/mac-mavericks-brew-gcc.sh                  |   22 +
 spec/00_nmatrix_spec.rb                            |  123 ++-
 spec/01_enum_spec.rb                               |   20 +-
 spec/02_slice_spec.rb                              |   14 +-
 spec/blas_spec.rb                                  |    7 +-
 spec/elementwise_spec.rb                           |    7 +-
 spec/io_spec.rb                                    |   44 +-
 spec/lapack_spec.rb                                |  166 ++-
 spec/math_spec.rb                                  |   99 +-
 spec/nmatrix_yale_spec.rb                          |   47 +-
 spec/rspec_monkeys.rb                              |   27 +
 spec/rspec_spec.rb                                 |    4 +-
 spec/shortcuts_spec.rb                             |   15 +-
 spec/slice_set_spec.rb                             |    8 +-
 spec/spec_helper.rb                                |    5 +-
 spec/stat_spec.rb                                  |  332 +++---
 104 files changed, 4409 insertions(+), 1442 deletions(-)
 create mode 100644 ext/nmatrix/nm_memory.h
 rename ext/nmatrix/storage/{ => dense}/dense.cpp (73%)
 rename ext/nmatrix/storage/{ => dense}/dense.h (90%)
 rename ext/nmatrix/storage/{ => list}/list.cpp (65%)
 rename ext/nmatrix/storage/{ => list}/list.h (78%)
 create mode 100644 scripts/mac-mavericks-brew-gcc.sh

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-nmatrix.git



More information about the Pkg-ruby-extras-commits mailing list