nmatrix-fftw 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ext/nmatrix/data/complex.h +388 -0
- data/ext/nmatrix/data/data.h +652 -0
- data/ext/nmatrix/data/meta.h +64 -0
- data/ext/nmatrix/data/ruby_object.h +389 -0
- data/ext/nmatrix/math/asum.h +120 -0
- data/ext/nmatrix/math/cblas_enums.h +36 -0
- data/ext/nmatrix/math/cblas_templates_core.h +507 -0
- data/ext/nmatrix/math/gemm.h +241 -0
- data/ext/nmatrix/math/gemv.h +178 -0
- data/ext/nmatrix/math/getrf.h +255 -0
- data/ext/nmatrix/math/getrs.h +121 -0
- data/ext/nmatrix/math/imax.h +79 -0
- data/ext/nmatrix/math/laswp.h +165 -0
- data/ext/nmatrix/math/long_dtype.h +49 -0
- data/ext/nmatrix/math/math.h +745 -0
- data/ext/nmatrix/math/nrm2.h +160 -0
- data/ext/nmatrix/math/rot.h +117 -0
- data/ext/nmatrix/math/rotg.h +106 -0
- data/ext/nmatrix/math/scal.h +71 -0
- data/ext/nmatrix/math/trsm.h +332 -0
- data/ext/nmatrix/math/util.h +148 -0
- data/ext/nmatrix/nm_memory.h +60 -0
- data/ext/nmatrix/nmatrix.h +438 -0
- data/ext/nmatrix/ruby_constants.h +106 -0
- data/ext/nmatrix/storage/common.h +177 -0
- data/ext/nmatrix/storage/dense/dense.h +129 -0
- data/ext/nmatrix/storage/list/list.h +138 -0
- data/ext/nmatrix/storage/storage.h +99 -0
- data/ext/nmatrix/storage/yale/class.h +1139 -0
- data/ext/nmatrix/storage/yale/iterators/base.h +143 -0
- data/ext/nmatrix/storage/yale/iterators/iterator.h +131 -0
- data/ext/nmatrix/storage/yale/iterators/row.h +450 -0
- data/ext/nmatrix/storage/yale/iterators/row_stored.h +140 -0
- data/ext/nmatrix/storage/yale/iterators/row_stored_nd.h +169 -0
- data/ext/nmatrix/storage/yale/iterators/stored_diagonal.h +124 -0
- data/ext/nmatrix/storage/yale/math/transpose.h +110 -0
- data/ext/nmatrix/storage/yale/yale.h +203 -0
- data/ext/nmatrix/types.h +55 -0
- data/ext/nmatrix/util/io.h +115 -0
- data/ext/nmatrix/util/sl_list.h +144 -0
- data/ext/nmatrix/util/util.h +78 -0
- data/ext/nmatrix_fftw/extconf.rb +122 -0
- data/ext/nmatrix_fftw/nmatrix_fftw.cpp +274 -0
- data/lib/nmatrix/fftw.rb +343 -0
- data/spec/00_nmatrix_spec.rb +736 -0
- data/spec/01_enum_spec.rb +190 -0
- data/spec/02_slice_spec.rb +389 -0
- data/spec/03_nmatrix_monkeys_spec.rb +78 -0
- data/spec/2x2_dense_double.mat +0 -0
- data/spec/4x4_sparse.mat +0 -0
- data/spec/4x5_dense.mat +0 -0
- data/spec/blas_spec.rb +193 -0
- data/spec/elementwise_spec.rb +303 -0
- data/spec/homogeneous_spec.rb +99 -0
- data/spec/io/fortran_format_spec.rb +88 -0
- data/spec/io/harwell_boeing_spec.rb +98 -0
- data/spec/io/test.rua +9 -0
- data/spec/io_spec.rb +149 -0
- data/spec/lapack_core_spec.rb +482 -0
- data/spec/leakcheck.rb +16 -0
- data/spec/math_spec.rb +807 -0
- data/spec/nmatrix_yale_resize_test_associations.yaml +2802 -0
- data/spec/nmatrix_yale_spec.rb +286 -0
- data/spec/plugins/fftw/fftw_spec.rb +348 -0
- data/spec/rspec_monkeys.rb +56 -0
- data/spec/rspec_spec.rb +34 -0
- data/spec/shortcuts_spec.rb +310 -0
- data/spec/slice_set_spec.rb +157 -0
- data/spec/spec_helper.rb +149 -0
- data/spec/stat_spec.rb +203 -0
- data/spec/test.pcd +20 -0
- data/spec/utm5940.mtx +83844 -0
- metadata +151 -0
metadata
ADDED
@@ -0,0 +1,151 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: nmatrix-fftw
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Sameer Deshmukh
|
8
|
+
- Magdalen Berns
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2016-01-18 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: nmatrix
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - '='
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 0.2.1
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - '='
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 0.2.1
|
28
|
+
description: NMatrix extension for using fuctions provided by FFTW
|
29
|
+
email:
|
30
|
+
- sameer.deshmukh93@gmail.com
|
31
|
+
- m.berns@thismagpie.com
|
32
|
+
executables: []
|
33
|
+
extensions:
|
34
|
+
- ext/nmatrix_fftw/extconf.rb
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- ext/nmatrix/data/complex.h
|
38
|
+
- ext/nmatrix/data/data.h
|
39
|
+
- ext/nmatrix/data/meta.h
|
40
|
+
- ext/nmatrix/data/ruby_object.h
|
41
|
+
- ext/nmatrix/math/asum.h
|
42
|
+
- ext/nmatrix/math/cblas_enums.h
|
43
|
+
- ext/nmatrix/math/cblas_templates_core.h
|
44
|
+
- ext/nmatrix/math/gemm.h
|
45
|
+
- ext/nmatrix/math/gemv.h
|
46
|
+
- ext/nmatrix/math/getrf.h
|
47
|
+
- ext/nmatrix/math/getrs.h
|
48
|
+
- ext/nmatrix/math/imax.h
|
49
|
+
- ext/nmatrix/math/laswp.h
|
50
|
+
- ext/nmatrix/math/long_dtype.h
|
51
|
+
- ext/nmatrix/math/math.h
|
52
|
+
- ext/nmatrix/math/nrm2.h
|
53
|
+
- ext/nmatrix/math/rot.h
|
54
|
+
- ext/nmatrix/math/rotg.h
|
55
|
+
- ext/nmatrix/math/scal.h
|
56
|
+
- ext/nmatrix/math/trsm.h
|
57
|
+
- ext/nmatrix/math/util.h
|
58
|
+
- ext/nmatrix/nm_memory.h
|
59
|
+
- ext/nmatrix/nmatrix.h
|
60
|
+
- ext/nmatrix/ruby_constants.h
|
61
|
+
- ext/nmatrix/storage/common.h
|
62
|
+
- ext/nmatrix/storage/dense/dense.h
|
63
|
+
- ext/nmatrix/storage/list/list.h
|
64
|
+
- ext/nmatrix/storage/storage.h
|
65
|
+
- ext/nmatrix/storage/yale/class.h
|
66
|
+
- ext/nmatrix/storage/yale/iterators/base.h
|
67
|
+
- ext/nmatrix/storage/yale/iterators/iterator.h
|
68
|
+
- ext/nmatrix/storage/yale/iterators/row.h
|
69
|
+
- ext/nmatrix/storage/yale/iterators/row_stored.h
|
70
|
+
- ext/nmatrix/storage/yale/iterators/row_stored_nd.h
|
71
|
+
- ext/nmatrix/storage/yale/iterators/stored_diagonal.h
|
72
|
+
- ext/nmatrix/storage/yale/math/transpose.h
|
73
|
+
- ext/nmatrix/storage/yale/yale.h
|
74
|
+
- ext/nmatrix/types.h
|
75
|
+
- ext/nmatrix/util/io.h
|
76
|
+
- ext/nmatrix/util/sl_list.h
|
77
|
+
- ext/nmatrix/util/util.h
|
78
|
+
- ext/nmatrix_fftw/extconf.rb
|
79
|
+
- ext/nmatrix_fftw/nmatrix_fftw.cpp
|
80
|
+
- lib/nmatrix/fftw.rb
|
81
|
+
- spec/00_nmatrix_spec.rb
|
82
|
+
- spec/01_enum_spec.rb
|
83
|
+
- spec/02_slice_spec.rb
|
84
|
+
- spec/03_nmatrix_monkeys_spec.rb
|
85
|
+
- spec/2x2_dense_double.mat
|
86
|
+
- spec/4x4_sparse.mat
|
87
|
+
- spec/4x5_dense.mat
|
88
|
+
- spec/blas_spec.rb
|
89
|
+
- spec/elementwise_spec.rb
|
90
|
+
- spec/homogeneous_spec.rb
|
91
|
+
- spec/io/fortran_format_spec.rb
|
92
|
+
- spec/io/harwell_boeing_spec.rb
|
93
|
+
- spec/io/test.rua
|
94
|
+
- spec/io_spec.rb
|
95
|
+
- spec/lapack_core_spec.rb
|
96
|
+
- spec/leakcheck.rb
|
97
|
+
- spec/math_spec.rb
|
98
|
+
- spec/nmatrix_yale_resize_test_associations.yaml
|
99
|
+
- spec/nmatrix_yale_spec.rb
|
100
|
+
- spec/plugins/fftw/fftw_spec.rb
|
101
|
+
- spec/rspec_monkeys.rb
|
102
|
+
- spec/rspec_spec.rb
|
103
|
+
- spec/shortcuts_spec.rb
|
104
|
+
- spec/slice_set_spec.rb
|
105
|
+
- spec/spec_helper.rb
|
106
|
+
- spec/stat_spec.rb
|
107
|
+
- spec/test.pcd
|
108
|
+
- spec/utm5940.mtx
|
109
|
+
homepage: http://sciruby.com
|
110
|
+
licenses:
|
111
|
+
- BSD 3-clause
|
112
|
+
metadata: {}
|
113
|
+
post_install_message:
|
114
|
+
rdoc_options: []
|
115
|
+
require_paths:
|
116
|
+
- lib
|
117
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '1.9'
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - ">="
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '0'
|
127
|
+
requirements: []
|
128
|
+
rubyforge_project:
|
129
|
+
rubygems_version: 2.4.5
|
130
|
+
signing_key:
|
131
|
+
specification_version: 4
|
132
|
+
summary: FFTW backend for nmatrix
|
133
|
+
test_files:
|
134
|
+
- spec/00_nmatrix_spec.rb
|
135
|
+
- spec/01_enum_spec.rb
|
136
|
+
- spec/02_slice_spec.rb
|
137
|
+
- spec/03_nmatrix_monkeys_spec.rb
|
138
|
+
- spec/blas_spec.rb
|
139
|
+
- spec/elementwise_spec.rb
|
140
|
+
- spec/homogeneous_spec.rb
|
141
|
+
- spec/io/fortran_format_spec.rb
|
142
|
+
- spec/io/harwell_boeing_spec.rb
|
143
|
+
- spec/io_spec.rb
|
144
|
+
- spec/lapack_core_spec.rb
|
145
|
+
- spec/math_spec.rb
|
146
|
+
- spec/nmatrix_yale_spec.rb
|
147
|
+
- spec/rspec_spec.rb
|
148
|
+
- spec/shortcuts_spec.rb
|
149
|
+
- spec/slice_set_spec.rb
|
150
|
+
- spec/stat_spec.rb
|
151
|
+
- spec/plugins/fftw/fftw_spec.rb
|