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,33 @@
1
+
2
+ require "carray"
3
+ require "rspec-power_assert"
4
+
5
+ describe "CArray#elements" do
6
+
7
+ example "should return element number of array" do
8
+ ca = CArray.int32(2,3,4)
9
+ is_asserted_by { ca.elements == 2*3*4 }
10
+ is_asserted_by { ca.length == 2*3*4 }
11
+ is_asserted_by { ca.size == 2*3*4 }
12
+ end
13
+
14
+ end
15
+
16
+ describe "CArray#data_type" do
17
+
18
+ example "should return data type of array" do
19
+ ca = CArray.int32(2,3,4)
20
+ is_asserted_by { ca.data_type == CA_INT32 }
21
+ end
22
+
23
+ end
24
+
25
+ describe "CArray#dim" do
26
+
27
+ example "should return a array contains the shape of array" do
28
+ ca = CArray.int32(2,3,4)
29
+ is_asserted_by { ca.dim == [2,3,4] }
30
+ end
31
+
32
+ end
33
+
@@ -0,0 +1,33 @@
1
+
2
+ require "carray"
3
+ require "rspec-power_assert"
4
+
5
+
6
+ describe "CArray.new" do
7
+
8
+ example "should return a CA_INT type carray if CA_INT is specified as data_type" do
9
+ ca = CArray.new(CA_INT, [2,3,4])
10
+ is_asserted_by { ca.class == CArray }
11
+ is_asserted_by { ca.data_type == CA_INT }
12
+ end
13
+
14
+ example "should return a CA_FIXLEN type carray if CA_FIXLEN is specified as data_type" do
15
+ ca = CArray.new(CA_FIXLEN, [2,3,4], :bytes=>3)
16
+ is_asserted_by { ca.class == CArray }
17
+ is_asserted_by { ca.data_type == CA_FIXLEN }
18
+ is_asserted_by { ca.bytes == 3 }
19
+ end
20
+
21
+ example "should return a carray filled by 0 when data_type == CA_INT" do
22
+ ca = CArray.new(CA_INT, [2,3,4])
23
+ is_asserted_by { ca[0] == 0 }
24
+ is_asserted_by { ca.all_equal?(0) == true }
25
+ end
26
+
27
+ example "should return a carray filled by string filled by 0 when data_type == CA_FIXLEN" do
28
+ ca = CArray.new(CA_FIXLEN, [2,3,4], :bytes=>3)
29
+ is_asserted_by { ca[0] == "\0\0\0" }
30
+ is_asserted_by { ca.all_equal?("\0\0\0") == true }
31
+ end
32
+
33
+ end
@@ -0,0 +1,93 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayCARefer " do
6
+
7
+ example "virtual_array" do
8
+ a = CArray.int(3,3)
9
+ b = a.refer(CA_INT,[9])
10
+ r = b.parent
11
+ is_asserted_by { b.class == CARefer }
12
+ is_asserted_by { true == b.virtual? }
13
+ is_asserted_by { a == r }
14
+ end
15
+
16
+ example "basic_features" do
17
+ # ---
18
+ a = CArray.int(3,2).seq!
19
+ r = a.reshape(2,3)
20
+ is_asserted_by { a.data_type == r.data_type }
21
+ is_asserted_by { [2, 3] == r.dim }
22
+ is_asserted_by { CA_INT([[0,1,2],
23
+ [3,4,5]]) == r }
24
+
25
+ # ---
26
+ # less data number
27
+ a = CArray.int(3,2).seq!
28
+ r = a.reshape(2,2)
29
+ is_asserted_by { CA_INT([[0,1],
30
+ [2,3]]) == r }
31
+
32
+ # ---
33
+ # data type change (int -> float)
34
+ a = CArray.int(3,2).seq!
35
+ r = a.refer(CA_FLOAT32, [2,3])
36
+ rr = r.refer(CA_INT32, [3,2])
37
+ is_asserted_by { CA_FLOAT == r.data_type }
38
+ is_asserted_by { a == rr }
39
+ end
40
+
41
+ example "refer_to_virtual_array" do
42
+ # ---
43
+ a = CArray.int(3,3).seq!
44
+ b = a[1..2,1..2]
45
+ r = b.reshape(4)
46
+ is_asserted_by { CA_INT([4, 5, 7, 8]) == r }
47
+
48
+ # ---
49
+ a = CArray.int(3).seq!
50
+ b = a[:%,3]
51
+ r = b.reshape(9)
52
+ is_asserted_by { CA_INT([0, 0, 0, 1, 1, 1, 2, 2, 2]) == r }
53
+
54
+ end
55
+
56
+ example "invalid_args" do
57
+ # ---
58
+ a = CArray.int8(3,3).seq!
59
+ expect { a.reshape(10) }.to raise_error(RuntimeError) ### too large data num
60
+ expect { a.refer(CA_INT,[9]) }.to raise_error(RuntimeError)
61
+ ### larger data type bytes
62
+
63
+ end
64
+
65
+ example "flatten" do
66
+ a = CArray.int(3,3).seq!
67
+ b = CArray.int(9).seq!
68
+
69
+ # ---
70
+ is_asserted_by { b == a.flatten }
71
+ is_asserted_by { b == a.flattened }
72
+
73
+ # ---
74
+ c = a.reverse
75
+ a.flattened.reverse!
76
+ is_asserted_by { c == a }
77
+ end
78
+
79
+ example "refer_variant" do
80
+ a = CArray.fixlen(4, :bytes=>4) {"abcd"}
81
+ b = CA_FIXLEN([["ab", "cd"],
82
+ ["ab", "cd"],
83
+ ["ab", "cd"],
84
+ ["ab", "cd"]], :bytes=>2)
85
+ c = CA_FIXLEN(["abcdabcd", "abcdabcd"], :bytes=>8)
86
+
87
+ # ---
88
+ is_asserted_by { b == a.refer(CA_FIXLEN, [4, 2], bytes: 2) }
89
+ is_asserted_by { c == a.refer(CA_FIXLEN, [2], bytes: 8) }
90
+
91
+ end
92
+
93
+ end
@@ -0,0 +1,65 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayCARepeat " do
6
+
7
+ example "virtual_array" do
8
+ a = CArray.int(3)
9
+ b = a[:%,3]
10
+ r = b.parent
11
+ is_asserted_by { b.class == CARepeat }
12
+ is_asserted_by { true == b.virtual? }
13
+ is_asserted_by { true == b.read_only? }
14
+ is_asserted_by { false == b.attached? }
15
+ is_asserted_by { a == r }
16
+ end
17
+
18
+ example "basic_feature" do
19
+ # ---
20
+ a = CArray.int(3).seq!
21
+ r1 = a[3,:%]
22
+ r2 = a[:%,3]
23
+ is_asserted_by { CA_INT([[0,1,2],
24
+ [0,1,2],
25
+ [0,1,2]]) == r1 }
26
+ is_asserted_by { CA_INT([[0,0,0],
27
+ [1,1,1],
28
+ [2,2,2]]) == r2 }
29
+ # ---
30
+ b = CArray.int(2,2).seq!
31
+ is_asserted_by { CA_INT([[[ 0, 1 ],
32
+ [ 0, 1 ]],
33
+ [[ 2, 3 ],
34
+ [ 2, 3 ]]]) == b[:%,2,:%] }
35
+ end
36
+
37
+ example "store" do
38
+ a = CArray.int(3).seq!
39
+ r1 = a[3,:%]
40
+ expect { r1[1,1] = 1 }.to raise_error(RuntimeError)
41
+ expect { r1.seq! }.to raise_error(RuntimeError)
42
+ r2 = a[:%,3]
43
+ expect { r1[1,1] = 1 }.to raise_error(RuntimeError)
44
+ expect { r1.seq! }.to raise_error(RuntimeError)
45
+ end
46
+
47
+ example "mask_repeat" do
48
+ a = CArray.int(3).seq!
49
+ a[1] = UNDEF
50
+ r1 = a[3,:%]
51
+ x1 = r1.to_ca
52
+ is_asserted_by { 3 == r1.count_masked }
53
+ is_asserted_by { 3 == r1[nil, 1].count_masked }
54
+ is_asserted_by { 3 == x1.count_masked }
55
+ is_asserted_by { 3 == x1[nil, 1].count_masked }
56
+
57
+ r2 = a[:%,3]
58
+ x2 = r2.to_ca
59
+ is_asserted_by { 3 == r2.count_masked }
60
+ is_asserted_by { 3 == r2[1, nil].count_masked }
61
+ is_asserted_by { 3 == x2.count_masked }
62
+ is_asserted_by { 3 == x2[1, nil].count_masked }
63
+ end
64
+
65
+ end
@@ -0,0 +1,22 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayCASelect " do
6
+
7
+ example "virtual_array" do
8
+ a = CArray.int(3,3) { 0 }
9
+ b = a[a.eq(0)]
10
+ r = b.parent
11
+ is_asserted_by { b.class == CASelect }
12
+ is_asserted_by { true == b.virtual? }
13
+ is_asserted_by { a == r }
14
+ end
15
+
16
+ example "select_to_a" do
17
+ a = CArray.int(3,3).seq!
18
+ s = a[a >= 4]
19
+ is_asserted_by { [4, 5, 6, 7, 8] == a[s].to_a }
20
+ end
21
+
22
+ end
@@ -0,0 +1,16 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayCAShift " do
6
+
7
+ example "virtual_array" do
8
+ a = CArray.int(3,3)
9
+ b = a.shifted(1,1)
10
+ r = b.parent
11
+ is_asserted_by { b.class == CAShift }
12
+ is_asserted_by { true == b.virtual? }
13
+ is_asserted_by { a == r }
14
+ end
15
+
16
+ end
@@ -0,0 +1,71 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayStruct " do
6
+
7
+ example "struct" do
8
+ st = CA.struct(:pack=>1) { uint16 :mem_i; char_p :mem_f, :bytes => 3 }
9
+ a = CArray.new(st, [3])
10
+ b = CArray.new(:fixlen, [3], :bytes=>3)
11
+ is_asserted_by { true == a.has_data_class? }
12
+ is_asserted_by { st == a.data_class }
13
+ is_asserted_by { true == a.to_ca.has_data_class? }
14
+ is_asserted_by { st == a.to_ca.data_class }
15
+ is_asserted_by { true == a.template.has_data_class? }
16
+ is_asserted_by { st == a.template.data_class }
17
+ is_asserted_by { true == a[].has_data_class? }
18
+ is_asserted_by { st == a[].data_class }
19
+ is_asserted_by { false == b.has_data_class? }
20
+ end
21
+
22
+ example "struct_to_type" do
23
+ st = CA.struct(:pack=>1) { uint16 :mem_i; char_p :mem_f, :bytes => 3 }
24
+ is_asserted_by { 5 == st.size }
25
+ a = CArray.new(:fixlen, [3], :bytes=>5)
26
+ b = a.to_type(st)
27
+ is_asserted_by { false == a.has_data_class? }
28
+ is_asserted_by { true == b.has_data_class? }
29
+ is_asserted_by { st == b.data_class }
30
+ end
31
+
32
+ example "struct_refer" do
33
+ st = CA.struct(:pack=>1) { uint16 :mem_i; char_p :mem_f, :bytes => 3 }
34
+ a = CArray.new(:fixlen, [3], :bytes=>5)
35
+ b = a.refer(st, a.dim)
36
+ is_asserted_by { false == a.has_data_class? }
37
+ is_asserted_by { true == b.has_data_class? }
38
+ is_asserted_by { st == b.data_class }
39
+ end
40
+
41
+ example "swap_bytes" do
42
+ st = CA.struct(:pack=>1) {
43
+ uint16 :mem_i
44
+ char_p :mem_f, :bytes => 3
45
+ struct(:mem_s) {
46
+ uint16 :mem_i
47
+ char_p :mem_f, :bytes => 3
48
+ }
49
+ }
50
+ a = CArray.new(st, [3])
51
+ is_asserted_by { true == a.has_data_class? }
52
+ is_asserted_by { st == a.data_class }
53
+ is_asserted_by { CAField == a.field(:mem_i).class }
54
+ is_asserted_by { CAField == a.field(:mem_s).class }
55
+ is_asserted_by { a.field("mem_i") == a["mem_i"] }
56
+ a["mem_i"] = 255
57
+ a["mem_f"] = "abc"
58
+ a["mem_s"]["mem_i"] = (255 << 8)
59
+ a["mem_s"]["mem_f"] = "abc"
60
+ b = CArray.new(st, [3])
61
+ b["mem_i"] = (255 << 8)
62
+ b["mem_f"] = "cba"
63
+ b["mem_s"]["mem_i"] = 255
64
+ b["mem_s"]["mem_f"] = "cba"
65
+ is_asserted_by { b == a.swap_bytes }
66
+ is_asserted_by { a == b.swap_bytes }
67
+ a.swap_bytes!
68
+ is_asserted_by { b == a }
69
+ end
70
+
71
+ end
@@ -1,26 +1,25 @@
1
- $:.unshift("../lib", "..")
2
1
 
