nmatrix 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. data/Gemfile +1 -1
  2. data/History.txt +31 -3
  3. data/Manifest.txt +5 -0
  4. data/README.rdoc +29 -27
  5. data/ext/nmatrix/binary_format.txt +53 -0
  6. data/ext/nmatrix/data/data.cpp +18 -18
  7. data/ext/nmatrix/data/data.h +38 -7
  8. data/ext/nmatrix/data/rational.h +13 -0
  9. data/ext/nmatrix/data/ruby_object.h +10 -0
  10. data/ext/nmatrix/extconf.rb +2 -0
  11. data/ext/nmatrix/nmatrix.cpp +655 -103
  12. data/ext/nmatrix/nmatrix.h +26 -14
  13. data/ext/nmatrix/ruby_constants.cpp +4 -0
  14. data/ext/nmatrix/ruby_constants.h +2 -0
  15. data/ext/nmatrix/storage/dense.cpp +99 -41
  16. data/ext/nmatrix/storage/dense.h +3 -3
  17. data/ext/nmatrix/storage/list.cpp +36 -14
  18. data/ext/nmatrix/storage/list.h +4 -4
  19. data/ext/nmatrix/storage/storage.cpp +19 -19
  20. data/ext/nmatrix/storage/storage.h +11 -11
  21. data/ext/nmatrix/storage/yale.cpp +17 -20
  22. data/ext/nmatrix/storage/yale.h +13 -11
  23. data/ext/nmatrix/util/io.cpp +25 -23
  24. data/ext/nmatrix/util/io.h +5 -5
  25. data/ext/nmatrix/util/math.cpp +634 -17
  26. data/ext/nmatrix/util/math.h +958 -9
  27. data/ext/nmatrix/util/sl_list.cpp +7 -7
  28. data/ext/nmatrix/util/sl_list.h +2 -2
  29. data/lib/nmatrix.rb +9 -0
  30. data/lib/nmatrix/blas.rb +4 -4
  31. data/lib/nmatrix/io/market.rb +227 -0
  32. data/lib/nmatrix/io/mat_reader.rb +7 -7
  33. data/lib/nmatrix/lapack.rb +80 -0
  34. data/lib/nmatrix/nmatrix.rb +78 -52
  35. data/lib/nmatrix/shortcuts.rb +486 -0
  36. data/lib/nmatrix/version.rb +1 -1
  37. data/spec/2x2_dense_double.mat +0 -0
  38. data/spec/blas_spec.rb +59 -9
  39. data/spec/elementwise_spec.rb +25 -12
  40. data/spec/io_spec.rb +69 -1
  41. data/spec/lapack_spec.rb +53 -4
  42. data/spec/math_spec.rb +9 -0
  43. data/spec/nmatrix_list_spec.rb +95 -0
  44. data/spec/nmatrix_spec.rb +10 -53
  45. data/spec/nmatrix_yale_spec.rb +17 -15
  46. data/spec/shortcuts_spec.rb +154 -0
  47. metadata +22 -15
@@ -328,10 +328,10 @@ LIST_STORAGE* create_from_yale_storage(const YALE_STORAGE* rhs, dtype_t l_dtype)
328
328
 
329
329
  RIType* rhs_ija = reinterpret_cast<RIType*>(rhs->ija);
330
330
 
331
- NODE *last_added = NULL, *last_row_added = NULL;
332
-
331
+ NODE *last_row_added = NULL;
333
332
  // Walk through rows and columns as if RHS were a dense matrix
334
333
  for (RIType i = 0; i < rhs->shape[0]; ++i) {
334
+ NODE *last_added = NULL;
335
335
 
336
336
  // Get boundaries of beginning and end of row
337
337
  RIType ija = rhs_ija[i],
@@ -385,8 +385,8 @@ LIST_STORAGE* create_from_yale_storage(const YALE_STORAGE* rhs, dtype_t l_dtype)
385
385
  }
386
386
 
387
387
  // Now add the list at the appropriate location
388
- if (last_row_added) last_row_added = list::insert_after(last_row_added, i, curr_row);
389
- else last_row_added = list::insert(lhs->rows, false, i, curr_row);
388
+ if (last_row_added) last_row_added = list::insert_after(last_row_added, i, curr_row);
389
+ else last_row_added = list::insert(lhs->rows, false, i, curr_row);
390
390
  }
391
391
 
392
392
  // end of walk through rows
