carray 1.5.1 → 1.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (174) hide show
  1. checksums.yaml +4 -4
  2. data/{LICENSES → LICENSE} +0 -0
  3. data/NEWS.md +42 -0
  4. data/README.md +5 -5
  5. data/TODO.md +16 -0
  6. data/carray.gemspec +9 -5
  7. data/ext/ca_iter_block.c +3 -5
  8. data/ext/ca_iter_dimension.c +4 -5
  9. data/ext/ca_iter_window.c +2 -4
  10. data/ext/ca_obj_array.c +394 -124
  11. data/ext/ca_obj_bitarray.c +3 -5
  12. data/ext/ca_obj_bitfield.c +3 -5
  13. data/ext/ca_obj_block.c +6 -8
  14. data/ext/ca_obj_fake.c +3 -5
  15. data/ext/ca_obj_farray.c +3 -5
  16. data/ext/ca_obj_field.c +15 -17
  17. data/ext/ca_obj_grid.c +5 -6
  18. data/ext/ca_obj_mapping.c +2 -4
  19. data/ext/ca_obj_object.c +3 -5
  20. data/ext/ca_obj_reduce.c +2 -4
  21. data/ext/ca_obj_refer.c +5 -7
  22. data/ext/ca_obj_repeat.c +2 -4
  23. data/ext/ca_obj_select.c +2 -4
  24. data/ext/ca_obj_shift.c +3 -5
  25. data/ext/ca_obj_transpose.c +3 -5
  26. data/ext/ca_obj_unbound_repeat.c +58 -81
  27. data/ext/ca_obj_window.c +7 -9
  28. data/ext/carray.h +13 -8
  29. data/ext/carray_access.c +111 -18
  30. data/ext/carray_attribute.c +136 -197
  31. data/ext/carray_call_cfunc.c +1 -3
  32. data/ext/carray_cast.c +344 -143
  33. data/ext/carray_cast_func.rb +1 -2
  34. data/ext/carray_class.c +28 -36
  35. data/ext/carray_conversion.c +49 -59
  36. data/ext/carray_copy.c +16 -32
  37. data/ext/carray_core.c +51 -44
  38. data/ext/carray_element.c +25 -44
  39. data/ext/carray_generate.c +71 -50
  40. data/ext/carray_iterator.c +13 -15
  41. data/ext/carray_loop.c +53 -82
  42. data/ext/carray_mask.c +87 -117
  43. data/ext/carray_math.rb +8 -10
  44. data/ext/carray_mathfunc.c +1 -3
  45. data/ext/carray_numeric.c +19 -3
  46. data/ext/carray_operator.c +45 -32
  47. data/ext/carray_order.c +72 -65
  48. data/ext/carray_sort_addr.c +14 -21
  49. data/ext/carray_stat.c +1 -3
  50. data/ext/carray_stat_proc.rb +2 -4
  51. data/ext/carray_test.c +28 -30
  52. data/ext/carray_undef.c +1 -3
  53. data/ext/carray_utils.c +12 -4
  54. data/ext/extconf.rb +1 -1
  55. data/ext/mkmath.rb +1 -1
  56. data/ext/ruby_carray.c +11 -6
  57. data/ext/ruby_ccomplex.c +1 -3
  58. data/ext/ruby_float_func.c +1 -3
  59. data/ext/version.h +5 -7
  60. data/lib/carray.rb +2 -0
  61. data/lib/carray/autoload/autoload_gem_numo_narray.rb +6 -6
  62. data/lib/carray/broadcast.rb +45 -0
  63. data/lib/carray/construct.rb +21 -4
  64. data/lib/carray/iterator.rb +1 -0
  65. data/lib/carray/ordering.rb +28 -2
  66. data/spec/Classes/CABitfield_spec.rb +58 -0
  67. data/spec/Classes/CABlockIterator_spec.rb +114 -0
  68. data/spec/Classes/CABlock_spec.rb +205 -0
  69. data/spec/Classes/CAField_spec.rb +39 -0
  70. data/spec/Classes/CAGrid_spec.rb +75 -0
  71. data/spec/Classes/CAMap_spec.rb +0 -0
  72. data/{test/test_CAMapping.rb → spec/Classes/CAMapping_spec.rb} +35 -36
  73. data/spec/Classes/CAObject_attribute_spec.rb +33 -0
  74. data/spec/Classes/CAObject_spec.rb +33 -0
  75. data/spec/Classes/CARefer_spec.rb +93 -0
  76. data/spec/Classes/CARepeat_spec.rb +65 -0
  77. data/spec/Classes/CASelect_spec.rb +22 -0
  78. data/spec/Classes/CAShift_spec.rb +16 -0
  79. data/spec/Classes/CAStruct_spec.rb +71 -0
  80. data/{test/test_CATranspose.rb → spec/Classes/CATranspose_spec.rb} +20 -21
  81. data/spec/Classes/CAUnboudRepeat_spec.rb +78 -0
  82. data/spec/Classes/CAWindow_spec.rb +54 -0
  83. data/spec/Classes/CAWrap_spec.rb +8 -0
  84. data/{test/test_CArray.rb → spec/Classes/CArray_spec.rb} +48 -92
  85. data/spec/Classes/CScalar_spec.rb +55 -0
  86. data/spec/Features/feature_130_spec.rb +19 -0
  87. data/spec/Features/feature_attributes_spec.rb +280 -0
  88. data/spec/Features/feature_boolean_spec.rb +97 -0
  89. data/spec/Features/feature_broadcast.rb +100 -0
  90. data/spec/Features/feature_cast_function.rb +19 -0
  91. data/spec/Features/feature_cast_spec.rb +33 -0
  92. data/spec/Features/feature_class_spec.rb +84 -0
  93. data/spec/Features/feature_complex_spec.rb +42 -0
  94. data/{test/test_composite.rb → spec/Features/feature_composite_spec.rb} +17 -18
  95. data/spec/Features/feature_convert_spec.rb +46 -0
  96. data/spec/Features/feature_copy_spec.rb +123 -0
  97. data/spec/Features/feature_creation_spec.rb +84 -0
  98. data/spec/Features/feature_element_spec.rb +144 -0
  99. data/spec/Features/feature_extream_spec.rb +54 -0
  100. data/spec/Features/feature_generate_spec.rb +74 -0
  101. data/spec/Features/feature_index_spec.rb +69 -0
  102. data/spec/Features/feature_mask_spec.rb +574 -0
  103. data/spec/Features/feature_math_spec.rb +97 -0
  104. data/spec/Features/feature_order_spec.rb +146 -0
  105. data/spec/Features/feature_ref_store_spec.rb +209 -0
  106. data/spec/Features/feature_serialization_spec.rb +125 -0
  107. data/spec/Features/feature_stat_spec.rb +397 -0
  108. data/spec/Features/feature_virtual_spec.rb +48 -0
  109. data/spec/Features/method_eq_spec.rb +81 -0
  110. data/spec/Features/method_is_nan_spec.rb +12 -0
  111. data/spec/Features/method_map_spec.rb +54 -0
  112. data/spec/Features/method_max_with.rb +20 -0
  113. data/spec/Features/method_min_with.rb +19 -0
  114. data/spec/Features/method_ne_spec.rb +18 -0
  115. data/spec/Features/method_project_spec.rb +188 -0
  116. data/spec/Features/method_ref_spec.rb +27 -0
  117. data/spec/Features/method_round_spec.rb +11 -0
  118. data/spec/Features/method_s_linspace_spec.rb +48 -0
  119. data/spec/Features/method_s_span_spec.rb +14 -0
  120. data/spec/Features/method_seq_spec.rb +47 -0
  121. data/spec/Features/method_sort_with.rb +43 -0
  122. data/spec/Features/method_sorted_with.rb +29 -0
  123. data/spec/Features/method_span_spec.rb +42 -0
  124. data/spec/Features/method_wrap_readonly_spec.rb +43 -0
  125. data/{test → spec/UnitTest}/test_CAVirtual.rb +0 -0
  126. data/spec/spec_all.rb +0 -1
  127. data/utils/convert_test.rb +73 -0
  128. data/utils/{extract_rdoc.rb → extract_yard.rb} +7 -12
  129. metadata +77 -60
  130. data/spec/CABlockIterator/CABlockIterator_spec.rb +0 -113
  131. data/spec/CArray/bug/store_spec.rb +0 -27
  132. data/spec/CArray/index/repeat_spec.rb +0 -10
  133. data/spec/CArray/method/eq_spec.rb +0 -80
  134. data/spec/CArray/method/is_nan_spec.rb +0 -12
  135. data/spec/CArray/method/ne_spec.rb +0 -18
  136. data/spec/CArray/method/round_spec.rb +0 -11
  137. data/spec/CArray/object/_attribute_spec.rb +0 -32
  138. data/spec/CArray/object/s_new_spec.rb +0 -31
  139. data/spec/CArray/serialize/Serialization_spec.rb +0 -89
  140. data/test/test_130.rb +0 -23
  141. data/test/test_ALL.rb +0 -49
  142. data/test/test_CABitfield.rb +0 -59
  143. data/test/test_CABlock.rb +0 -208
  144. data/test/test_CAField.rb +0 -40
  145. data/test/test_CAGrid.rb +0 -76
  146. data/test/test_CAMmap.rb +0 -11
  147. data/test/test_CARefer.rb +0 -94
  148. data/test/test_CARepeat.rb +0 -66
  149. data/test/test_CASelect.rb +0 -23
  150. data/test/test_CAShift.rb +0 -17
  151. data/test/test_CAWindow.rb +0 -55
  152. data/test/test_CAWrap.rb +0 -9
  153. data/test/test_CComplex.rb +0 -83
  154. data/test/test_CScalar.rb +0 -91
  155. data/test/test_attribute.rb +0 -281
  156. data/test/test_block_iterator.rb +0 -17
  157. data/test/test_boolean.rb +0 -99
  158. data/test/test_cast.rb +0 -33
  159. data/test/test_class.rb +0 -85
  160. data/test/test_complex.rb +0 -43
  161. data/test/test_convert.rb +0 -79
  162. data/test/test_copy.rb +0 -141
  163. data/test/test_creation.rb +0 -85
  164. data/test/test_element.rb +0 -146
  165. data/test/test_extream.rb +0 -55
  166. data/test/test_generate.rb +0 -75
  167. data/test/test_index.rb +0 -71
  168. data/test/test_mask.rb +0 -578
  169. data/test/test_math.rb +0 -98
  170. data/test/test_order.rb +0 -147
  171. data/test/test_ref_store.rb +0 -211
  172. data/test/test_stat.rb +0 -406
  173. data/test/test_struct.rb +0 -72
  174. data/test/test_virtual.rb +0 -49
