[DRE-commits] [ruby-nmatrix] 01/04: Merge tag 'upstream/0.1.0_rc1'

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 commit to branch master
in repository ruby-nmatrix.

commit e82eeddd20f818fcd916471f8da53aca31255e1f
Merge: af38229 78eb581
Author: Cédric Boutillier <boutil at debian.org>
Date:   Sun Jan 12 11:02:55 2014 +0100

    Merge tag 'upstream/0.1.0_rc1'
    
    Upstream version 0.1.0~rc1
    
    # gpg: Signature faite le dim. 12 janv. 2014 11:02:40 CET avec la clef RSA d'identifiant 8F9F8F09
    # gpg: Bonne signature de « Cédric Boutillier <boutil at debian.org> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at upmc.fr> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at polytechnique.org> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at gmail.com> »

 Gemfile                                            |    1 +
 History.txt                                        |   96 +-
 LICENSE.txt                                        |    4 +-
 README.rdoc                                        |   50 +-
 Rakefile                                           |   48 +-
 checksums.yaml.gz                                  |  Bin 268 -> 270 bytes
 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 +++---
 101 files changed, 4398 insertions(+), 1425 deletions(-)

-- 
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