@@ -531,7 +531,7 @@ namespace yale_storage { // FIXME: Move to yale.cpp
531
531
  * Creation of yale storage from list storage.
532
532
  */
533
533
  template <typename LDType, typename RDType, typename LIType>
534
- YALE_STORAGE* create_from_list_storage(const LIST_STORAGE* rhs, dtype_t l_dtype) {
534
+ YALE_STORAGE* create_from_list_storage(const LIST_STORAGE* rhs, nm::dtype_t l_dtype) {
535
535
  if (rhs->dim != 2) rb_raise(nm_eStorageTypeError, "can only convert matrices of dim 2 to yale");
536
536
 
537
537
  if ((rhs->dtype == RUBYOBJ and (*reinterpret_cast<RubyObject*>(rhs->default_val)) == RubyObject(INT2FIX(0)))
@@ -611,43 +611,43 @@ extern "C" {
611
611
 
612
612
 
613
613
 
614
- STORAGE* nm_yale_storage_from_dense(const STORAGE* right, dtype_t l_dtype) {
615
- NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::yale_storage::create_from_dense_storage, YALE_STORAGE*, const DENSE_STORAGE* rhs, dtype_t l_dtype);
614
+ STORAGE* nm_yale_storage_from_dense(const STORAGE* right, nm::dtype_t l_dtype) {
615
+ NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::yale_storage::create_from_dense_storage, YALE_STORAGE*, const DENSE_STORAGE* rhs, nm::dtype_t l_dtype);
616
616
 
617
- itype_t itype = nm_yale_storage_itype((const YALE_STORAGE*)right);
617
+ nm::itype_t itype = nm_yale_storage_itype((const YALE_STORAGE*)right);
618
618
 
619
619
  return (STORAGE*)ttable[l_dtype][right->dtype][itype]((const DENSE_STORAGE*)right, l_dtype);
620
620
  }
621
621
 
622
- STORAGE* nm_yale_storage_from_list(const STORAGE* right, dtype_t l_dtype) {
623
- NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::yale_storage::create_from_list_storage, YALE_STORAGE*, const LIST_STORAGE* rhs, dtype_t l_dtype);
622
+ STORAGE* nm_yale_storage_from_list(const STORAGE* right, nm::dtype_t l_dtype) {
623
+ NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::yale_storage::create_from_list_storage, YALE_STORAGE*, const LIST_STORAGE* rhs, nm::dtype_t l_dtype);
624
624
 
625
- itype_t itype = nm_yale_storage_itype((const YALE_STORAGE*)right);
625
+ nm::itype_t itype = nm_yale_storage_itype((const YALE_STORAGE*)right);
626
626
 
627
627
  return (STORAGE*)ttable[l_dtype][right->dtype][itype]((const LIST_STORAGE*)right, l_dtype);
628
628
  }
629
629
 
630
- STORAGE* nm_dense_storage_from_list(const STORAGE* right, dtype_t l_dtype) {
631
- NAMED_LR_DTYPE_TEMPLATE_TABLE(ttable, nm::dense_storage::create_from_list_storage, DENSE_STORAGE*, const LIST_STORAGE* rhs, dtype_t l_dtype);
630
+ STORAGE* nm_dense_storage_from_list(const STORAGE* right, nm::dtype_t l_dtype) {
631
+ NAMED_LR_DTYPE_TEMPLATE_TABLE(ttable, nm::dense_storage::create_from_list_storage, DENSE_STORAGE*, const LIST_STORAGE* rhs, nm::dtype_t l_dtype);
632
632
 
633
633
  return (STORAGE*)ttable[l_dtype][right->dtype]((const LIST_STORAGE*)right, l_dtype);
634
634
  }
635
635
 
636
- STORAGE* nm_dense_storage_from_yale(const STORAGE* right, dtype_t l_dtype) {
637
- NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::dense_storage::create_from_yale_storage, DENSE_STORAGE*, const YALE_STORAGE* rhs, dtype_t l_dtype);
636
+ STORAGE* nm_dense_storage_from_yale(const STORAGE* right, nm::dtype_t l_dtype) {
637
+ NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::dense_storage::create_from_yale_storage, DENSE_STORAGE*, const YALE_STORAGE* rhs, nm::dtype_t l_dtype);
638
638
 
639
639
  const YALE_STORAGE* casted_right = reinterpret_cast<const YALE_STORAGE*>(right);
640
640
  return reinterpret_cast<STORAGE*>(ttable[l_dtype][right->dtype][casted_right->itype](casted_right, l_dtype));
641
641
  }
642
642
 
643
- STORAGE* nm_list_storage_from_dense(const STORAGE* right, dtype_t l_dtype) {
644
- NAMED_LR_DTYPE_TEMPLATE_TABLE(ttable, nm::list_storage::create_from_dense_storage, LIST_STORAGE*, const DENSE_STORAGE*, dtype_t);
643
+ STORAGE* nm_list_storage_from_dense(const STORAGE* right, nm::dtype_t l_dtype) {
644
+ NAMED_LR_DTYPE_TEMPLATE_TABLE(ttable, nm::list_storage::create_from_dense_storage, LIST_STORAGE*, const DENSE_STORAGE*, nm::dtype_t);
645
645
 
646
646
  return (STORAGE*)ttable[l_dtype][right->dtype]((DENSE_STORAGE*)right, l_dtype);
647
647
  }
648
648
 
649
- STORAGE* nm_list_storage_from_yale(const STORAGE* right, dtype_t l_dtype) {
650
- NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::list_storage::create_from_yale_storage, LIST_STORAGE*, const YALE_STORAGE* rhs, dtype_t l_dtype);
649
+ STORAGE* nm_list_storage_from_yale(const STORAGE* right, nm::dtype_t l_dtype) {
650
+ NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::list_storage::create_from_yale_storage, LIST_STORAGE*, const YALE_STORAGE* rhs, nm::dtype_t l_dtype);
651
651
 
652
652
  const YALE_STORAGE* casted_right = reinterpret_cast<const YALE_STORAGE*>(right);
653
653
 
@@ -53,11 +53,11 @@
53
53
  * Macros
54
54
  */
55
55
 
56
- #define NMATRIX_DTYPE_IS_COMPLEX(s) ((s->dtype == COMPLEX64) or (s->dtype == COMPLEX128))
57
- #define NMATRIX_DTYPE_IS_FLOAT(s) ((s->dtype == FLOAT32) or (s->dtype == FLOAT64))
58
- #define NMATRIX_DTYPE_IS_INTEGER(s) (s->dtype <= INT64)
59
- #define NMATRIX_DTYPE_IS_RATIONAL(s) ((s->dtype == RATIONAL32) or (s->dtype == RATIONAL64) or (s->dtype == RATIONAL128))
60
- #define NMATRIX_DTYPE_IS_RUBYOBJ(s) (s->dtype == RUBYOBJ)
56
+ #define NMATRIX_DTYPE_IS_COMPLEX(s) ((s->dtype == nm::COMPLEX64) or (s->dtype == nm::COMPLEX128))
57
+ #define NMATRIX_DTYPE_IS_FLOAT(s) ((s->dtype == nm::FLOAT32) or (s->dtype == nm::FLOAT64))
58
+ #define NMATRIX_DTYPE_IS_INTEGER(s) (s->dtype <= nm::INT64)
59
+ #define NMATRIX_DTYPE_IS_RATIONAL(s) ((s->dtype == nm::RATIONAL32) or (s->dtype == nm::RATIONAL64) or (s->dtype == nm::RATIONAL128))
60
+ #define NMATRIX_DTYPE_IS_RUBYOBJ(s) (s->dtype == nm::RUBYOBJ)
61
61
 
62
62
 
63
63
  /*
@@ -86,12 +86,12 @@ extern "C" {
86
86
  // Copying and Casting //
87
87
  /////////////////////////
88
88
 
89
- STORAGE* nm_dense_storage_from_list(const STORAGE* right, dtype_t l_dtype);
90
- STORAGE* nm_dense_storage_from_yale(const STORAGE* right, dtype_t l_dtype);
91
- STORAGE* nm_list_storage_from_dense(const STORAGE* right, dtype_t l_dtype);
92
- STORAGE* nm_list_storage_from_yale(const STORAGE* right, dtype_t l_dtype);
93
- STORAGE* nm_yale_storage_from_list(const STORAGE* right, dtype_t l_dtype);
94
- STORAGE* nm_yale_storage_from_dense(const STORAGE* right, dtype_t l_dtype);
89
+ STORAGE* nm_dense_storage_from_list(const STORAGE* right, nm::dtype_t l_dtype);
90
+ STORAGE* nm_dense_storage_from_yale(const STORAGE* right, nm::dtype_t l_dtype);
91
+ STORAGE* nm_list_storage_from_dense(const STORAGE* right, nm::dtype_t l_dtype);
92
+ STORAGE* nm_list_storage_from_yale(const STORAGE* right, nm::dtype_t l_dtype);
93
+ STORAGE* nm_yale_storage_from_list(const STORAGE* right, nm::dtype_t l_dtype);
94
+ STORAGE* nm_yale_storage_from_dense(const STORAGE* right, nm::dtype_t l_dtype);
95
95
 
96
96
  } // end of extern "C" block
97
97
 
@@ -76,8 +76,8 @@
76
76
  */
77
77
 
78
78
  extern "C" {
79
- static YALE_STORAGE* nm_copy_alloc_struct(const YALE_STORAGE* rhs, const dtype_t new_dtype, const size_t new_capacity, const size_t new_size);
80
- static YALE_STORAGE* alloc(dtype_t dtype, size_t* shape, size_t dim);
79
+ static YALE_STORAGE* nm_copy_alloc_struct(const YALE_STORAGE* rhs, const nm::dtype_t new_dtype, const size_t new_capacity, const size_t new_size);
80
+ static YALE_STORAGE* alloc(nm::dtype_t dtype, size_t* shape, size_t dim);
81
81
 
82
82
  /* Ruby-accessible functions */
83
83
  static VALUE nm_size(VALUE self);
@@ -112,9 +112,6 @@ static void increment_ia_after(YALE_STORAGE* s, IType ija_size, IType i, IT
112
112
  template <typename IType>
113
113
  static IType insert_search(YALE_STORAGE* s, IType left, IType right, IType key, bool* found);
114
114
 
115
- template <typename IType>
116
- static inline size_t get_size(const YALE_STORAGE* storage);
117
-
118
115
  template <typename DType, typename IType>
119
116
  static char vector_insert(YALE_STORAGE* s, size_t pos, size_t* j, DType* val, size_t n, bool struct_only);
120
117
 
@@ -1227,8 +1224,8 @@ bool nm_yale_storage_eqeq(const STORAGE* left, const STORAGE* right) {
1227
1224
  /*
1228
1225
  * Copy constructor for changing dtypes. (C accessor)
1229
1226
  */
1230
- STORAGE* nm_yale_storage_cast_copy(const STORAGE* rhs, dtype_t new_dtype) {
1231
- NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::yale_storage::cast_copy, YALE_STORAGE*, const YALE_STORAGE* rhs, dtype_t new_dtype);
1227
+ STORAGE* nm_yale_storage_cast_copy(const STORAGE* rhs, nm::dtype_t new_dtype) {
1228
+ NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::yale_storage::cast_copy, YALE_STORAGE*, const YALE_STORAGE* rhs, nm::dtype_t new_dtype);
1232
1229
 
1233
1230
  const YALE_STORAGE* casted_rhs = reinterpret_cast<const YALE_STORAGE*>(rhs);
1234
1231
 
@@ -1238,7 +1235,7 @@ STORAGE* nm_yale_storage_cast_copy(const STORAGE* rhs, dtype_t new_dtype) {
1238
1235
  /*
1239
1236
  * Returns size of Yale storage as a size_t (no matter what the itype is). (C accessor)
1240
1237
  */
1241
- inline size_t nm_yale_storage_get_size(const YALE_STORAGE* storage) {
1238
+ size_t nm_yale_storage_get_size(const YALE_STORAGE* storage) {
1242
1239
  NAMED_ITYPE_TEMPLATE_TABLE(ttable, nm::yale_storage::get_size, size_t, const YALE_STORAGE* storage);
1243
1240
 
1244
1241
  return ttable[storage->itype](storage);
@@ -1247,8 +1244,8 @@ inline size_t nm_yale_storage_get_size(const YALE_STORAGE* storage) {
1247
1244
  /*
1248
1245
  * C accessor for allocating a yale storage object for cast-copying. Copies the IJA vector, does not copy the A vector.
1249
1246
  */
1250
- static YALE_STORAGE* nm_copy_alloc_struct(const YALE_STORAGE* rhs, const dtype_t new_dtype, const size_t new_capacity, const size_t new_size) {
1251
- NAMED_ITYPE_TEMPLATE_TABLE(ttable, nm::yale_storage::copy_alloc_struct, YALE_STORAGE*, const YALE_STORAGE* rhs, const dtype_t new_dtype, const size_t new_capacity, const size_t new_size);
1247
+ static YALE_STORAGE* nm_copy_alloc_struct(const YALE_STORAGE* rhs, const nm::dtype_t new_dtype, const size_t new_capacity, const size_t new_size) {
1248
+ NAMED_ITYPE_TEMPLATE_TABLE(ttable, nm::yale_storage::copy_alloc_struct, YALE_STORAGE*, const YALE_STORAGE* rhs, const nm::dtype_t new_dtype, const size_t new_capacity, const size_t new_size);
1252
1249
 
1253
1250
  return ttable[rhs->itype](rhs, new_dtype, new_capacity, new_size);
1254
1251
  }
@@ -1291,15 +1288,15 @@ STORAGE* nm_yale_storage_matrix_multiply(const STORAGE_PAIR& casted_storage, siz
1291
1288
  /*
1292
1289
  * Documentation goes here.
1293
1290
  */
1294
- STORAGE* nm_yale_storage_ew_op(nm::ewop_t op, const STORAGE* left, const STORAGE* right) {
1295
- OP_ITYPE_DTYPE_TEMPLATE_TABLE(nm::yale_storage::ew_op, YALE_STORAGE*, const YALE_STORAGE*, const YALE_STORAGE*, dtype_t);
1291
+ STORAGE* nm_yale_storage_ew_op(nm::ewop_t op, const STORAGE* left, const STORAGE* right, VALUE scalar) {
1292
+ OP_ITYPE_DTYPE_TEMPLATE_TABLE(nm::yale_storage::ew_op, YALE_STORAGE*, const YALE_STORAGE*, const YALE_STORAGE*, nm::dtype_t);
1296
1293
 
1297
1294
  YALE_STORAGE* new_l = NULL, * new_r = NULL;
1298
1295
  YALE_STORAGE* result;
1299
1296
 
1300
1297
  const YALE_STORAGE* casted_l, * casted_r;
1301
1298
 
1302
- dtype_t new_dtype;
1299
+ nm::dtype_t new_dtype;
1303
1300
 
1304
1301
  if (left->dtype != right->dtype) {
1305
1302
 
@@ -1365,7 +1362,7 @@ STORAGE* nm_yale_storage_ew_op(nm::ewop_t op, const STORAGE* left, const STORAGE
1365
1362
  * create the storage.
1366
1363
  */
1367
1364
 
1368
- YALE_STORAGE* nm_yale_storage_create(dtype_t dtype, size_t* shape, size_t dim, size_t init_capacity) {
1365
+ YALE_STORAGE* nm_yale_storage_create(nm::dtype_t dtype, size_t* shape, size_t dim, size_t init_capacity) {
1369
1366
  YALE_STORAGE* s;
1370
1367
  size_t max_capacity;
1371
1368
 
@@ -1427,9 +1424,9 @@ void nm_yale_storage_mark(void* storage_base) {
1427
1424
  YALE_STORAGE* storage = (YALE_STORAGE*)storage_base;
1428
1425
  size_t i;
1429
1426
 
1430
- if (storage && storage->dtype == RUBYOBJ) {
1427
+ if (storage && storage->dtype == nm::RUBYOBJ) {
1431
1428
  for (i = storage->capacity; i-- > 0;) {
1432
- rb_gc_mark(*((VALUE*)((char*)(storage->a) + i*DTYPE_SIZES[RUBYOBJ])));
1429
+ rb_gc_mark(*((VALUE*)((char*)(storage->a) + i*DTYPE_SIZES[nm::RUBYOBJ])));
1433
1430
  }
1434
1431
  }
1435
1432
  }
@@ -1437,7 +1434,7 @@ void nm_yale_storage_mark(void* storage_base) {
1437
1434
  /*
1438
1435
  * Allocates and initializes the basic struct (but not the IJA or A vectors).
1439
1436
  */
1440
- static YALE_STORAGE* alloc(dtype_t dtype, size_t* shape, size_t dim) {
1437
+ static YALE_STORAGE* alloc(nm::dtype_t dtype, size_t* shape, size_t dim) {
1441
1438
  YALE_STORAGE* s;
1442
1439
 
1443
1440
  s = ALLOC( YALE_STORAGE );
@@ -1451,14 +1448,14 @@ static YALE_STORAGE* alloc(dtype_t dtype, size_t* shape, size_t dim) {
1451
1448
  return s;
1452
1449
  }
1453
1450
 
1454
- YALE_STORAGE* nm_yale_storage_create_from_old_yale(dtype_t dtype, size_t* shape, void* ia, void* ja, void* a, dtype_t from_dtype) {
1451
+ YALE_STORAGE* nm_yale_storage_create_from_old_yale(nm::dtype_t dtype, size_t* shape, void* ia, void* ja, void* a, nm::dtype_t from_dtype) {
1455
1452
 
1456
- NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::yale_storage::create_from_old_yale, YALE_STORAGE*, dtype_t dtype, size_t* shape, void* r_ia, void* r_ja, void* r_a);
1453
+ NAMED_LRI_DTYPE_TEMPLATE_TABLE(ttable, nm::yale_storage::create_from_old_yale, YALE_STORAGE*, nm::dtype_t dtype, size_t* shape, void* r_ia, void* r_ja, void* r_a);
1457
1454
 
1458
1455
  // With C++ templates, we don't want to have a 4-parameter template. That would be LDType, RDType, LIType, RIType.
1459
1456
  // We can prevent that by copying ia and ja into the correct itype (if necessary) before passing them to the yale
1460
1457
  // copy constructor.
1461
- itype_t to_itype = nm_yale_storage_itype_by_shape(shape);
1458
+ nm::itype_t to_itype = nm_yale_storage_itype_by_shape(shape);
1462
1459
 
1463
1460
  return ttable[dtype][from_dtype][to_itype](dtype, shape, ia, ja, a);
1464
1461
 
@@ -86,8 +86,8 @@ extern "C" {
86
86
  // Lifecycle //
87
87
  ///////////////
88
88
 
89
- YALE_STORAGE* nm_yale_storage_create(dtype_t dtype, size_t* shape, size_t dim, size_t init_capacity);
90
- YALE_STORAGE* nm_yale_storage_create_from_old_yale(dtype_t dtype, size_t* shape, void* ia, void* ja, void* a, dtype_t from_dtype);
89
+ YALE_STORAGE* nm_yale_storage_create(nm::dtype_t dtype, size_t* shape, size_t dim, size_t init_capacity);
90
+ YALE_STORAGE* nm_yale_storage_create_from_old_yale(nm::dtype_t dtype, size_t* shape, void* ia, void* ja, void* a, nm::dtype_t from_dtype);
91
91
  YALE_STORAGE* nm_yale_storage_create_merged(const YALE_STORAGE* merge_template, const YALE_STORAGE* other);
92
92
  void nm_yale_storage_delete(STORAGE* s);
93
93
  void nm_yale_storage_init(YALE_STORAGE* s);
@@ -101,7 +101,7 @@ extern "C" {
101
101
  void* nm_yale_storage_ref(STORAGE* s, SLICE* slice);
102
102
  char nm_yale_storage_set(STORAGE* storage, SLICE* slice, void* v);
103
103
 
104
- inline size_t nm_yale_storage_get_size(const YALE_STORAGE* storage);
104
+ size_t nm_yale_storage_get_size(const YALE_STORAGE* storage);
105
105
 
106
106
  ///////////
107
107
  // Tests //
@@ -113,7 +113,7 @@ extern "C" {
113
113
  // Math //
114
114
  //////////
115
115
 
116
- STORAGE* nm_yale_storage_ew_op(nm::ewop_t op, const STORAGE* left, const STORAGE* right);
116
+ STORAGE* nm_yale_storage_ew_op(nm::ewop_t op, const STORAGE* left, const STORAGE* right, VALUE scalar);
117
117
  STORAGE* nm_yale_storage_matrix_multiply(const STORAGE_PAIR& casted_storage, size_t* resulting_shape, bool vector);
118
118
 
119
119
  /////////////
@@ -127,20 +127,20 @@ extern "C" {
127
127
  * Useful for creating Yale Storage by other means than NMatrix.new(:yale, ...),
128
128
  * e.g., from a MATLAB v5 .mat file.
129
129
  */
130
- inline itype_t nm_yale_storage_itype_by_shape(const size_t* shape) {
130
+ inline nm::itype_t nm_yale_storage_itype_by_shape(const size_t* shape) {
131
131
  uint64_t yale_max_size = shape[0] * (shape[1]+1);
132
132
 
133
133
  if (yale_max_size < static_cast<uint64_t>(std::numeric_limits<uint8_t>::max()) - 2) {
134
- return UINT8;
134
+ return nm::UINT8;
135
135
 
136
136
  } else if (yale_max_size < static_cast<uint64_t>(std::numeric_limits<uint16_t>::max()) - 2) {
137
- return UINT16;
137
+ return nm::UINT16;
138
138
 
139
139
  } else if (yale_max_size < std::numeric_limits<uint32_t>::max() - 2) {
140
- return UINT32;
140
+ return nm::UINT32;
141
141
 
142
142
  } else {
143
- return UINT64;
143
+ return nm::UINT64;
144
144
  }
145
145
  }
146
146
 
@@ -150,7 +150,7 @@ extern "C" {
150
150
  * because UINTX_MAX and UINTX_MAX-1 are both reserved for sparse matrix
151
151
  * multiplication.
152
152
  */
153
- inline itype_t nm_yale_storage_itype(const YALE_STORAGE* s) {
153
+ inline nm::itype_t nm_yale_storage_itype(const YALE_STORAGE* s) {
154
154
  return nm_yale_storage_itype_by_shape(s->shape);
155
155
  }
156
156
 
@@ -159,7 +159,7 @@ extern "C" {
159
159
  // Copying and Casting //
160
160
  /////////////////////////
161
161
 
162
- STORAGE* nm_yale_storage_cast_copy(const STORAGE* rhs, dtype_t new_dtype);
162
+ STORAGE* nm_yale_storage_cast_copy(const STORAGE* rhs, nm::dtype_t new_dtype);
163
163
  STORAGE* nm_yale_storage_copy_transposed(const STORAGE* rhs_base);
164
164
 
165
165
 
@@ -203,6 +203,8 @@ namespace nm { namespace yale_storage {
203
203
  template <typename DType, typename IType>
204
204
  void init(YALE_STORAGE* s);
205
205
 
206
+ template <typename IType>
207
+ size_t get_size(const YALE_STORAGE* storage);
206
208
  }} // end of namespace nm::yale_storage
207
209
 
208
210
  #endif // YALE_H
@@ -88,6 +88,8 @@ char* matlab_cstring_to_dtype_string(size_t& result_len, const char* str, size_t
88
88
  return result;
89
89
  }
90
90
 
91
+
92
+
91
93
  }} // end of namespace nm::io
92
94
 
93
95
  extern "C" {
@@ -99,11 +101,11 @@ extern "C" {
99
101
  /*
100
102
  * Converts a string to a data type.
101
103
  */
102
- dtype_t nm_dtype_from_rbstring(VALUE str) {
104
+ nm::dtype_t nm_dtype_from_rbstring(VALUE str) {
103
105
 
104
106
  for (size_t index = 0; index < NM_NUM_DTYPES; ++index) {
105
107
  if (!std::strncmp(RSTRING_PTR(str), DTYPE_NAMES[index], RSTRING_LEN(str))) {
106
- return static_cast<dtype_t>(index);
108
+ return static_cast<nm::dtype_t>(index);
107
109
  }
108
110
  }
109
111
 
@@ -114,11 +116,11 @@ dtype_t nm_dtype_from_rbstring(VALUE str) {
114
116
  /*
115
117
  * Converts a symbol to a data type.
116
118
  */
117
- dtype_t nm_dtype_from_rbsymbol(VALUE sym) {
119
+ nm::dtype_t nm_dtype_from_rbsymbol(VALUE sym) {
118
120
 
119
121
  for (size_t index = 0; index < NM_NUM_DTYPES; ++index) {
120
122
  if (SYM2ID(sym) == rb_intern(DTYPE_NAMES[index])) {
121
- return static_cast<dtype_t>(index);
123
+ return static_cast<nm::dtype_t>(index);
122
124
  }
123
125
  }
124
126
 
@@ -129,11 +131,11 @@ dtype_t nm_dtype_from_rbsymbol(VALUE sym) {
129
131
  /*
130
132
  * Converts a symbol to an index type.
131
133
  */
132
- itype_t nm_itype_from_rbsymbol(VALUE sym) {
134
+ nm::itype_t nm_itype_from_rbsymbol(VALUE sym) {
133
135
 
134
136
  for (size_t index = 0; index < NM_NUM_ITYPES; ++index) {
135
137
  if (SYM2ID(sym) == rb_intern(ITYPE_NAMES[index])) {
136
- return static_cast<itype_t>(index);
138
+ return static_cast<nm::itype_t>(index);
137
139
  }
138
140
  }
139
141
 
@@ -144,31 +146,31 @@ itype_t nm_itype_from_rbsymbol(VALUE sym) {
144
146
  * Converts a string to a storage type. Only looks at the first three
145
147
  * characters.
146
148
  */
147
- stype_t nm_stype_from_rbstring(VALUE str) {
149
+ nm::stype_t nm_stype_from_rbstring(VALUE str) {
148
150
 
149
151
  for (size_t index = 0; index < NM_NUM_STYPES; ++index) {
150
152
  if (!std::strncmp(RSTRING_PTR(str), STYPE_NAMES[index], 3)) {
151
- return static_cast<stype_t>(index);
153
+ return static_cast<nm::stype_t>(index);
152
154
  }
153
155
  }
154
156
 
155
157
  rb_raise(rb_eArgError, "Invalid storage type string specified");
156
- return DENSE_STORE;
158
+ return nm::DENSE_STORE;
157
159
  }
158
160
 
159
161
  /*
160
162
  * Converts a symbol to a storage type.
161
163
  */
162
- stype_t nm_stype_from_rbsymbol(VALUE sym) {
164
+ nm::stype_t nm_stype_from_rbsymbol(VALUE sym) {
163
165
 
164
166
  for (size_t index = 0; index < NM_NUM_STYPES; ++index) {
165
167
  if (SYM2ID(sym) == rb_intern(STYPE_NAMES[index])) {
166
- return static_cast<stype_t>(index);
168
+ return static_cast<nm::stype_t>(index);
167
169
  }
168
170
  }
169
171
 
170
172
  rb_raise(rb_eArgError, "Invalid storage type symbol specified");
171
- return DENSE_STORE;
173
+ return nm::DENSE_STORE;
172
174
  }
173
175
 
174
176
 
@@ -208,18 +210,18 @@ static VALUE nm_rbstring_matlab_repack(VALUE self, VALUE str, VALUE from, VALUE
208
210
 
209
211
  if (RB_HASH_HAS_SYMBOL_KEY(options, "dtype")) { // Hash#has_key?(:dtype)
210
212
 
211
- dtype_t to_dtype = nm_dtype_from_rbsymbol(rb_hash_aref(options, ID2SYM(rb_intern("dtype"))));
212
- to_type = static_cast<int8_t>(to_dtype);
213
+ nm::dtype_t to_dtype = nm_dtype_from_rbsymbol(rb_hash_aref(options, ID2SYM(rb_intern("dtype"))));
214
+ to_type = static_cast<int8_t>(to_dtype);
213
215
 
214
216
  } else if (RB_HASH_HAS_SYMBOL_KEY(options, "itype")) {
215
217
 
216
- itype_t to_itype = nm_itype_from_rbsymbol(rb_hash_aref(options, ID2SYM(rb_intern("itype"))));
218
+ nm::itype_t to_itype = nm_itype_from_rbsymbol(rb_hash_aref(options, ID2SYM(rb_intern("itype"))));
217
219
 
218
220
  // we're going to cheat and use the DTYPE template table. To do this, we just act like uint8_t
219
221
  // is a dtype (both are 0, itype and dtype), or we add 1 to the other itypes and treat them as
220
222
  // signed.
221
223
  to_type = static_cast<uint8_t>(to_itype);
222
- if (to_itype != UINT8) to_type += 1;
224
+ if (to_itype != nm::UINT8) to_type += 1;
223
225
 
224
226
 
225
227
  } else {
@@ -227,7 +229,7 @@ static VALUE nm_rbstring_matlab_repack(VALUE self, VALUE str, VALUE from, VALUE
227
229
  }
228
230
 
229
231
  // For next few lines, see explanation above NM_MATLAB_DTYPE_TEMPLATE_TABLE definition in io.h.
230
- if (to_type >= static_cast<uint8_t>(COMPLEX64)) {
232
+ if (to_type >= static_cast<uint8_t>(nm::COMPLEX64)) {
231
233
  rb_raise(rb_eArgError, "can only repack into a simple dtype, no complex/rational/VALUE");
232
234
  }
233
235
 
@@ -256,15 +258,15 @@ static VALUE nm_rbstring_merge(VALUE self, VALUE rb_real, VALUE rb_imaginary, VA
256
258
  rb_raise(rb_eArgError, "real and imaginary components do not have same length");
257
259
  }
258
260
 
259
- dtype_t dtype = nm_dtype_from_rbsymbol(rb_dtype);
260
- size_t len = DTYPE_SIZES[dtype];
261
+ nm::dtype_t dtype = nm_dtype_from_rbsymbol(rb_dtype);
262
+ size_t len = DTYPE_SIZES[dtype];
261
263
 
262
- char *real = RSTRING_PTR(rb_real),
263
- *imag = RSTRING_PTR(rb_imaginary);
264
+ char *real = RSTRING_PTR(rb_real),
265
+ *imag = RSTRING_PTR(rb_imaginary);
264
266
 
265
- char* merge = ALLOCA_N(char, RSTRING_LEN(rb_real)*2);
267
+ char* merge = ALLOCA_N(char, RSTRING_LEN(rb_real)*2);
266
268
 
267
- size_t merge_pos = 0;
269
+ size_t merge_pos = 0;
268
270
 
269
271
  // Merge the two sequences
270
272
  for (size_t i = 0; i < RSTRING_LEN(rb_real); i += len) {