@@ -0,0 +1,39 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayCAField " do
6
+
7
+ example "virtual_array" do
8
+ a = CArray.int(3,3)
9
+ b = a.field(0,CA_INT8)
10
+ r = b.parent
11
+ is_asserted_by { b.class == CAField }
12
+ is_asserted_by { true == b.virtual? }
13
+ is_asserted_by { a == r }
14
+ end
15
+
16
+ example "attributes" do
17
+ #
18
+ a = CArray.int16(3,3) { 0x1122 }
19
+ b = a.field(0, CA_INT8)
20
+ is_asserted_by { CA_INT8 == b.data_type }
21
+ is_asserted_by { [3, 3] == b.dim }
22
+ end
23
+
24
+ example "endian" do
25
+ #
26
+ a = CArray.int16(3,3) { 0x1122 }
27
+ b = CArray.int8(3,3) { 0x11 }
28
+ c = CArray.int8(3,3) { 0x22 }
29
+ if CArray.big_endian?
30
+ is_asserted_by { b == a.field(0, CA_INT8) }
31
+ is_asserted_by { c == a.field(1, CA_INT8) }
32
+ else
33
+ is_asserted_by { b == a.field(1, CA_INT8) }
34
+ is_asserted_by { c == a.field(0, CA_INT8) }
35
+ end
36
+ end
37
+
38
+
39
+ end
@@ -0,0 +1,75 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayCAGrid " do
6
+
7
+ example "virtual_array" do
8
+ a = CArray.int(3,3)
9
+ i = CArray.int(3).seq
10
+ b = a[i, 0..1]
11
+ r = b.parent
12
+ is_asserted_by { b.class == CAGrid }
13
+ is_asserted_by { true == b.virtual? }
14
+ is_asserted_by { a == r }
15
+ end
16
+
17
+ example "basic_features" do
18
+ # ---
19
+ a = CArray.int(3,3).seq
20
+ i = CA_INT([1,2,0])
21
+ is_asserted_by { CA_INT([[3,4,5],
22
+ [6,7,8],
23
+ [0,1,2]]) == a[i,nil] }
24
+ is_asserted_by { CA_INT([[1,2,0],
25
+ [4,5,3],
26
+ [7,8,6]]) == a[nil,i] }
27
+ is_asserted_by { CA_INT([[4,5,3],
28
+ [7,8,6],
29
+ [1,2,0]]) == a[i,i] }
30
+ # ---
31
+ a = CArray.int(3,3).seq
32
+ i = CA_INT([-1,-2,-3])
33
+ is_asserted_by { CA_INT([[6,7,8],
34
+ [3,4,5],
35
+ [0,1,2]]) == a[i,nil] }
36
+ is_asserted_by { CA_INT([[2,1,0],
37
+ [5,4,3],
38
+ [8,7,6]]) == a[nil,i] }
39
+ is_asserted_by { CA_INT([[8,7,6],
40
+ [5,4,3],
41
+ [2,1,0]]) == a[i,i] }
42
+ end
43
+
44
+ example "invalid_args" do
45
+ # ---
46
+ a = CArray.int(3,3).seq
47
+ i = CA_INT([0,1,2])
48
+ expect { a.grid(i) }.to raise_error(ArgumentError)
49
+
50
+ # ---
51
+ a = CArray.int(3,3).seq
52
+ i = CA_INT([0,1,2])
53
+ i[0] = UNDEF
54
+ is_asserted_by { CA_INT([[3, 4, 5], [6, 7, 8]]) == a.grid(i, nil) }
55
+
56
+ # ---
57
+ a = CArray.int(3,3).seq
58
+ i = CA_INT([])
59
+ is_asserted_by { CArray.int(0, 3) == a.grid(i, nil) }
60
+ is_asserted_by { CArray.int(3, 0) == a.grid(nil, i) }
61
+ end
62
+
63
+ example "out_of_index" do
64
+ # ---
65
+ a = CArray.int(3,3).seq
66
+ i1 = CA_INT([1,2,3])
67
+ i2 = CA_INT([-4,-3,-2])
68
+ expect { a[i1,nil] }.to raise_error(IndexError)
69
+ expect { a[nil,i1] }.to raise_error(IndexError)
70
+ expect { a[i2,nil] }.to raise_error(IndexError)
71
+ expect { a[nil,i2] }.to raise_error(IndexError)
72
+ end
73
+
74
+
75
+ end
File without changes
@@ -1,106 +1,105 @@
1
- $:.unshift("../lib", "..")
2
1
 
