pnmatrix 1.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +7 -0
  2. data/ext/nmatrix/binary_format.txt +53 -0
  3. data/ext/nmatrix/data/complex.h +388 -0
  4. data/ext/nmatrix/data/data.cpp +274 -0
  5. data/ext/nmatrix/data/data.h +651 -0
  6. data/ext/nmatrix/data/meta.h +64 -0
  7. data/ext/nmatrix/data/ruby_object.h +386 -0
  8. data/ext/nmatrix/extconf.rb +70 -0
  9. data/ext/nmatrix/math/asum.h +99 -0
  10. data/ext/nmatrix/math/cblas_enums.h +36 -0
  11. data/ext/nmatrix/math/cblas_templates_core.h +507 -0
  12. data/ext/nmatrix/math/gemm.h +241 -0
  13. data/ext/nmatrix/math/gemv.h +178 -0
  14. data/ext/nmatrix/math/getrf.h +255 -0
  15. data/ext/nmatrix/math/getrs.h +121 -0
  16. data/ext/nmatrix/math/imax.h +82 -0
  17. data/ext/nmatrix/math/laswp.h +165 -0
  18. data/ext/nmatrix/math/long_dtype.h +62 -0
  19. data/ext/nmatrix/math/magnitude.h +54 -0
  20. data/ext/nmatrix/math/math.h +751 -0
  21. data/ext/nmatrix/math/nrm2.h +165 -0
  22. data/ext/nmatrix/math/rot.h +117 -0
  23. data/ext/nmatrix/math/rotg.h +106 -0
  24. data/ext/nmatrix/math/scal.h +71 -0
  25. data/ext/nmatrix/math/trsm.h +336 -0
  26. data/ext/nmatrix/math/util.h +162 -0
  27. data/ext/nmatrix/math.cpp +1368 -0
  28. data/ext/nmatrix/nm_memory.h +60 -0
  29. data/ext/nmatrix/nmatrix.cpp +285 -0
  30. data/ext/nmatrix/nmatrix.h +476 -0
  31. data/ext/nmatrix/ruby_constants.cpp +151 -0
  32. data/ext/nmatrix/ruby_constants.h +106 -0
  33. data/ext/nmatrix/ruby_nmatrix.c +3130 -0
  34. data/ext/nmatrix/storage/common.cpp +77 -0
  35. data/ext/nmatrix/storage/common.h +183 -0
  36. data/ext/nmatrix/storage/dense/dense.cpp +1096 -0
  37. data/ext/nmatrix/storage/dense/dense.h +129 -0
  38. data/ext/nmatrix/storage/list/list.cpp +1628 -0
  39. data/ext/nmatrix/storage/list/list.h +138 -0
  40. data/ext/nmatrix/storage/storage.cpp +730 -0
  41. data/ext/nmatrix/storage/storage.h +99 -0
  42. data/ext/nmatrix/storage/yale/class.h +1139 -0
  43. data/ext/nmatrix/storage/yale/iterators/base.h +143 -0
  44. data/ext/nmatrix/storage/yale/iterators/iterator.h +131 -0
  45. data/ext/nmatrix/storage/yale/iterators/row.h +450 -0
  46. data/ext/nmatrix/storage/yale/iterators/row_stored.h +140 -0
  47. data/ext/nmatrix/storage/yale/iterators/row_stored_nd.h +169 -0
  48. data/ext/nmatrix/storage/yale/iterators/stored_diagonal.h +124 -0
  49. data/ext/nmatrix/storage/yale/math/transpose.h +110 -0
  50. data/ext/nmatrix/storage/yale/yale.cpp +2074 -0
  51. data/ext/nmatrix/storage/yale/yale.h +203 -0
  52. data/ext/nmatrix/types.h +55 -0
  53. data/ext/nmatrix/util/io.cpp +279 -0
  54. data/ext/nmatrix/util/io.h +115 -0
  55. data/ext/nmatrix/util/sl_list.cpp +627 -0
  56. data/ext/nmatrix/util/sl_list.h +144 -0
  57. data/ext/nmatrix/util/util.h +78 -0
  58. data/lib/nmatrix/blas.rb +378 -0
  59. data/lib/nmatrix/cruby/math.rb +744 -0
  60. data/lib/nmatrix/enumerate.rb +253 -0
  61. data/lib/nmatrix/homogeneous.rb +241 -0
  62. data/lib/nmatrix/io/fortran_format.rb +138 -0
  63. data/lib/nmatrix/io/harwell_boeing.rb +221 -0
  64. data/lib/nmatrix/io/market.rb +263 -0
  65. data/lib/nmatrix/io/point_cloud.rb +189 -0
  66. data/lib/nmatrix/jruby/decomposition.rb +24 -0
  67. data/lib/nmatrix/jruby/enumerable.rb +13 -0
  68. data/lib/nmatrix/jruby/error.rb +4 -0
  69. data/lib/nmatrix/jruby/math.rb +501 -0
  70. data/lib/nmatrix/jruby/nmatrix_java.rb +840 -0
  71. data/lib/nmatrix/jruby/operators.rb +283 -0
  72. data/lib/nmatrix/jruby/slice.rb +264 -0
  73. data/lib/nmatrix/lapack_core.rb +181 -0
  74. data/lib/nmatrix/lapack_plugin.rb +44 -0
  75. data/lib/nmatrix/math.rb +953 -0
  76. data/lib/nmatrix/mkmf.rb +100 -0
  77. data/lib/nmatrix/monkeys.rb +137 -0
  78. data/lib/nmatrix/nmatrix.rb +1172 -0
  79. data/lib/nmatrix/rspec.rb +75 -0
  80. data/lib/nmatrix/shortcuts.rb +1163 -0
  81. data/lib/nmatrix/version.rb +39 -0
  82. data/lib/nmatrix/yale_functions.rb +118 -0
  83. data/lib/nmatrix.rb +28 -0
  84. data/spec/00_nmatrix_spec.rb +892 -0
  85. data/spec/01_enum_spec.rb +196 -0
  86. data/spec/02_slice_spec.rb +407 -0
  87. data/spec/03_nmatrix_monkeys_spec.rb +80 -0
  88. data/spec/2x2_dense_double.mat +0 -0
  89. data/spec/4x4_sparse.mat +0 -0
  90. data/spec/4x5_dense.mat +0 -0
  91. data/spec/blas_spec.rb +215 -0
  92. data/spec/elementwise_spec.rb +311 -0
  93. data/spec/homogeneous_spec.rb +100 -0
  94. data/spec/io/fortran_format_spec.rb +88 -0
  95. data/spec/io/harwell_boeing_spec.rb +98 -0
  96. data/spec/io/test.rua +9 -0
  97. data/spec/io_spec.rb +159 -0
  98. data/spec/lapack_core_spec.rb +482 -0
  99. data/spec/leakcheck.rb +16 -0
  100. data/spec/math_spec.rb +1363 -0
  101. data/spec/nmatrix_yale_resize_test_associations.yaml +2802 -0
  102. data/spec/nmatrix_yale_spec.rb +286 -0
  103. data/spec/rspec_monkeys.rb +56 -0
  104. data/spec/rspec_spec.rb +35 -0
  105. data/spec/shortcuts_spec.rb +474 -0
  106. data/spec/slice_set_spec.rb +162 -0
  107. data/spec/spec_helper.rb +172 -0
  108. data/spec/stat_spec.rb +214 -0
  109. data/spec/test.pcd +20 -0
  110. data/spec/utm5940.mtx +83844 -0
  111. metadata +295 -0