3
- require 'test/unit'
4
2
  require 'carray'
3
+ require "rspec-power_assert"
5
4
 
6
- class TestCArrayCATranspose < Test::Unit::TestCase
5
+ describe "TestCArrayCATranspose " do
7
6
 
8
- def test_virtual_array
7
+ example "virtual_array" do
9
8
  a = CArray.int(3,3)
10
9
  b = a.transposed
11
10
  r = b.parent
12
- assert_instance_of(CATranspose, b)
13
- assert_equal(true, b.virtual?)
14
- assert_equal(a, r)
11
+ is_asserted_by { b.class == CATranspose }
12
+ is_asserted_by { true == b.virtual? }
13
+ is_asserted_by { a == r }
15
14
  end
16
15
 
17
- def test_basic_feature
16
+ example "basic_feature" do
18
17
  # ---
19
18
  a = CArray.int(3,3).seq!
20
19
  t = a.transposed
21
- assert_equal(CA_INT([[0,3,6],
20
+ is_asserted_by { CA_INT([[0,3,6],
22
21
  [1,4,7],
23
- [2,5,8]]), t)
22
+ [2,5,8]]) == t }
24
23
 
25
24
  # ---
26
25
  a = CArray.int(2,2,2).seq!
@@ -28,34 +27,34 @@ class TestCArrayCATranspose < Test::Unit::TestCase
28
27
  t2 = a.transposed(0,2,1) # 1 <-> 2