3
- require 'test/unit'
4
2
  require 'carray'
3
+ require "rspec-power_assert"
5
4
 
6
- class TestCArrayCAMapping < Test::Unit::TestCase
5
+ describe "TestCArrayCAMapping " do
7
6
 
8
- def test_virtual_array
7
+ example "virtual_array" do
9
8
  a = CArray.int(3,3)
10
9
  idx = CArray.int(3,3).seq!
11
10
  b = a[idx]
12
11
  r = b.parent
13
- assert_instance_of(CAMapping, b)
14
- assert_equal(true, b.virtual?)
15
- assert_equal(a, r)
12
+ is_asserted_by { b.class == CAMapping }
13
+ is_asserted_by { true == b.virtual? }
14
+ is_asserted_by { a == r }
16
15
  end
17
16
 
18
- def test_basic_features
17
+ example "basic_features" do
19
18
  # ---
20
19
  a = CArray.int(3,3).seq!
21
20
  idx = CArray.int(3,3) { 4 }
22
- assert_equal(CA_INT([[4,4,4],
21
+ is_asserted_by { CA_INT([[4,4,4],
23
22
  [4,4,4],
24
- [4,4,4]]), a[idx])
23
+ [4,4,4]]) == a[idx] }
25
24
  # ---
26
25
  a = CArray.int(3,3).seq!