@@ -0,0 +1,286 @@
1
+ # = NMatrix
2
+ #
3
+ # A linear algebra library for scientific computation in Ruby.
4
+ # NMatrix is part of SciRuby.
5
+ #
6
+ # NMatrix was originally inspired by and derived from NArray, by
7
+ # Masahiro Tanaka: http://narray.rubyforge.org
8
+ #
9
+ # == Copyright Information
10
+ #
11
+ # SciRuby is Copyright (c) 2010 - 2014, Ruby Science Foundation
12
+ # NMatrix is Copyright (c) 2012 - 2014, John Woods and the Ruby Science Foundation
13
+ #
14
+ # Please see LICENSE.txt for additional copyright notices.
15
+ #
16
+ # == Contributing
17
+ #
18
+ # By contributing source code to SciRuby, you agree to be bound by
19
+ # our Contributor Agreement:
20
+ #
21
+ # * https://github.com/SciRuby/sciruby/wiki/Contributor-Agreement
22
+ #
23
+ # == nmatrix_yale_spec.rb
24
+ #
25
+ # Basic tests for NMatrix's Yale storage type.
26
+ #
27
+ require 'spec_helper'
28
+ require "./lib/nmatrix"
29
+
30
+ describe NMatrix do
31
+ context :yale do
32
+
33
+ it "compares two empty matrices" do
34
+ n = NMatrix.new(4, stype: :yale, dtype: :float64)
35
+ m = NMatrix.new(4, stype: :yale, dtype: :float64)
36
+ expect(n).to eq(m)
37
+ end
38
+
39
+ it "compares two matrices following basic assignments" do
40
+ n = NMatrix.new(2, stype: :yale, dtype: :float64)
41
+ m = NMatrix.new(2, stype: :yale, dtype: :float64)
42
+
43
+ m[0,0] = 1
44
+ m[0,1] = 1
45
+ expect(n).not_to eq(m)
46
+ n[0,0] = 1
47
+ expect(n).not_to eq(m)
48
+ n[0,1] = 1
49
+ expect(n).to eq(m)
50
+ end
51
+
52
+ it "compares two matrices following elementwise operations" do
53
+ n = NMatrix.new(2, stype: :yale, dtype: :float64)
54
+ m = NMatrix.new(2, stype: :yale, dtype: :float64)
55
+ n[0,1] = 1
56
+ m[0,1] = -1
57
+ x = n+m
58
+ expect(n+m).to eq(NMatrix.new(2, 0.0, stype: :yale))
59
+ end
60
+
61
+ it "sets diagonal values" do
62
+ n = NMatrix.new([2,3], stype: :yale, dtype: :float64)
63
+ n.extend(NMatrix::YaleFunctions)
64
+ n[1,1] = 0.1
65
+ n[0,0] = 0.2
66
+ expect(n.yale_d).to eq([0.2, 0.1])
67
+ end
68
+
69
+ it "gets non-diagonal rows as hashes" do
70
+ n = NMatrix.new([4,6], stype: :yale, dtype: :float64)
71
+ n.extend(NMatrix::YaleFunctions)
72
+ n[0,0] = 0.1
73
+ n[0,2] = 0.2
74
+ n[0,3] = 0.3
75
+ n[1,5] = 0.4
76
+ h = n.yale_nd_row(0, :hash)
77
+ expect(h).to eq({2 => 0.2, 3 => 0.3})
78
+ end
79
+
80
+ it "gets non-diagonal occupied column indices for a given row" do
81
+ n = NMatrix.new([4,6], stype: :yale, dtype: :float64)
82
+ n.extend(NMatrix::YaleFunctions)
83
+ n[0,0] = 0.1
84
+ n[0,2] = 0.2
85
+ n[0,3] = 0.3
86
+ n[1,5] = 0.4
87
+ a = n.yale_nd_row(0, :array)
88
+ expect(a).to eq([2,3])
89
+ end
90
+
91
+ it "does not resize until necessary" do
92
+ n = NMatrix.new([2,3], stype: :yale, dtype: :float64)
93
+ n.extend(NMatrix::YaleFunctions)
94
+ expect(n.yale_size).to eq(3)
95
+ expect(n.capacity).to eq(5)
96
+ n[0,0] = 0.1
97
+ n[0,1] = 0.2
98
+ n[1,0] = 0.3
99
+ expect(n.yale_size).to eq(5)
100
+ expect(n.capacity).to eq(5)
101
+ end
102
+
103
+
104
+ it "sets when not resizing" do
105
+ n = NMatrix.new([2,3], stype: :yale, dtype: :float64)
106
+ n.extend(NMatrix::YaleFunctions)
107
+ n[0,0] = 0.1
108
+ n[0,1] = 0.2
109
+ n[1,0] = 0.3
110
+ expect(n.yale_a).to eq([0.1, 0.0, 0.0, 0.2, 0.3])
111
+ expect(n.yale_ija).to eq([3,4,5,1,0])
112
+ end
113
+
114
+ it "sets when resizing" do
115
+ n = NMatrix.new([2,3], stype: :yale, dtype: :float64)
116
+ n.extend(NMatrix::YaleFunctions)
117
+ n[0,0] = 0.01
118
+ n[1,1] = 0.1
119
+ n[0,1] = 0.2
120
+ n[1,0] = 0.3
121
+ n[1,2] = 0.4
122
+ expect(n.yale_d).to eq([0.01, 0.1])
123
+ expect(n.yale_ia).to eq([3,4,6])
124
+ expect(n.yale_ja).to eq([1,0,2,nil])
125
+ expect(n.yale_lu).to eq([0.2, 0.3, 0.4, nil])
126
+ end
127
+
128
+ it "resizes without erasing values" do
129
+ require 'yaml'
130
+
131
+ associations = File.open('spec/nmatrix_yale_resize_test_associations.yaml') { |y| YAML::load(y) }
132
+
133
+ n = NMatrix.new([618,2801], stype: :yale, dtype: :byte, capacity: associations.size)
134
+ #n = NMatrix.new(:yale, [618, 2801], associations.size, :byte)
135
+
136
+ associations.each_pair do |j,i|
137
+ n[i,j] = 1
138
+ expect(n[i,j]).to be(1), "Value at #{i},#{j} not inserted correctly!"
139
+ end
140
+
141
+ associations.each_pair do |j,i|
142
+ expect(n[i,j]).to be(1), "Value at #{i},#{j} erased during resize!"
143
+ end
144
+ end
145
+
146
+ it "sets values within rows" do
147
+ n = NMatrix.new([3,20], stype: :yale, dtype: :float64)
148
+ n.extend(NMatrix::YaleFunctions)
149
+ n[2,1] = 1.0
150
+ n[2,0] = 1.5
151
+ n[2,15] = 2.0
152
+ expect(n.yale_lu).to eq([1.5, 1.0, 2.0])
153
+ expect(n.yale_ja).to eq([0, 1, 15])
154
+ end
155
+
156
+ it "gets values within rows" do
157
+ n = NMatrix.new([3,20], stype: :yale, dtype: :float64)
158
+ n[2,1] = 1.0
159
+ n[2,0] = 1.5
160
+ n[2,15] = 2.0
161
+ expect(n[2,1]).to eq(1.0)
162
+ expect(n[2,0]).to eq(1.5)
163
+ expect(n[2,15]).to eq(2.0)
164
+ end
165
+
166
+ it "sets values within large rows" do
167
+ n = NMatrix.new([10,300], stype: :yale, dtype: :float64)
168
+ n.extend(NMatrix::YaleFunctions)
169
+ n[5,1] = 1.0
170
+ n[5,0] = 1.5
171
+ n[5,15] = 2.0
172
+ n[5,291] = 3.0
173
+ n[5,292] = 4.0
174
+ n[5,289] = 5.0
175
+ n[5,290] = 6.0
176
+ n[5,293] = 2.0
177
+ n[5,299] = 7.0
178
+ n[5,100] = 8.0
179
+ expect(n.yale_lu).to eq([1.5, 1.0, 2.0, 8.0, 5.0, 6.0, 3.0, 4.0, 2.0, 7.0])
180
+ expect(n.yale_ja).to eq([0, 1, 15, 100, 289, 290, 291, 292, 293, 299])
181
+ end
182
+
183
+ it "gets values within large rows" do
184
+ n = NMatrix.new([10,300], stype: :yale, dtype: :float64)
185
+ n.extend(NMatrix::YaleFunctions)
186
+ n[5,1] = 1.0
187
+ n[5,0] = 1.5
188
+ n[5,15] = 2.0
189
+ n[5,291] = 3.0
190
+ n[5,292] = 4.0
191
+ n[5,289] = 5.0
192
+ n[5,290] = 6.0
193
+ n[5,293] = 2.0
194
+ n[5,299] = 7.0
195
+ n[5,100] = 8.0
196
+
197
+ n.yale_ja.each_index do |idx|
198
+ j = n.yale_ja[idx]
199
+ expect(n[5,j]).to eq(n.yale_lu[idx])
200
+ end
201
+ end
202
+
203
+ it "dots two identical matrices" do
204
+ a = NMatrix.new(4, stype: :yale, dtype: :float64)
205
+ a[0,1] = 4.0
206
+ a[1,2] = 1.0
207
+ a[1,3] = 1.0
208
+ a[3,1] = 2.0
209
+
210
+ b = a.dup
211
+ c = a.dot b
212
+
213
+ d = NMatrix.new(4, [0,0,4,4, 0,2,0,0, 0,0,0,0, 0,0,2,2], dtype: :float64, stype: :yale)
214
+
215
+ expect(c).to eq(d)
216
+ end
217
+
218
+ it "dots two identical matrices where a positive and negative partial sum cancel on the diagonal" do
219
+ a = NMatrix.new(4, 0.0, stype: :yale)
220
+
221
+ a[0,0] = 1.0
222
+ a[0,1] = 4.0
223
+ a[1,2] = 2.0
224
+ a[1,3] = -4.0
225
+ a[3,1] = 4.0
226
+ a[3,3] = 4.0
227
+
228
+ b = a.dup
229
+ c = a.dot b
230
+
231
+ c.extend(NMatrix::YaleFunctions)
232
+
233
+ expect(c.yale_ija.reject { |i| i.nil? }).to eq([5,8,9,9,11,1,2,3,3,1,2])
234
+ expect(c.yale_a.reject { |i| i.nil? }).to eq([1.0, -16.0, 0.0, 0.0, 0.0, 4.0, 8.0, -16.0, -16.0, 16.0, 8.0])
235
+
236
+ end
237
+
238
+ it "dots two vectors" do
239
+ n = NMatrix.new([16,1], 0, stype: :yale)
240
+ m = NMatrix.new([1,16], 0, stype: :yale)
241
+
242
+ n[0] = m[0] = 1
243
+ n[1] = m[1] = 2
244
+ n[2] = m[2] = 3
245
+ n[3] = m[3] = 4
246
+ n[4] = m[4] = 5
247
+ n[5] = m[5] = 6
248
+ n[6] = m[6] = 7
249
+ n[7] = m[7] = 8
250
+ n[8] = m[8] = 9
251
+ n[15] = m[15] = 16
252
+
253
+ nm = n.dot(m)
254
+
255
+ # Perform the same multiplication with dense
256
+ nmr = n.cast(:dense, :int64).dot(m.cast(:dense, :int64)).cast(:yale, :int64)
257
+
258
+ nm.extend(NMatrix::YaleFunctions)
259
+ nmr.extend(NMatrix::YaleFunctions)
260
+
261
+ # We want to do a structure comparison to ensure multiplication is occurring properly, but more importantly, to
262
+ # ensure that insertion sort is occurring as it should. If the row has more than four entries, it'll run quicksort
263
+ # instead. Quicksort calls insertion sort for small rows, so we test both with this particular multiplication.
264
+ expect(nm.yale_ija[0...107]).to eq(nmr.yale_ija[0...107])
265
+ expect(nm.yale_a[0...107]).to eq(nmr.yale_a[0...107])
266
+
267
+ mn = m.dot(n)
268
+ expect(mn[0,0]).to eq(541)
269
+ end
270
+
271
+ it "calculates the row key intersections of two matrices" do
272
+ a = NMatrix.new([3,9], [0,1], stype: :yale, dtype: :byte, default: 0)
273
+ b = NMatrix.new([3,9], [0,0,1,0,1], stype: :yale, dtype: :byte, default: 0)
274
+ a.extend NMatrix::YaleFunctions
275
+ b.extend NMatrix::YaleFunctions
276
+
277
+ (0...3).each do |ai|
278
+ (0...3).each do |bi|
279
+ STDERR.puts (a.yale_ja_d_keys_at(ai) & b.yale_ja_d_keys_at(bi)).inspect
280
+ expect(a.yale_ja_d_keys_at(ai) & b.yale_ja_d_keys_at(bi)).to eq(a.yale_row_keys_intersection(ai, b, bi))
281
+ end
282
+ end
283
+
284
+ end
285
+ end
286
+ end
@@ -0,0 +1,56 @@
1
+ # = NMatrix
2
+ #
3
+ # A linear algebra library for scientific computation in Ruby.
4
+ # NMatrix is part of SciRuby.
5
+ #
6
+ # NMatrix was originally inspired by and derived from NArray, by
7
+ # Masahiro Tanaka: http://narray.rubyforge.org
8
+ #
9
+ # == Copyright Information
10
+ #
11
+ # SciRuby is Copyright (c) 2010 - 2014, Ruby Science Foundation
12
+ # NMatrix is Copyright (c) 2012 - 2014, John Woods and the Ruby Science Foundation
13
+ #
14
+ # Please see LICENSE.txt for additional copyright notices.
15
+ #
16
+ # == Contributing
17
+ #
18
+ # By contributing source code to SciRuby, you agree to be bound by
19
+ # our Contributor Agreement:
20
+ #
21
+ # * https://github.com/SciRuby/sciruby/wiki/Contributor-Agreement
22
+ #
23
+ # == rspec_monkeys.rb
24
+ #
25
+ # A set of monkey patches for RSpec allowing checks of NMatrix types
26
+ #
27
+
28
+ module RSpec::Matchers::BuiltIn
29
+ class BeWithin
30
+
31
+ def of(expected)
32
+ @expected = expected
33
+ @unit = ''
34
+ if expected.is_a?(NMatrix)
35
+ @tolerance = if @delta.is_a?(NMatrix)
36
+ @delta.clone
37
+ elsif @delta.is_a?(Array)
38
+ NMatrix.new(:dense, expected.shape, @delta, expected.dtype)
39
+ else
40
+ NMatrix.ones_like(expected) * @delta
41
+ end
42
+ else
43
+ @tolerance = @delta
44
+ end
45
+
46
+ self
47
+ end
48
+
49
+ def percent_of(expected)
50
+ @expected = expected
51
+ @unit = '%'
52
+ @tolerance = @expected.abs * @delta / 100.0 # <- only change is to reverse abs and @delta
53
+ self
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,35 @@
1
+ # = NMatrix
2
+ #
3
+ # A linear algebra library for scientific computation in Ruby.
4
+ # NMatrix is part of SciRuby.
5
+ #
6
+ # NMatrix was originally inspired by and derived from NArray, by
7
+ # Masahiro Tanaka: http://narray.rubyforge.org
8
+ #
9
+ # == Copyright Information
10
+ #
11
+ # SciRuby is Copyright (c) 2010 - 2014, Ruby Science Foundation
12
+ # NMatrix is Copyright (c) 2012 - 2014, John Woods and the Ruby Science Foundation
13
+ #
14
+ # Please see LICENSE.txt for additional copyright notices.
15
+ #
16
+ # == Contributing
17
+ #
18
+ # By contributing source code to SciRuby, you agree to be bound by
19
+ # our Contributor Agreement:
20
+ #
21
+ # * https://github.com/SciRuby/sciruby/wiki/Contributor-Agreement
22
+ #
23
+ # == rspec_spec.rb
24
+ #
25
+ # A spec for testing monkey patches to RSpec for NMatrix.
26
+ #
27
+ require 'spec_helper'
28
+
29
+ describe "RSpec" do
30
+ it "should permit #be_within to be used on a dense NMatrix" do
31
+ pending("not yet implemented for NMatrix-JRuby") if jruby?
32
+ expect(NMatrix.new([4,1], 1.0, dtype: :complex128, stype: :dense) / 10000.0).to be_within(0.00000001).of(NMatrix.new([4,1], 0.0001, dtype: :float64, stype: :dense))
33
+ expect(NMatrix.new([4,1], 1.0, dtype: :complex128, stype: :dense) / 10000.0).not_to be_within(0.00000001).of(NMatrix.new([4,1], 1.0, dtype: :float64, stype: :dense))
34
+ end
35
+ end