carray 1.5.1 → 1.5.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (198) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +32 -0
  3. data/{LICENSES → LICENSE} +0 -0
  4. data/NEWS.md +83 -0
  5. data/README.md +34 -18
  6. data/Rakefile +1 -1
  7. data/TODO.md +17 -0
  8. data/carray.gemspec +10 -7
  9. data/ext/ca_iter_block.c +3 -5
  10. data/ext/ca_iter_dimension.c +4 -5
  11. data/ext/ca_iter_window.c +2 -4
  12. data/ext/ca_obj_array.c +394 -124
  13. data/ext/ca_obj_bitarray.c +6 -11
  14. data/ext/ca_obj_bitfield.c +5 -9
  15. data/ext/ca_obj_block.c +5 -12
  16. data/ext/ca_obj_fake.c +3 -5
  17. data/ext/ca_obj_farray.c +3 -5
  18. data/ext/ca_obj_field.c +15 -17
  19. data/ext/ca_obj_grid.c +5 -6
  20. data/ext/ca_obj_mapping.c +2 -4
  21. data/ext/ca_obj_object.c +3 -5
  22. data/ext/ca_obj_reduce.c +2 -4
  23. data/ext/ca_obj_refer.c +11 -15
  24. data/ext/ca_obj_repeat.c +2 -4
  25. data/ext/ca_obj_select.c +2 -4
  26. data/ext/ca_obj_shift.c +3 -5
  27. data/ext/ca_obj_transpose.c +3 -5
  28. data/ext/ca_obj_unbound_repeat.c +68 -122
  29. data/ext/ca_obj_window.c +7 -9
  30. data/ext/carray.h +17 -8
  31. data/ext/carray_access.c +183 -58
  32. data/ext/carray_attribute.c +151 -197
  33. data/ext/carray_call_cfunc.c +1 -3
  34. data/ext/carray_cast.c +345 -144
  35. data/ext/carray_cast_func.rb +1 -2
  36. data/ext/carray_class.c +28 -36
  37. data/ext/carray_conversion.c +56 -59
  38. data/ext/carray_copy.c +16 -32
  39. data/ext/carray_core.c +73 -60
  40. data/ext/carray_element.c +25 -44
  41. data/ext/carray_generate.c +74 -53
  42. data/ext/carray_iterator.c +13 -15
  43. data/ext/carray_loop.c +53 -82
  44. data/ext/carray_mask.c +99 -119
  45. data/ext/carray_math.rb +28 -12
  46. data/ext/carray_mathfunc.c +1 -3
  47. data/ext/carray_numeric.c +42 -45
  48. data/ext/carray_operator.c +45 -32
  49. data/ext/carray_order.c +231 -65
  50. data/ext/carray_sort_addr.c +14 -21
  51. data/ext/carray_stat.c +1 -3
  52. data/ext/carray_stat_proc.rb +2 -4
  53. data/ext/carray_test.c +41 -30
  54. data/ext/carray_undef.c +1 -11
  55. data/ext/carray_utils.c +138 -51
  56. data/ext/extconf.rb +14 -2
  57. data/ext/mkmath.rb +2 -2
  58. data/ext/ruby_carray.c +15 -7
  59. data/ext/ruby_ccomplex.c +2 -4
  60. data/ext/ruby_float_func.c +1 -3
  61. data/ext/version.h +5 -7
  62. data/lib/carray.rb +9 -9
  63. data/lib/carray/autoload.rb +0 -2
  64. data/lib/carray/autoload/autoload_gem_numo_narray.rb +6 -6
  65. data/lib/carray/basic.rb +1 -3
  66. data/lib/carray/broadcast.rb +101 -0
  67. data/lib/carray/compose.rb +34 -10
  68. data/lib/carray/construct.rb +57 -18
  69. data/lib/carray/info.rb +1 -3
  70. data/lib/carray/inspect.rb +3 -5
  71. data/lib/carray/io/imagemagick.rb +1 -3
  72. data/lib/carray/iterator.rb +3 -3
  73. data/lib/carray/mask.rb +18 -7
  74. data/lib/carray/math.rb +4 -6
  75. data/lib/carray/math/histogram.rb +1 -3
  76. data/lib/carray/math/recurrence.rb +1 -3
  77. data/lib/carray/mkmf.rb +1 -3
  78. data/lib/carray/object/ca_obj_iterator.rb +1 -3
  79. data/lib/carray/object/ca_obj_link.rb +1 -3
  80. data/lib/carray/object/ca_obj_pack.rb +1 -3
  81. data/lib/carray/obsolete.rb +1 -17
  82. data/lib/carray/ordering.rb +29 -5
  83. data/lib/carray/serialize.rb +34 -25
  84. data/lib/carray/string.rb +1 -3
  85. data/lib/carray/struct.rb +3 -5
  86. data/lib/carray/testing.rb +5 -10
  87. data/lib/carray/time.rb +1 -3
  88. data/lib/carray/transform.rb +12 -3
  89. data/misc/NOTE +16 -38
  90. data/spec/Classes/CABitfield_spec.rb +58 -0
  91. data/spec/Classes/CABlockIterator_spec.rb +114 -0
  92. data/spec/Classes/CABlock_spec.rb +205 -0
  93. data/spec/Classes/CAField_spec.rb +39 -0
  94. data/spec/Classes/CAGrid_spec.rb +75 -0
  95. data/spec/Classes/CAMap_spec.rb +0 -0
  96. data/{test/test_CAMapping.rb → spec/Classes/CAMapping_spec.rb} +35 -36
  97. data/spec/Classes/CAObject_attribute_spec.rb +33 -0
  98. data/spec/Classes/CAObject_spec.rb +33 -0
  99. data/spec/Classes/CARefer_spec.rb +93 -0
  100. data/spec/Classes/CARepeat_spec.rb +65 -0
  101. data/spec/Classes/CASelect_spec.rb +22 -0
  102. data/spec/Classes/CAShift_spec.rb +16 -0
  103. data/spec/Classes/CAStruct_spec.rb +71 -0
  104. data/{test/test_CATranspose.rb → spec/Classes/CATranspose_spec.rb} +20 -21
  105. data/spec/Classes/CAUnboudRepeat_spec.rb +102 -0
  106. data/spec/Classes/CAWindow_spec.rb +54 -0
  107. data/spec/Classes/CAWrap_spec.rb +8 -0
  108. data/{test/test_CArray.rb → spec/Classes/CArray_spec.rb} +48 -92
  109. data/spec/Classes/CScalar_spec.rb +55 -0
  110. data/spec/Features/feature_130_spec.rb +19 -0
  111. data/spec/Features/feature_attributes_spec.rb +280 -0
  112. data/spec/Features/feature_boolean_spec.rb +98 -0
  113. data/spec/Features/feature_broadcast.rb +116 -0
  114. data/spec/Features/feature_cast_function.rb +19 -0
  115. data/spec/Features/feature_cast_spec.rb +33 -0
  116. data/spec/Features/feature_class_spec.rb +84 -0
  117. data/spec/Features/feature_complex_spec.rb +42 -0
  118. data/{test/test_composite.rb → spec/Features/feature_composite_spec.rb} +17 -18
  119. data/spec/Features/feature_convert_spec.rb +46 -0
  120. data/spec/Features/feature_copy_spec.rb +123 -0
  121. data/spec/Features/feature_creation_spec.rb +84 -0
  122. data/spec/Features/feature_element_spec.rb +144 -0
  123. data/spec/Features/feature_extream_spec.rb +54 -0
  124. data/spec/Features/feature_generate_spec.rb +74 -0
  125. data/spec/Features/feature_index_spec.rb +69 -0
  126. data/spec/Features/feature_mask_spec.rb +580 -0
  127. data/spec/Features/feature_math_spec.rb +97 -0
  128. data/spec/Features/feature_order_spec.rb +146 -0
  129. data/spec/Features/feature_ref_store_spec.rb +209 -0
  130. data/spec/Features/feature_serialization_spec.rb +125 -0
  131. data/spec/Features/feature_stat_spec.rb +397 -0
  132. data/spec/Features/feature_virtual_spec.rb +48 -0
  133. data/spec/Features/method_eq_spec.rb +81 -0
  134. data/spec/Features/method_is_nan_spec.rb +12 -0
  135. data/spec/Features/method_map_spec.rb +54 -0
  136. data/spec/Features/method_max_with.rb +20 -0
  137. data/spec/Features/method_min_with.rb +19 -0
  138. data/spec/Features/method_ne_spec.rb +18 -0
  139. data/spec/Features/method_project_spec.rb +188 -0
  140. data/spec/Features/method_ref_spec.rb +27 -0
  141. data/spec/Features/method_round_spec.rb +11 -0
  142. data/spec/Features/method_s_linspace_spec.rb +48 -0
  143. data/spec/Features/method_s_span_spec.rb +14 -0
  144. data/spec/Features/method_seq_spec.rb +47 -0
  145. data/spec/Features/method_sort_with.rb +43 -0
  146. data/spec/Features/method_sorted_with.rb +29 -0
  147. data/spec/Features/method_span_spec.rb +42 -0
  148. data/spec/Features/method_wrap_readonly_spec.rb +43 -0
  149. data/{test → spec/UnitTest}/test_CAVirtual.rb +0 -0
  150. data/spec/spec_all.rb +0 -1
  151. data/utils/convert_test.rb +73 -0
  152. data/utils/{extract_rdoc.rb → extract_yard.rb} +7 -12
  153. metadata +74 -58
  154. data/spec/CABlockIterator/CABlockIterator_spec.rb +0 -113
  155. data/spec/CArray/bug/store_spec.rb +0 -27
  156. data/spec/CArray/index/repeat_spec.rb +0 -10
  157. data/spec/CArray/method/eq_spec.rb +0 -80
  158. data/spec/CArray/method/is_nan_spec.rb +0 -12
  159. data/spec/CArray/method/ne_spec.rb +0 -18
  160. data/spec/CArray/method/round_spec.rb +0 -11
  161. data/spec/CArray/object/_attribute_spec.rb +0 -32
  162. data/spec/CArray/object/s_new_spec.rb +0 -31
  163. data/spec/CArray/serialize/Serialization_spec.rb +0 -89
  164. data/test/test_130.rb +0 -23
  165. data/test/test_ALL.rb +0 -49
  166. data/test/test_CABitfield.rb +0 -59
  167. data/test/test_CABlock.rb +0 -208
  168. data/test/test_CAField.rb +0 -40
  169. data/test/test_CAGrid.rb +0 -76
  170. data/test/test_CAMmap.rb +0 -11
  171. data/test/test_CARefer.rb +0 -94
  172. data/test/test_CARepeat.rb +0 -66
  173. data/test/test_CASelect.rb +0 -23
  174. data/test/test_CAShift.rb +0 -17
  175. data/test/test_CAWindow.rb +0 -55
  176. data/test/test_CAWrap.rb +0 -9
  177. data/test/test_CComplex.rb +0 -83
  178. data/test/test_CScalar.rb +0 -91
  179. data/test/test_attribute.rb +0 -281
  180. data/test/test_block_iterator.rb +0 -17
  181. data/test/test_boolean.rb +0 -99
  182. data/test/test_cast.rb +0 -33
  183. data/test/test_class.rb +0 -85
  184. data/test/test_complex.rb +0 -43
  185. data/test/test_convert.rb +0 -79
  186. data/test/test_copy.rb +0 -141
  187. data/test/test_creation.rb +0 -85
  188. data/test/test_element.rb +0 -146
  189. data/test/test_extream.rb +0 -55
  190. data/test/test_generate.rb +0 -75
  191. data/test/test_index.rb +0 -71
  192. data/test/test_mask.rb +0 -578
  193. data/test/test_math.rb +0 -98
  194. data/test/test_order.rb +0 -147
  195. data/test/test_ref_store.rb +0 -211
  196. data/test/test_stat.rb +0 -406
  197. data/test/test_struct.rb +0 -72
  198. data/test/test_virtual.rb +0 -49