27
26
  idx = CArray.int(3,3).seq!.reverse!
28
- assert_equal(CA_INT([[8,7,6],
27
+ is_asserted_by { CA_INT([[8,7,6],
29
28
  [5,4,3],
30
- [2,1,0]]), a[idx])
29
+ [2,1,0]]) == a[idx] }
31
30
  a[idx].seq!
32
- assert_equal(CA_INT([[8,7,6],
31
+ is_asserted_by { CA_INT([[8,7,6],
33
32
  [5,4,3],
34
- [2,1,0]]), a)
33
+ [2,1,0]]) == a }
35
34
  end
36
35
 
37
- def test_invalid_args
36
+ example "invalid_args" do
38
37
  # ---
39
38
  a = CArray.int(3,3).seq!
40
39
  idx = CArray.int(3,3) { 4 }
41
40
  idx[1,1] = UNDEF
42
- assert_raise(ArgumentError) { a[idx] }
41
+ expect { a[idx] }.to raise_error(ArgumentError)
43
42
  end
44
43
 
45
- def test_out_of_range
44
+ example "out_of_range" do
46
45
  # ---
47
46
  a = CArray.int(3,3).seq!
48
47
  idx = CArray.int(3,3) { 9 }
49
- assert_raise(IndexError) { a[idx] }
48
+ expect { a[idx] }.to raise_error(IndexError)
50
49
 
