numru-narray 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ChangeLog +602 -0
- data/MANIFEST +54 -0
- data/README +41 -0
- data/README_NARRAY.en +49 -0
- data/README_NARRAY.ja +52 -0
- data/SPEC.en +327 -0
- data/SPEC.ja +307 -0
- data/ext/numru/narray/depend +14 -0
- data/ext/numru/narray/extconf.rb +123 -0
- data/ext/numru/narray/mkmath.rb +792 -0
- data/ext/numru/narray/mknafunc.rb +212 -0
- data/ext/numru/narray/mkop.rb +733 -0
- data/ext/numru/narray/na_array.c +659 -0
- data/ext/numru/narray/na_func.c +1709 -0
- data/ext/numru/narray/na_index.c +1022 -0
- data/ext/numru/narray/na_linalg.c +635 -0
- data/ext/numru/narray/na_random.c +444 -0
- data/ext/numru/narray/narray.c +1344 -0
- data/ext/numru/narray/narray.def +29 -0
- data/ext/numru/narray/narray.h +231 -0
- data/ext/numru/narray/narray_local.h +218 -0
- data/lib/numru/narray.rb +4 -0
- data/lib/numru/narray_ext.rb +362 -0
- data/lib/numru/nmatrix.rb +248 -0
- metadata +95 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4bd339d0deda7f1c268898cd1e15834181e0f37f
|
4
|
+
data.tar.gz: 5080065f13d385cf1a18c662085fc85f2772c7d7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: aca35fb06db275ad496a8c283cc195ffb3e582fa88d3d78e845b942109145047fe1ac5fe1182a189225f8024e024fc25b04082294d6a148537f2611a08b0e550
|
7
|
+
data.tar.gz: 88c71806f10700712447cc17b080d6fe06dfa815fa197aed6f58e6953a8bb7ac5c1c3d39a068da18f1937c332140568e95e1cb4d41a3a167c53043994d316aac
|
data/ChangeLog
ADDED
@@ -0,0 +1,602 @@
|
|
1
|
+
2015-01-21 Seiya Nishizawa <seiya@gfd-dennou.org>
|
2
|
+
|
3
|
+
* add mkchangelog.sh to create ChangeLog from git log
|
4
|
+
|
5
|
+
2015-01-21 Seiya Nishizawa <seiya@gfd-dennou.org>
|
6
|
+
|
7
|
+
* add patch for ruby-dcl and ruby-netcdf
|
8
|
+
|
9
|
+
2015-01-21 Seiya Nishizawa <seiya@gfd-dennou.org>
|
10
|
+
|
11
|
+
* add README for NArrayBigmem
|
12
|
+
|
13
|
+
2015-01-21 Seiya Nishizawa <seiya@gfd-dennou.org>
|
14
|
+
|
15
|
+
* rename README to README_NARRAY
|
16
|
+
|
17
|
+
2015-01-21 Seiya Nishizawa <seiya@gfd-dennou.org>
|
18
|
+
|
19
|
+
* add compile option for OpenMP if compiler is gcc. add an option --openmp=compilt_option for extconf.rb
|
20
|
+
|
21
|
+
2014-03-18 Seiya Nishizawa <seiya@gfd-dennou.org>
|
22
|
+
|
23
|
+
* add lib/narray.rb to narray.gemspec
|
24
|
+
|
25
|
+
2014-03-18 Seiya Nishizawa <seiya@gfd-dennou.org>
|
26
|
+
|
27
|
+
* set OMP_NUM_THREADS=1 when it is not set
|
28
|
+
|
29
|
+
2014-03-18 Seiya Nishizawa <seiya@gfd-dennou.org>
|
30
|
+
|
31
|
+
* bugfix for mask
|
32
|
+
|
33
|
+
2014-03-14 Seiya Nishizawa <seiya@gfd-dennou.org>
|
34
|
+
|
35
|
+
* disables openmp in cases of reduction
|
36
|
+
|
37
|
+
2014-03-14 Seiya Nishizawa <seiya@gfd-dennou.org>
|
38
|
+
|
39
|
+
* add pragma for openmp
|
40
|
+
|
41
|
+
2014-03-12 Seiya Nishizawa <seiya@gfd-dennou.org>
|
42
|
+
|
43
|
+
* change some argument from pointer to structure in inner functions
|
44
|
+
|
45
|
+
2013-07-31 Seiya Nishizawa <seiya@gfd-dennou.org>
|
46
|
+
|
47
|
+
* rename shape_t to na_shape_t
|
48
|
+
|
49
|
+
2013-07-31 Seiya Nishizawa <seiya@gfd-dennou.org>
|
50
|
+
|
51
|
+
* suport over 2GB array on 64bit architecture add NArray::LLINT
|
52
|
+
|
53
|
+
2013-05-09 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
54
|
+
|
55
|
+
* fix tests for change in Complex class
|
56
|
+
|
57
|
+
2013-03-16 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
58
|
+
|
59
|
+
* add map map! Thanks to Michael Macias
|
60
|
+
|
61
|
+
2013-02-27 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
62
|
+
|
63
|
+
* use rubygems/package_task, add --exclude in rdoc_options
|
64
|
+
|
65
|
+
2013-02-26 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
66
|
+
|
67
|
+
* version 0.6.0.8
|
68
|
+
|
69
|
+
2013-02-26 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
70
|
+
|
71
|
+
* avoid warnings in require "complex" and rdoc parsing
|
72
|
+
|
73
|
+
2013-02-26 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
74
|
+
|
75
|
+
* change gem directory from src to ext
|
76
|
+
|
77
|
+
2013-02-26 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
78
|
+
|
79
|
+
* change gem directory from src to ext
|
80
|
+
|
81
|
+
2013-02-26 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
82
|
+
|
83
|
+
* add require "rubygems"
|
84
|
+
|
85
|
+
2013-02-13 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
86
|
+
|
87
|
+
* new method: NArray.cast
|
88
|
+
|
89
|
+
2013-02-02 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
90
|
+
|
91
|
+
* rm Makefile narray_config.h when make cleanall
|
92
|
+
|
93
|
+
2013-02-01 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
94
|
+
|
95
|
+
* modify NArray#eql?, create NArray#hash
|
96
|
+
|
97
|
+
2013-02-01 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
98
|
+
|
99
|
+
* version 0.6.0.7
|
100
|
+
|
101
|
+
2013-02-01 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
102
|
+
|
103
|
+
* eql? method implemented
|
104
|
+
|
105
|
+
2013-01-31 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
106
|
+
|
107
|
+
* version 0.6.0.6
|
108
|
+
|
109
|
+
2013-01-31 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
110
|
+
|
111
|
+
* bug: duplicated definition of asinh/acosh/atanh, typecast warning (mingw/mswin)
|
112
|
+
|
113
|
+
2013-01-31 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
114
|
+
|
115
|
+
* unuse: u_int16_t
|
116
|
+
|
117
|
+
2013-01-30 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
118
|
+
|
119
|
+
* version 0.6.0.5
|
120
|
+
|
121
|
+
2013-01-30 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
122
|
+
|
123
|
+
* fix
|
124
|
+
|
125
|
+
2013-01-30 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
126
|
+
|
127
|
+
* avoid warnings of signed<=>unsigned comparison
|
128
|
+
|
129
|
+
2013-01-30 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
130
|
+
|
131
|
+
* na_check_class_narray: use '<=' method instead of rb_mod_ancestors
|
132
|
+
|
133
|
+
2012-12-29 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
134
|
+
|
135
|
+
* version 0.6.0.4
|
136
|
+
|
137
|
+
2012-12-29 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
138
|
+
|
139
|
+
* Update lib/narray_ext.rb
|
140
|
+
* BUG: coth(x) should be 1/tanh(x), not 1/atanh(x)
|
141
|
+
2012-12-26 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
142
|
+
|
143
|
+
* improve gem creation
|
144
|
+
|
145
|
+
2012-12-26 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
146
|
+
|
147
|
+
* increment version in narray.h
|
148
|
+
|
149
|
+
2012-12-26 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
150
|
+
|
151
|
+
* update gemspec
|
152
|
+
|
153
|
+
2012-12-26 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
154
|
+
|
155
|
+
* File.absolute_path is not available for ruby 1.8
|
156
|
+
|
157
|
+
2012-12-08 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
158
|
+
|
159
|
+
* ver 0.6.0.2
|
160
|
+
|
161
|
+
2012-12-08 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
162
|
+
|
163
|
+
* new file: test/ld.rb
|
164
|
+
|
165
|
+
2012-12-07 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
166
|
+
|
167
|
+
* Merge pull request #24 from geoffyoungs/master
|
168
|
+
* Fix ancestor checking
|
169
|
+
2012-12-07 Geoff Youngs <git@intersect-uk.co.uk>
|
170
|
+
|
171
|
+
* Use ruby methods to check class ancestors, instead of m_tbl directly
|
172
|
+
|
173
|
+
2012-09-20 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
174
|
+
|
175
|
+
* fix error message in rot90
|
176
|
+
|
177
|
+
2012-09-20 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
178
|
+
|
179
|
+
* doc and test for reverse,rot90
|
180
|
+
|
181
|
+
2012-09-20 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
182
|
+
|
183
|
+
* ChangeLog for fixing NMath#recip
|
184
|
+
|
185
|
+
2012-09-20 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
186
|
+
|
187
|
+
* new method: reverse, rot90
|
188
|
+
|
189
|
+
2012-09-02 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
190
|
+
|
191
|
+
* Merge pull request #20 from ohai/fix-nmath-recip
|
192
|
+
* Change NMath#recip into a module function
|
193
|
+
2012-09-02 Ippei Obayashi <ohai@kmc.gr.jp>
|
194
|
+
|
195
|
+
* Change NMath#recip into a module function
|
196
|
+
|
197
|
+
2011-12-12 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
198
|
+
|
199
|
+
* Merge pull request #15 from ankane/b9c751076476e63c6effaae9f8602bf5fb36b4f2
|
200
|
+
* Fixed typo and added gemspec
|
201
|
+
2011-12-11 Andrew Kane <andrew@getformidable.com>
|
202
|
+
|
203
|
+
* Fixed gemspec
|
204
|
+
|
205
|
+
2011-12-11 Andrew Kane <andrew@getformidable.com>
|
206
|
+
|
207
|
+
* Added gemspec
|
208
|
+
|
209
|
+
2011-12-11 Andrew Kane <andrew@getformidable.com>
|
210
|
+
|
211
|
+
* Fixed typo
|
212
|
+
|
213
|
+
2011-09-29 David MacMahon <davidm@astro.berkeley.edu>
|
214
|
+
|
215
|
+
* Add src to .gitignore
|
216
|
+
* src is a symlink created when packaging as a gem file.
|
217
|
+
* It need not be versioned.
|
218
|
+
|
219
|
+
2011-09-29 David MacMahon <davidm@astro.berkeley.edu>
|
220
|
+
|
221
|
+
* Add licenses field to gemspec for Ruby 1.9.3dev
|
222
|
+
* Running "rake gem" with ruby 1.9.3dev failed with an error message
|
223
|
+
* stating that the gemspec's licenses field cannot be nil.
|
224
|
+
|
225
|
+
* This commit fixes that by specifying the license "Ruby" since the
|
226
|
+
* README.en states that the code can be distributed/modified under the
|
227
|
+
* same terms as Ruby itself.
|
228
|
+
|
229
|
+
* The exact versions of ruby, gem, and rake used were:
|
230
|
+
|
231
|
+
* $ ruby -v; gem -v; rake -V
|
232
|
+
* ruby 1.9.3dev (2011-09-23 revision 33323) [x86_64-linux]
|
233
|
+
* 1.8.10
|
234
|
+
* rake, version 0.9.2.2
|
235
|
+
|
236
|
+
2011-09-14 Masahiro Tanaka <masa16.tanaka@gmail.com>
|
237
|
+
|
238
|
+
* add delete_at to SPEC.*
|
239
|
+
|
240
|
+
2011-08-29 Masahiro Tanaka <masa16.tanaka@gmail.com>
|
241
|
+
|
242
|
+
* ver.0.6.0.1
|
243
|
+
|
244
|
+
2011-08-29 Masahiro Tanaka <masa16.tanaka@gmail.com>
|
245
|
+
|
246
|
+
* check array size (zero/negative)
|
247
|
+
|
248
|
+
2011-08-27 Masahiro Tanaka <masa16.tanaka@gmail.com>
|
249
|
+
|
250
|
+
* ver. 0.6.0.0
|
251
|
+
|
252
|
+
2011-08-27 Masahiro Tanaka <masa16.tanaka@gmail.com>
|
253
|
+
|
254
|
+
--export-all option for mingw
|
255
|
+
|
256
|
+
2011-08-27 Masahiro Tanaka <masa16.tanaka@gmail.com>
|
257
|
+
|
258
|
+
* check array size
|
259
|
+
|
260
|
+
2011-05-19 David MacMahon <davidm@astro.berkeley.edu>
|
261
|
+
|
262
|
+
* Fix NArray#randomn! method
|
263
|
+
* It now calls NArray#randomn rather than NArray#random.
|
264
|
+
|
265
|
+
2011-02-18 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
266
|
+
|
267
|
+
* rename delete to delete_at
|
268
|
+
|
269
|
+
2011-02-18 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
270
|
+
|
271
|
+
* modify ArgumentError to IndexError
|
272
|
+
|
273
|
+
2011-02-18 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
274
|
+
|
275
|
+
* .gitignore
|
276
|
+
|
277
|
+
2011-02-18 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
278
|
+
|
279
|
+
* new method: delete
|
280
|
+
|
281
|
+
2011-02-04 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
282
|
+
|
283
|
+
* fix rake gem
|
284
|
+
|
285
|
+
2011-02-04 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
286
|
+
|
287
|
+
* New method: prod & cumprod
|
288
|
+
|
289
|
+
2011-01-04 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
290
|
+
|
291
|
+
* ChangeLog
|
292
|
+
|
293
|
+
2011-01-04 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
294
|
+
|
295
|
+
* Merge branch 'master' of http://astro.berkeley.edu/~davidm/narray
|
296
|
+
|
297
|
+
2011-01-04 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
298
|
+
|
299
|
+
* patch for mingw ruby 1.9.0
|
300
|
+
|
301
|
+
2011-01-03 David MacMahon <davidm@astro.berkeley.edu>
|
302
|
+
|
303
|
+
* Add NArray#mod! method
|
304
|
+
* Also adds NArray#mod as an alias for NArray#%.
|
305
|
+
|
306
|
+
2011-01-03 David MacMahon <davidm@astro.berkeley.edu>
|
307
|
+
|
308
|
+
* Fix divide-by-zero bug in % operator
|
309
|
+
* Prior to this fix, the following would crash Ruby with a floating point
|
310
|
+
* exception (at least on Mac OS X 10.6)...
|
311
|
+
|
312
|
+
* 1 % NArray[0]
|
313
|
+
|
314
|
+
* Now that code raises ZeroDivisionError which can be rescued.
|
315
|
+
|
316
|
+
2011-01-03 David MacMahon <davidm@astro.berkeley.edu>
|
317
|
+
|
318
|
+
* Add Rakefile for easy gem creation
|
319
|
+
* Just run "rake gem" to create the gem file in the pkg/ subdirectory.
|
320
|
+
* Added .gitignore file to ignore pkg/ subdirectory.
|
321
|
+
|
322
|
+
2010-12-14 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
323
|
+
|
324
|
+
* 0.5.9p9
|
325
|
+
|
326
|
+
2010-12-14 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
327
|
+
|
328
|
+
* NMatrix#diagonal!: failed due to spec change of NArray.to_na.
|
329
|
+
|
330
|
+
2010-12-06 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
331
|
+
|
332
|
+
* 0.5.9p8
|
333
|
+
|
334
|
+
2010-09-14 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
335
|
+
|
336
|
+
* Convert to NA_BYTE by calling "obj.ne(0)"
|
337
|
+
|
338
|
+
2010-07-12 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
339
|
+
|
340
|
+
* improve argument check in NArray.to_na
|
341
|
+
|
342
|
+
2010-04-30 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
343
|
+
|
344
|
+
* spec change and bug fix
|
345
|
+
|
346
|
+
2010-01-16 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
347
|
+
|
348
|
+
* access out-of-bounds "struct slice" array.
|
349
|
+
|
350
|
+
2010-01-13 Masahiro TANAKA <masa16.tanaka@gmail.com>
|
351
|
+
|
352
|
+
* change the encoding of japanese document from JIS to UTF-8
|
353
|
+
|
354
|
+
2009-06-14 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
355
|
+
|
356
|
+
* version narray-0.5.9p7
|
357
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@82 09a2cad2-7366-4d26-ab3d-61f00787735e
|
358
|
+
|
359
|
+
2009-06-14 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
360
|
+
|
361
|
+
* version narray-0.5.9p7
|
362
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@81 09a2cad2-7366-4d26-ab3d-61f00787735e
|
363
|
+
|
364
|
+
2009-06-14 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
365
|
+
|
366
|
+
* version narray-0.5.9p7
|
367
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@80 09a2cad2-7366-4d26-ab3d-61f00787735e
|
368
|
+
|
369
|
+
2008-11-05 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
370
|
+
|
371
|
+
* version narray-0.5.9p6
|
372
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@79 09a2cad2-7366-4d26-ab3d-61f00787735e
|
373
|
+
|
374
|
+
2008-11-05 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
375
|
+
|
376
|
+
* tested with ruby 1.9.1 preview1 unuse struct RArray change in Complex feature change oprator arg of coerce_rev func from id to symbol
|
377
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@78 09a2cad2-7366-4d26-ab3d-61f00787735e
|
378
|
+
|
379
|
+
2008-06-10 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
380
|
+
|
381
|
+
* delete na_fftw.c in MANIFEST
|
382
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@77 09a2cad2-7366-4d26-ab3d-61f00787735e
|
383
|
+
|
384
|
+
2008-06-10 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
385
|
+
|
386
|
+
* bench/: new sophisticated benchmark script.
|
387
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@76 09a2cad2-7366-4d26-ab3d-61f00787735e
|
388
|
+
|
389
|
+
2008-06-10 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
390
|
+
|
391
|
+
* ange var++ to ++var
|
392
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@75 09a2cad2-7366-4d26-ab3d-61f00787735e
|
393
|
+
|
394
|
+
2008-01-28 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
395
|
+
|
396
|
+
* change in internal structure of Ruby 1.9 Range object.
|
397
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@74 09a2cad2-7366-4d26-ab3d-61f00787735e
|
398
|
+
|
399
|
+
2007-12-31 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
400
|
+
|
401
|
+
* narray.h: up VERSION
|
402
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@73 09a2cad2-7366-4d26-ab3d-61f00787735e
|
403
|
+
|
404
|
+
2007-12-27 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
405
|
+
|
406
|
+
* use RSTRING_PTR, RSTRING_LEN for Ruby 1.9.0.
|
407
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@72 09a2cad2-7366-4d26-ab3d-61f00787735e
|
408
|
+
|
409
|
+
2007-12-11 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
410
|
+
|
411
|
+
* *** empty log message ***
|
412
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@40 09a2cad2-7366-4d26-ab3d-61f00787735e
|
413
|
+
|
414
|
+
2007-12-11 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
415
|
+
|
416
|
+
* *** empty log message ***
|
417
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@39 09a2cad2-7366-4d26-ab3d-61f00787735e
|
418
|
+
|
419
|
+
2007-12-11 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
420
|
+
|
421
|
+
* bug in mkop.rb (Insp?) and narray.h (NArray::NARRAY_VERSION)
|
422
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@38 09a2cad2-7366-4d26-ab3d-61f00787735e
|
423
|
+
|
424
|
+
2006-08-08 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
425
|
+
|
426
|
+
* fix address in ChangeLog
|
427
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@37 09a2cad2-7366-4d26-ab3d-61f00787735e
|
428
|
+
|
429
|
+
2006-08-08 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
430
|
+
|
431
|
+
* ver 0.5.9
|
432
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@36 09a2cad2-7366-4d26-ab3d-61f00787735e
|
433
|
+
|
434
|
+
2005-08-05 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
435
|
+
|
436
|
+
* Spec Change: Calculate as DFLOAT type for NMath integer arguments
|
437
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@35 09a2cad2-7366-4d26-ab3d-61f00787735e
|
438
|
+
|
439
|
+
2005-08-05 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
440
|
+
|
441
|
+
* bug fix in na_ary_to_nary_w_type(), na_math_func(), release 0.5.8
|
442
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@34 09a2cad2-7366-4d26-ab3d-61f00787735e
|
443
|
+
|
444
|
+
2004-11-10 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
445
|
+
|
446
|
+
* Fix bugs in nimage, random. 0.5.7p4
|
447
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@33 09a2cad2-7366-4d26-ab3d-61f00787735e
|
448
|
+
|
449
|
+
2004-07-05 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
450
|
+
|
451
|
+
* extconf.rb: generate libnarray.a for Cygwin + Ruby 1.8.1.
|
452
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@32 09a2cad2-7366-4d26-ab3d-61f00787735e
|
453
|
+
|
454
|
+
2004-02-19 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
455
|
+
|
456
|
+
* memroy free bug in na_free_mdai()
|
457
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@31 09a2cad2-7366-4d26-ab3d-61f00787735e
|
458
|
+
|
459
|
+
2004-01-04 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
460
|
+
|
461
|
+
* modify README
|
462
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@30 09a2cad2-7366-4d26-ab3d-61f00787735e
|
463
|
+
|
464
|
+
2004-01-04 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
465
|
+
|
466
|
+
* NArray-GC is disabled
|
467
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@29 09a2cad2-7366-4d26-ab3d-61f00787735e
|
468
|
+
|
469
|
+
2004-01-04 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
470
|
+
|
471
|
+
* move decl of cNArrayScalar, cComplex from narray.h to narray_local.h
|
472
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@28 09a2cad2-7366-4d26-ab3d-61f00787735e
|
473
|
+
|
474
|
+
2004-01-04 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
475
|
+
|
476
|
+
* fix mkmf incompatibility of ruby 1.8
|
477
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@27 09a2cad2-7366-4d26-ab3d-61f00787735e
|
478
|
+
|
479
|
+
2004-01-04 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
480
|
+
|
481
|
+
* fix ruby 1.8 warning
|
482
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@26 09a2cad2-7366-4d26-ab3d-61f00787735e
|
483
|
+
|
484
|
+
2004-01-04 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
485
|
+
|
486
|
+
* fix str2cstr to rb_str2cstr
|
487
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@25 09a2cad2-7366-4d26-ab3d-61f00787735e
|
488
|
+
|
489
|
+
2003-03-04 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
490
|
+
|
491
|
+
* .jp to .ja
|
492
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@24 09a2cad2-7366-4d26-ab3d-61f00787735e
|
493
|
+
|
494
|
+
2003-03-04 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
495
|
+
|
496
|
+
* rank_total for both ruby-1.6 & 1.8
|
497
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@23 09a2cad2-7366-4d26-ab3d-61f00787735e
|
498
|
+
|
499
|
+
2003-03-04 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
500
|
+
|
501
|
+
* check with ruby-1.8.0
|
502
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@22 09a2cad2-7366-4d26-ab3d-61f00787735e
|
503
|
+
|
504
|
+
2003-03-03 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
505
|
+
|
506
|
+
* cumsum, C-version of swap_byte, random with MT, etc.
|
507
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@21 09a2cad2-7366-4d26-ab3d-61f00787735e
|
508
|
+
|
509
|
+
2002-05-17 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
510
|
+
|
511
|
+
* NArray#==
|
512
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@20 09a2cad2-7366-4d26-ab3d-61f00787735e
|
513
|
+
|
514
|
+
2002-05-17 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
515
|
+
|
516
|
+
* add na_get_typecode to narray.def
|
517
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@19 09a2cad2-7366-4d26-ab3d-61f00787735e
|
518
|
+
|
519
|
+
2002-05-17 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
520
|
+
|
521
|
+
* add na_sizeof to narray.def
|
522
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@18 09a2cad2-7366-4d26-ab3d-61f00787735e
|
523
|
+
|
524
|
+
2002-05-17 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
525
|
+
|
526
|
+
* na_sizeof,na_get_typecode,const,sincos,asinh,INT2NUM
|
527
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@17 09a2cad2-7366-4d26-ab3d-61f00787735e
|
528
|
+
|
529
|
+
2002-03-27 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
530
|
+
|
531
|
+
* remove unused entry in narray.def
|
532
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@16 09a2cad2-7366-4d26-ab3d-61f00787735e
|
533
|
+
|
534
|
+
2002-03-24 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
535
|
+
|
536
|
+
* fix MANIFEST
|
537
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@15 09a2cad2-7366-4d26-ab3d-61f00787735e
|
538
|
+
|
539
|
+
2002-03-24 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
540
|
+
|
541
|
+
* volatile,Range-seq,NMatrix#*,mdai,narray_local.h. ver 0.5.6
|
542
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@14 09a2cad2-7366-4d26-ab3d-61f00787735e
|
543
|
+
|
544
|
+
2002-01-03 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
545
|
+
|
546
|
+
* generate libnarray.a for cygwin
|
547
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@13 09a2cad2-7366-4d26-ab3d-61f00787735e
|
548
|
+
|
549
|
+
2002-01-02 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
550
|
+
|
551
|
+
* fix header install dir
|
552
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@12 09a2cad2-7366-4d26-ab3d-61f00787735e
|
553
|
+
|
554
|
+
2001-12-30 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
555
|
+
|
556
|
+
* strict shape check
|
557
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@11 09a2cad2-7366-4d26-ab3d-61f00787735e
|
558
|
+
|
559
|
+
2001-12-30 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
560
|
+
|
561
|
+
* ver 0.5.5, modify life_na.rb
|
562
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@10 09a2cad2-7366-4d26-ab3d-61f00787735e
|
563
|
+
|
564
|
+
2001-12-30 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
565
|
+
|
566
|
+
* ver 0.5.5, mask support
|
567
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@9 09a2cad2-7366-4d26-ab3d-61f00787735e
|
568
|
+
|
569
|
+
2001-07-01 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
570
|
+
|
571
|
+
* narray.h: change location of #include narray_config.h
|
572
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@8 09a2cad2-7366-4d26-ab3d-61f00787735e
|
573
|
+
|
574
|
+
2001-07-01 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
575
|
+
|
576
|
+
* changelog
|
577
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@7 09a2cad2-7366-4d26-ab3d-61f00787735e
|
578
|
+
|
579
|
+
2001-07-01 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
580
|
+
|
581
|
+
* na_index_t, EXCL(), a[0..0] to be array, alias complex method, ver 0.5.4
|
582
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@6 09a2cad2-7366-4d26-ab3d-61f00787735e
|
583
|
+
|
584
|
+
2001-07-01 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
585
|
+
|
586
|
+
* change comparison, add xor
|
587
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@5 09a2cad2-7366-4d26-ab3d-61f00787735e
|
588
|
+
|
589
|
+
2001-07-01 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
590
|
+
|
591
|
+
* commit 4/10-6/30
|
592
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@4 09a2cad2-7366-4d26-ab3d-61f00787735e
|
593
|
+
|
594
|
+
2001-04-07 masa <masa@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
595
|
+
|
596
|
+
* Initial revision
|
597
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@3 09a2cad2-7366-4d26-ab3d-61f00787735e
|
598
|
+
|
599
|
+
2001-04-07 (no author) <(no author)@09a2cad2-7366-4d26-ab3d-61f00787735e>
|
600
|
+
|
601
|
+
* New repository initialized by cvs2svn.
|
602
|
+
* git-svn-id: svn+ssh://ion/home/svn/ruby/narray05/trunk@2 09a2cad2-7366-4d26-ab3d-61f00787735e
|
data/MANIFEST
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
ChangeLog
|
2
|
+
MANIFEST
|
3
|
+
README
|
4
|
+
README_NARRAY.en
|
5
|
+
README_NARRAY.ja
|
6
|
+
SPEC.en
|
7
|
+
SPEC.ja
|
8
|
+
ext/narray/depend
|
9
|
+
ext/narray/extconf.rb
|
10
|
+
ext/narray/mkmath.rb
|
11
|
+
ext/narray/mknafunc.rb
|
12
|
+
ext/narray/mkop.rb
|
13
|
+
ext/narray/na_array.c
|
14
|
+
ext/narray/na_func.c
|
15
|
+
ext/narray/na_index.c
|
16
|
+
ext/narray/na_linalg.c
|
17
|
+
ext/narray/na_random.c
|
18
|
+
ext/narray/narray.c
|
19
|
+
ext/narray/narray.def
|
20
|
+
ext/narray/narray.h
|
21
|
+
ext/narray/narray_local.h
|
22
|
+
lib/narray_ext.rb
|
23
|
+
lib/nmatrix.rb
|
24
|
+
test/statistics.rb
|
25
|
+
test/testarray.rb
|
26
|
+
test/testbit.rb
|
27
|
+
test/testcast.rb
|
28
|
+
test/testcomplex.rb
|
29
|
+
test/testfftw.rb
|
30
|
+
test/testindex.rb
|
31
|
+
test/testindexary.rb
|
32
|
+
test/testindexset.rb
|
33
|
+
test/testmask.rb
|
34
|
+
test/testmath.rb
|
35
|
+
test/testmath2.rb
|
36
|
+
test/testmatrix.rb
|
37
|
+
test/testmatrix2.rb
|
38
|
+
test/testmatrix3.rb
|
39
|
+
test/testminmax.rb
|
40
|
+
test/testobject.rb
|
41
|
+
test/testpow.rb
|
42
|
+
test/testrandom.rb
|
43
|
+
test/testround.rb
|
44
|
+
test/testsort.rb
|
45
|
+
test/teststr.rb
|
46
|
+
test/testtrans.rb
|
47
|
+
test/testwhere.rb
|
48
|
+
bench/all.rb
|
49
|
+
bench/bench.m
|
50
|
+
bench/bench.py
|
51
|
+
bench/bench.rb
|
52
|
+
bench/dummy.m
|
53
|
+
bench/dummy.py
|
54
|
+
bench/dummy.rb
|
data/README
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
* What is NumRu-NArray
|
2
|
+
|
3
|
+
+ NumRu-NArray is a fork of NArray with big memory support (old name NArray-Bigmem)
|
4
|
+
|
5
|
+
* Difference from NArray
|
6
|
+
|
7
|
+
+ Big memory (over 2GB) support
|
8
|
+
+ new class NArray::LINT (64bit integer)
|
9
|
+
+ OpenMP support
|
10
|
+
+ Internal memory struct of NArray object (recompile is necessary for exteded library)
|
11
|
+
|
12
|
+
* Installation
|
13
|
+
|
14
|
+
+ Compile & Install NumRu NArray
|
15
|
+
|
16
|
+
ruby extconf.rb
|
17
|
+
make
|
18
|
+
make install
|
19
|
+
|
20
|
+
+ For OpenMP support
|
21
|
+
|
22
|
+
OpenMP is enable for gcc compiler by default.
|
23
|
+
However it is disabled for other compiler.
|
24
|
+
"--openmp=" option for extconf.rb is available to enable and disable OpenMP support.
|
25
|
+
If you want enable it for other compiler, execute extconf.rb with --openmp option.
|
26
|
+
ruby extconf.rb --openmp=openmp_option
|
27
|
+
If you want disable it for gcc compiler, --openmp option without any argument can be used.
|
28
|
+
ruby extconf.rb --openmp=
|
29
|
+
|
30
|
+
* Run
|
31
|
+
|
32
|
+
+ load library
|
33
|
+
require 'narray'
|
34
|
+
|
35
|
+
+ enable OpenMP
|
36
|
+
|
37
|
+
OpenMP is disabled by default at runtime.
|
38
|
+
Set number of threads to "OMP_NUM_THREADS" environmental variable if you want enable it.
|
39
|
+
If you want set the number in Ruby script, just insert the following code:
|
40
|
+
ENV["OMP_NUM_THREADS"] = num_threads
|
41
|
+
|