@@ -0,0 +1,46 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArray " do
6
+
7
+ example "conversion" do
8
+ is_asserted_by { CA_INT32(1) == CScalar.int32 { 1 } }
9
+ is_asserted_by { CA_INT32([1]) == CArray.int32(1) { [1] } }
10
+ is_asserted_by { CA_INT32([[0, 1], [2, 3]]) == CArray.int32(2, 2).seq! }
11
+ expect { CA_INT32([1,[1,2]]) }.to raise_error(TypeError)
12
+ end
13
+
14
+ example "compact" do
15
+ a = CArray.int(4,1,3,1,2,1).seq!
16
+ b = CArray.int(4,3,2).seq!
17
+
18
+ is_asserted_by { b == a.compacted }
19
+ is_asserted_by { CARefer == a.compacted.class }
20
+ is_asserted_by { b == a.compact }
21
+ is_asserted_by { CArray == a.compact.class }
22
+ end
23
+
24
+ example "to_a" do
25
+ # ---
26
+ a = CArray.int(3).seq!
27
+ is_asserted_by { [0, 1, 2] == a.to_a }
28
+
29
+ # ---
30
+ a = CArray.int(3,3).seq!
31
+ is_asserted_by { [[0, 1, 2], [3, 4, 5], [6, 7, 8]] == a.to_a }
32
+ end
33
+
34
+ example "convert" do
35
+ # ---
36
+ a = CArray.int(3).seq!
37
+ if RUBY_VERSION >= "1.9.0"
38
+ b = a.convert(CA_OBJECT) {|x| (x+"a".ord).chr }
39
+ else
40
+ b = a.convert(CA_OBJECT) {|x| (x+?a).chr }
41
+ end
42
+ is_asserted_by { CA_OBJECT(["a", "b", "c"]) == b }
43
+ end
44
+
45
+
46
+ end
@@ -0,0 +1,123 @@
1
+ require "carray"
2
+ require 'rspec-power_assert'
3
+
4
+ describe "Feature: Copying" do
5
+
6
+ example "to_ca" do
7
+ #
8
+ a = CArray.int32(3,3).seq
9
+ b = a.to_ca
10
+ is_asserted_by { CA_INT32([ [ 0, 1, 2 ],
11
+ [ 3, 4, 5 ],
12
+ [ 6, 7, 8 ] ]) == a }
13
+ is_asserted_by { a == b }
14
+
15
+ # mask does not be templated
16
+ a = CArray.int32(3,3).seq
17
+ a[1,1] = UNDEF
18
+ b = a.to_ca
19
+ is_asserted_by { CA_INT32([ [ 0, 1, 2 ],
20
+ [ 3, UNDEF, 5 ],
21
+ [ 6, 7, 8 ] ]) == a }
22
+ is_asserted_by { a == b }
23
+ end
24
+
25
+ example "template" do
26
+ #
27
+ a = CArray.int32(3,3).seq
28
+ b = a.template {1}
29
+ is_asserted_by { CA_INT32([ [ 0, 1, 2 ],
30
+ [ 3, 4, 5 ],
31
+ [ 6, 7, 8 ] ]) == a }
32
+ is_asserted_by { CA_INT32([ [ 1, 1, 1 ],
33
+ [ 1, 1, 1 ],
34
+ [ 1, 1, 1 ] ]) == b }
35
+
36
+ # mask does not be templated
37
+ a = CArray.int32(3,3).seq
38
+ a[1,1] = UNDEF
39
+ b = a.template {1}
40
+ is_asserted_by { CA_INT32([ [ 0, 1, 2 ],
41
+ [ 3, UNDEF, 5 ],
42
+ [ 6, 7, 8 ] ]) == a }
43
+ is_asserted_by { CA_INT32([ [ 1, 1, 1 ],
44
+ [ 1, 1, 1 ],
45
+ [ 1, 1, 1 ] ]) == b }
46
+ end
47
+
48
+ example "to_type" do
49
+ #
50
+ a = CArray.int8(3,3).seq
51
+ b = a.int32
52
+ is_asserted_by { CA_INT8([ [ 0, 1, 2 ],
53
+ [ 3, 4, 5 ],
54
+ [ 6, 7, 8 ] ]) == a }
55
+ is_asserted_by { CA_INT32([ [ 0, 1, 2 ],
56
+ [ 3, 4, 5 ],
57
+ [ 6, 7, 8 ] ]) == b }
58
+
59
+
60
+ #
61
+ a = CArray.int8(3,3).seq
62
+ a[1,1] = UNDEF
63
+ b = a.int32
64
+ is_asserted_by { CA_INT8([ [ 0, 1, 2 ],
65
+ [ 3, UNDEF, 5 ],
66
+ [ 6, 7, 8 ] ]) == a }
67
+ is_asserted_by { CA_INT32([ [ 0, 1, 2 ],
68
+ [ 3, UNDEF, 5 ],
69
+ [ 6, 7, 8 ] ]) == b }
70
+ end
71
+
72
+ example "convert" do
73
+ #
74
+ a = CArray.int8(3,3).seq
75
+ b = a.convert(CA_INT32) {|x| 2*x}
76
+ is_asserted_by { CA_INT8([ [ 0, 1, 2 ],
77
+ [ 3, 4, 5 ],
78
+ [ 6, 7, 8 ] ]) == a }
79
+ is_asserted_by { CA_INT32([ [ 0, 2, 4 ],
80
+ [ 6, 8, 10 ],
81
+ [ 12, 14, 16 ] ]) == b }
82
+
83
+ #
84
+ a = CArray.int8(3,3).seq
85
+ a[1,1] = UNDEF
86
+ b = a.convert(CA_INT32) {|x| 2 * x }
87
+ is_asserted_by { CA_INT8([ [ 0, 1, 2 ],
88
+ [ 3, UNDEF, 5 ],
89
+ [ 6, 7, 8 ] ]) == a }
90
+ is_asserted_by { CA_INT32([ [ 0, 2, 4 ],
91
+ [ 6, UNDEF, 10 ],
92
+ [ 12, 14, 16 ] ]) == b }
93
+ end
94
+
95
+ example "transform" do
96
+ #
97
+ a = CArray.uint8(2,4) { 0xff }
98
+ b = a.refer(CA_UINT16, [2,2]).to_ca
99
+ is_asserted_by { CA_UINT8([ [ 255, 255, 255, 255 ],
100
+ [ 255, 255, 255, 255 ] ]) == a }
101
+ is_asserted_by { CA_UINT16([ [ 65535, 65535 ],
102
+ [ 65535, 65535 ] ]) == b }
103
+ end
104
+
105
+ example "to_a" do
106
+ #
107
+ a = CArray.int32(3,3).seq
108
+ b = a.to_a
109
+ is_asserted_by { [ [ 0, 1, 2 ],
110
+ [ 3, 4, 5 ],
111
+ [ 6, 7, 8 ] ] == b }
112
+
113
+ # mask does not be templated
114
+ a = CArray.int32(3,3).seq
115
+ a[1,1] = UNDEF
116
+ b = a.to_a
117
+ is_asserted_by { [ [ 0, 1, 2 ],
118
+ [ 3, UNDEF, 5 ],
119
+ [ 6, 7, 8 ] ] == b }
120
+ end
121
+
122
+
123
+ end
@@ -0,0 +1,84 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayCreation " do
6
+
7
+ example "s_new_uint8" do
8
+ # ---
9
+ ca = CArray.new(CA_UINT8, [3, 2, 1])
10
+ is_asserted_by { ca.class == CArray }
11
+ is_asserted_by { CA_UINT8 == ca.data_type }
12
+ is_asserted_by { [3, 2, 1] == ca.dim }
13
+
14
+ # ---
15
+ ca = CArray.new(:uint8, [3, 2, 1])
16
+ is_asserted_by { ca.class == CArray }
17
+ is_asserted_by { CA_UINT8 == ca.data_type }
18
+ is_asserted_by { [3, 2, 1] == ca.dim }
19
+
20
+ # ---
21
+ ca = CArray.uint8(3, 2, 1)
22
+ is_asserted_by { ca.class == CArray }
23
+ is_asserted_by { CA_UINT8 == ca.data_type }
24
+ is_asserted_by { [3, 2, 1] == ca.dim }
25
+ end
26
+
27
+ example "s_new_fixlen" do
28
+ # ---
29
+ ca = CArray.new(CA_FIXLEN, [3, 2, 1], :bytes=>10)
30
+ is_asserted_by { ca.class == CArray }
31
+ is_asserted_by { CA_FIXLEN == ca.data_type }
32
+ is_asserted_by { 10 == ca.bytes }
33
+ is_asserted_by { [3, 2, 1] == ca.dim }
34
+
35
+ # ---
36
+ ca = CArray.new(:fixlen, [3, 2, 1], :bytes=>10)
37
+ is_asserted_by { ca.class == CArray }
38
+ is_asserted_by { CA_FIXLEN == ca.data_type }
39
+ is_asserted_by { 10 == ca.bytes }
40
+ is_asserted_by { [3, 2, 1] == ca.dim }
41
+
42
+ # ---
43
+ ca = CArray.fixlen(3, 2, 1, :bytes=>10)
44
+ is_asserted_by { ca.class == CArray }
45
+ is_asserted_by { CA_FIXLEN == ca.data_type }
46
+ is_asserted_by { 10 == ca.bytes }
47
+ is_asserted_by { [3, 2, 1] == ca.dim }
48
+ end
49
+
50
+ example "s_new_various_types" do
51
+ # ---
52
+ data_type_list = [
53
+ CA_BOOLEAN,
54
+ CA_UINT8, CA_INT8,
55
+ CA_UINT16, CA_INT16,
56
+ CA_UINT32, CA_INT32,
57
+ CA_FLOAT32, CA_FLOAT64,
58
+ CA_OBJECT
59
+ ]
60
+ data_type_list.each do |type|
61
+ ca = CArray.new(type, [3, 2, 1])
62
+ is_asserted_by { ca.class == CArray }
63
+ is_asserted_by { type == ca.data_type }
64
+ end
65
+
66
+ # ---
67
+ data_type_name_list = [
68
+ "boolean",
69
+ "uint8", "int8",
70
+ "uint16", "int16",
71
+ "uint32", "int32",
72
+ "float32", "float64",
73
+ "object"
74
+ ]
75
+ data_type_name_list.each do |type|
76
+ ca = CArray.send(type, 3, 2, 1)
77
+ is_asserted_by { ca.class == CArray }
78
+ is_asserted_by { type == ca.data_type_name }
79
+ end
80
+
81
+ end
82
+
83
+
84
+ end
@@ -0,0 +1,144 @@
1
+ require 'carray'
2
+ require 'rspec-power_assert'
3
+
4
+ describe "Feature: Element" do
5
+
6
+ example "set_unset" do
7
+ #
8
+ a = CArray.boolean(3,3) {0}
9
+ a.set(1,1)
10
+ is_asserted_by { CA_BOOLEAN([[0, 0, 0], [0, 1, 0], [0, 0, 0]]) == a }
11
+
12
+ #
13
+ a = CArray.boolean(3,3) {0}
14
+ a.set(4)
15
+ is_asserted_by { CA_BOOLEAN([[0, 0, 0], [0, 1, 0], [0, 0, 0]]) == a }
16
+
17
+ #
18
+ a = CArray.boolean(3,3) {1}
19
+ a.unset(1,1)
20
+ is_asserted_by { CA_BOOLEAN([[1, 1, 1], [1, 0, 1], [1, 1, 1]]) == a }
21
+
22
+ #
23
+ a = CArray.boolean(3,3) {1}
24
+ a.unset(4)
25
+ is_asserted_by { CA_BOOLEAN([[1, 1, 1], [1, 0, 1], [1, 1, 1]]) == a }
26
+ end
27
+
28
+ example "elem_swap" do
29
+ #
30
+ a = CArray.int(3,3).seq!
31
+ a.elem_swap([1,1], [-1,-1])
32
+ is_asserted_by { 8 == a[1, 1] }
33
+ is_asserted_by { 4 == a[-1, -1] }
34
+
35
+ #
36
+ a = CArray.int(3,3).seq!
37
+ a[1,1] = UNDEF
38
+ a.elem_swap([1,1], [-1,-1])
39
+ is_asserted_by { 8 == a[1, 1] }
40
+ is_asserted_by { UNDEF == a[-1, -1] }
41
+
42
+ #
43
+ a = CArray.int(3,3).seq!
44
+ a.elem_swap(0, -1)
45
+ is_asserted_by { 8 == a[0, 0] }
46
+ is_asserted_by { 0 == a[-1, -1] }
47
+
48
+ #
49
+ a = CArray.int(3,3).seq!
50
+ a[0,0] = UNDEF
51
+ a.elem_swap(0, -1)
52
+ is_asserted_by { 8 == a[0, 0] }
53
+ is_asserted_by { UNDEF == a[-1, -1] }
54
+
55
+ end
56
+
57
+ example "elem_copy" do
58
+ #
59
+ a = CArray.int(3,3).seq!
60
+ a.elem_copy([1,1], [-1,-1])
61
+ is_asserted_by { 4 == a[1, 1] }
62
+ is_asserted_by { 4 == a[-1, -1] }
63
+
64
+ #
65
+ a = CArray.int(3,3).seq!
66
+ a[1,1] = UNDEF
67
+ a.elem_copy([1,1], [-1,-1])
68
+ is_asserted_by { UNDEF == a[1, 1] }
69
+ is_asserted_by { UNDEF == a[-1, -1] }
70
+
71
+ #
72
+ a = CArray.int(3,3).seq!
73
+ a.elem_copy(0, -1)
74
+ is_asserted_by { 0 == a[0, 0] }
75
+ is_asserted_by { 0 == a[-1, -1] }
76
+
77
+ #
78
+ a = CArray.int(3,3).seq!
79
+ a[0,0] = UNDEF
80
+ a.elem_copy(0, -1)
81
+ is_asserted_by { UNDEF == a[0, 0] }
82
+ is_asserted_by { UNDEF == a[-1, -1] }
83
+
84
+ end
85
+
86
+ example "elem_fetch" do
87
+ #
88
+ a = CArray.int(3,3).seq!
89
+ is_asserted_by { 4 == a.elem_fetch([1, 1]) }
90
+ a[1,1] = UNDEF
91
+ is_asserted_by { UNDEF == a.elem_fetch([1, 1]) }
92
+
93
+ #
94
+ a = CArray.int(3,3).seq!
95
+ is_asserted_by { 4 == a.elem_fetch(4) }
96
+ a[1,1] = UNDEF
97
+ is_asserted_by { UNDEF == a.elem_fetch(4) }
98
+ end
99
+
100
+ example "elem_store" do
101
+ #
102
+ a = CArray.int(3,3).seq!
103
+ a.elem_store([1,1], -4)
104
+ is_asserted_by { (-4) == a.elem_fetch([1, 1]) }
105
+ a.elem_store([1,1], UNDEF)
106
+ is_asserted_by { UNDEF == a.elem_fetch([1, 1]) }
107
+
108
+ #
109
+ a = CArray.int(3,3).seq!
110
+ a.elem_store(4, -4)
111
+ is_asserted_by { (-4) == a.elem_fetch(4) }
112
+ a.elem_store(4, UNDEF)
113
+ is_asserted_by { UNDEF == a.elem_fetch(4) }
114
+ end
115
+
116
+ example "elem_incr_decr" do
117
+ #
118
+ a = CArray.int(3,3).seq!
119
+ a.elem_incr([1,1])
120
+ is_asserted_by { 5 == a.elem_fetch([1, 1]) }
121
+ a.elem_decr([1,1])
122
+ is_asserted_by { 4 == a.elem_fetch([1, 1]) }
123
+
124
+ #
125
+ a = CArray.int(3,3).seq!
126
+ a.elem_incr(4)
127
+ is_asserted_by { 5 == a.elem_fetch(4) }
128
+ a.elem_decr(4)
129
+ is_asserted_by { 4 == a.elem_fetch(4) }
130
+ end
131
+
132
+ example "elem_incr_255" do
133
+ #
134
+ a = CArray.uint8(1) {255}
135
+ a.elem_incr(0)
136
+ is_asserted_by { 0 == a.elem_fetch(0) }
137
+
138
+ #
139
+ a = CArray.int8(1) {127}
140
+ a.elem_incr(0)
141
+ is_asserted_by { (-128) == a.elem_fetch(0) }
142
+ end
143
+
144
+ end
@@ -0,0 +1,54 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayExtream " do
6
+
7
+ example "zero_length_array" do
8
+ # ---
9
+ a = CArray.int(0)
10
+ is_asserted_by { 1 == a.rank }
11
+ is_asserted_by { 0 == a.elements }
12
+ is_asserted_by { [0] == a.dim }
13
+ is_asserted_by { 0 == a.dim0 }
14
+
15
+ # ---
16
+ a = CArray.int(0, 3)
17
+ is_asserted_by { 2 == a.rank }
18
+ is_asserted_by { 0 == a.elements }
19
+ is_asserted_by { [0, 3] == a.dim }
20
+ is_asserted_by { 0 == a.dim0 }
21
+ is_asserted_by { 3 == a.dim1 }
22
+
23
+ # ---
24
+ a = CArray.int(3, 0)
25
+ is_asserted_by { 2 == a.rank }
26
+ is_asserted_by { 0 == a.elements }
27
+ is_asserted_by { [3, 0] == a.dim }
28
+ is_asserted_by { 3 == a.dim0 }
29
+ is_asserted_by { 0 == a.dim1 }
30
+ end
31
+
32
+ example "zero_length_fixlen" do
33
+ # ---
34
+ expect { CArray.new(CA_FIXLEN, [3,3], :bytes => 0) }.not_to raise_error()
35
+ expect { CArray.new(CA_FIXLEN, [3,3], :bytes => -1) }.to raise_error(RuntimeError)
36
+ end
37
+
38
+ example "large_rank_array" do
39
+ # ---
40
+ dim = [2] * (CA_RANK_MAX)
41
+ is_asserted_by { CArray.int8(*dim).class == CArray }
42
+
43
+ # ---
44
+ dim = [2] * (CA_RANK_MAX+1)
45
+ expect { CArray.int8(*dim) }.to raise_error(RuntimeError)
46
+ end
47
+
48
+ example "negative_dimension_size" do
49
+ # ---
50
+ expect { CArray.int8(-1) }.to raise_error(RuntimeError)
51
+ expect { CArray.int8(-1, -1) }.to raise_error(RuntimeError)
52
+ end
53
+
54
+ end