51
50
  # ---
52
51
  a = CArray.int(3,3).seq!
53
52
  idx = CArray.int(3,3) { -1 }
54
- assert_equal(CA_INT([[8,8,8],
53
+ is_asserted_by { CA_INT([[8,8,8],
55
54
  [8,8,8],
56
- [8,8,8]]), a[idx])
55
+ [8,8,8]]) == a[idx] }
57
56
  end
58
57
 
59
- def test_mask
58
+ example "mask" do
60
59
  _ = UNDEF
61
60
  # ---
62
61
  a = CArray.int(3,3).seq!
63
62
  idx = CArray.int(3,3).seq!
64
63
  a[1,1] = UNDEF
65
- assert_equal(CA_INT([[0,1,2],
64
+ is_asserted_by { CA_INT([[0,1,2],
66
65
  [3,_,5],
67
- [6,7,8]]), a[idx])
66
+ [6,7,8]]) == a[idx] }
68
67
  a[idx][1,1] = -1
69
- assert_equal(CA_INT([[0,1,2],
68
+ is_asserted_by { CA_INT([[0,1,2],
70
69
  [3,-1,5],
71
- [6,7,8]]), a)
70
+ [6,7,8]]) == a }
72
71
  end
73
72
 
74
- def test_fill
73
+ example "fill" do
75
74
  _ = UNDEF
76
75
  # ---
77
76
  a = CArray.int(3,3).seq!
78
77
  idx = CArray.int(3,3).seq!
79
78
  a[idx] = 9
80
- assert_equal(CA_INT([[9,9,9],
79
+ is_asserted_by { CA_INT([[9,9,9],
81
80
  [9,9,9],
82
- [9,9,9]]), a)
81
+ [9,9,9]]) == a }
83
82
  a[idx] = UNDEF
84
- assert_equal(CA_INT([[_,_,_],
83
+ is_asserted_by { CA_INT([[_,_,_],
85
84
  [_,_,_],
86
- [_,_,_]]), a)
85
+ [_,_,_]]) == a }
87
86
  end
88
87
 
89
- def test_sync
88
+ example "sync" do
90
89
  # ---
91
90
  a = CArray.int(3,3).seq!
92
91
  idx = CArray.int(3,3) { 4 }
93
92
  a[idx] = -1 ### not recomended usage
94
- assert_equal(CA_INT([[0,1,2],
93
+ is_asserted_by { CA_INT([[0,1,2],
95
94
  [3,-1,5],
96
- [6,7,8]]), a)
95
+ [6,7,8]]) == a }
97
96
  # ---
98
97
  a = CArray.int(3,3).seq!
99
98
  idx = CArray.int(3,3) { 4 }
100
99
  a[idx].seq! ### not recomended usage
101
- assert_equal(CA_INT([[0,1,2],
100
+ is_asserted_by { CA_INT([[0,1,2],
102
101
  [3,8,5],
103
- [6,7,8]]), a)
102
+ [6,7,8]]) == a }
104
103
  end
105
104
 
106
- end
105
+ end
@@ -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