29
28
  t3 = a.transposed(2,1,0) # 0 <-> 2
30
29
  t4 = a.transposed(1,0,2) # 0 <-> 1
31
- assert_equal(CA_INT([[[0,1],
30
+ is_asserted_by { CA_INT([[[0,1],
32
31
  [2,3]],
33
32
  [[4,5],
34
- [6,7]]]), t1)
35
- assert_equal(CA_INT([[[0,2],
33
+ [6,7]]]) == t1 }
34
+ is_asserted_by { CA_INT([[[0,2],
36
35
  [1,3]],
37
36
  [[4,6],
38
- [5,7]]]), t2)
39
- assert_equal(CA_INT([[[0,4],
37
+ [5,7]]]) == t2 }
38
+ is_asserted_by { CA_INT([[[0,4],
40
39
  [2,6]],
41
40
  [[1,5],
42
- [3,7]]]), t3)
43
- assert_equal(CA_INT([[[0,1],
41
+ [3,7]]]) == t3 }
42
+ is_asserted_by { CA_INT([[[0,1],
44
43
  [4,5]],
45
44
  [[2,3],
46
- [6,7]]]), t4)
45
+ [6,7]]]) == t4 }
47
46
 
48
47
  # ---
49
48
  a = CArray.int(2,2,2).seq!
50
49
 
51
50
  x1 = a.transposed(1,2,0) # 0 -> 2, 1 -> 0, 2 -> 1
52
51
  y1 = a.transposed(2,1,0).transposed(1,0,2) # 1 <-> 2; 0 <-> 1
53
- assert_equal(y1, x1)
52
+ is_asserted_by { y1 == x1 }
54
53
 
55
54
  x2 = a.transposed(2,0,1) # 0 -> 1, 1 -> 2, 2 -> 0
56
55
  y2 = a.transposed(2,1,0).transposed(0,2,1) # 0 <-> 2; 1 <-> 2
57
- assert_equal(y2, x2)
56
+ is_asserted_by { y2 == x2 }
58
57
 
59
58
  end
60
59
 
61
- end
60
+ end
@@ -0,0 +1,102 @@
1
+ require 'carray'
2
+ require "rspec-power_assert"
3
+
4
+ describe "CAUnboundRepeat" do
5
+
6
+ example "basic" do
7
+ a = CA_INT([1,2,3])
8
+ b = a[:*,nil]
9
+ c = a[nil,:*]
10
+
11
+ is_asserted_by { b.class == CAUnboundRepeat }
12
+ is_asserted_by { b.ndim == 2 }
13
+ is_asserted_by { b.shape == [1,3] }
14
+
15
+
16
+ is_asserted_by { c.class == CAUnboundRepeat }
17
+ is_asserted_by { c.ndim == 2 }
18
+ is_asserted_by { c.shape == [3,1] }
19
+
20
+ end
21
+
22
+ example "ref" do
23
+ a = CA_INT(0..2)[:*,nil]
24
+ is_asserted_by { a[0] == 0 }
25
+ is_asserted_by { a[1] == 1 }
26
+ is_asserted_by { a[2] == 2 }
27
+ is_asserted_by { a.bind(3,3) == CA_INT([[0,1,2],
28
+ [0,1,2],
29
+ [0,1,2]]) }
30
+ is_asserted_by { a[0,0] == 0 }
31
+ is_asserted_by { a[0,1] == 1 }
32
+ is_asserted_by { a[0,2] == 2 }
33
+ is_asserted_by { a.to_a == [[0,1,2]] }
34
+ end
35
+
36
+ example "bind" do
37
+
38
+ a = CA_INT([1,2,3])
39
+ b = a[:*,nil]
40
+ c = a[nil,:*]
41
+
42
+ is_asserted_by { b.bind(3,3) == CA_INT([[1,2,3],
43
+ [1,2,3],
44
+ [1,2,3]]) }
45
+ is_asserted_by { c.bind(3,3) == CA_INT([[1,1,1],
46
+ [2,2,2],
47
+ [3,3,3]]) }
48
+ end
49
+
50
+ example "bind_with" do
51
+
52
+ a = CA_INT([1,2,3])
53
+ b = a[:*,nil]
54
+ c = a[nil,:*]
55
+ d = CArray.int(3,3)
56
+
57
+ is_asserted_by { b.bind_with(d) == CA_INT([[1,2,3],
58
+ [1,2,3],
59
+ [1,2,3]]) }
60
+ is_asserted_by { c.bind_with(d) == CA_INT([[1,1,1],
61
+ [2,2,2],
62
+ [3,3,3]]) }
63
+ end
64
+
65
+ example "arithmetic operation" do
66
+
67
+ a = CA_INT([1,2,3])
68
+ b = a[:*,nil]
69
+ c = a[nil,:*]
70
+
71
+ is_asserted_by { b * c == CA_INT([[1,2,3],
72
+ [2,4,6],
73
+ [3,6,9]]) }
74
+
75
+
76
+ end
77
+
78
+ example "chain of unboundrepeat" do
79
+ a = CA_INT([1,2,3])
80
+ b = CArray.int(3,4)
81
+
82
+ is_asserted_by { a[:*,nil].shape == [1,3] }
83
+ is_asserted_by { a[:*,nil][:*,nil,nil].shape == [1,1,3] }
84
+
85
+ expect { a[:*,nil][nil,:*] }.to raise_error(ArgumentError)
86
+
87
+ is_asserted_by { a[:*,nil][nil,nil,:*].shape == [1,3,1] }
88
+ is_asserted_by { a[:*,nil][nil,:*,nil].shape == [1,1,3] }
89
+ is_asserted_by { a[:*,nil][:*,nil,nil].shape == [1,1,3] }
90
+ end
91
+
92
+ example "extra * in arithmetic operation" do
93
+ a = CA_INT(1..3)
94
+ b = CA_INT(1..3)
95
+ aa = a[:*,:*,nil]
96
+ bb = b[:*,nil,:*]
97
+ is_asserted_by { aa.bind_with(bb) == a[3,:%][:*,nil,nil] }
98
+ is_asserted_by { aa + bb == (a[3,:%]+b[:%,3])[:*,nil,nil] }
99
+ end
100
+
101
+
102
+ end