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,100 @@
1
+ require 'carray'
2
+ require "rspec-power_assert"
3
+
4
+ describe "CArray.broadcast" do
5
+
6
+ example "basic" do
7
+ a = CArray.int(3,3).seq
8
+ b = CArray.int(1,3).seq
9
+ c = CArray.int(3,1).seq
10
+
11
+ aa, bb, cc = CArray.broadcast(a,b,c)
12
+
13
+ is_asserted_by { aa == a }
14
+ is_asserted_by { bb == CA_INT([[0,1,2],
15
+ [0,1,2],
16
+ [0,1,2]]) }
17
+ is_asserted_by { cc == CA_INT([[0,0,0],
18
+ [1,1,1],
19
+ [2,2,2]]) }
20
+
21
+ end
22
+
23
+ example "with unboud repeat" do
24
+ a = CArray.int(3,3).seq
25
+ b = CArray.int(3).seq[:*,nil]
26
+ c = CArray.int(3).seq[nil,:*]
27
+
28
+ aa, bb, cc = CArray.broadcast(a,b,c)
29
+
30
+ is_asserted_by { aa == a }
31
+ is_asserted_by { bb == CA_INT([[0,1,2],
32
+ [0,1,2],
33
+ [0,1,2]]) }
34
+ is_asserted_by { cc == CA_INT([[0,0,0],
35
+ [1,1,1],
36
+ [2,2,2]]) }
37
+
38
+ end
39
+
40
+ example "with cscalar" do
41
+ a = CArray.int(3,3).seq
42
+ b = CA_INT(3) ### CScalar
43
+
44
+ aa, bb = CArray.broadcast(a,b)
45
+ is_asserted_by { aa == a }
46
+ is_asserted_by { bb.class == CScalar }
47
+ is_asserted_by { bb == b }
48
+
49
+ end
50
+
51
+ example "can't broadcast" do
52
+ a = CArray.int(3,3).seq
53
+ b = CArray.int(3,2).seq
54
+ c = CArray.int(2,2).seq
55
+
56
+ expect {
57
+ aa, bb, cc = CArray.broadcast(a,b,c)
58
+ }.to raise_error(RuntimeError)
59
+ end
60
+
61
+ example "1 elements array" do
62
+ a = CArray.int(1,1).seq
63
+ b = CArray.int(1,1).seq
64
+ c = CArray.int(1,1).seq
65
+
66
+ aa, bb, cc = CArray.broadcast(a,b,c)
67
+
68
+ is_asserted_by { aa == a }
69
+ is_asserted_by { bb == b }
70
+ is_asserted_by { cc == c }
71
+ end
72
+
73
+ example "include numeric" do
74
+ a = CArray.int(1,3).seq
75
+ b = 1.0
76
+ c = CArray.int(3,1).seq
77
+
78
+ aa, bb, cc = CArray.broadcast(a,b,c)
79
+
80
+ is_asserted_by { aa == CA_INT([[0,1,2],
81
+ [0,1,2],
82
+ [0,1,2]]) }
83
+ is_asserted_by { bb == 1.0 }
84
+ is_asserted_by { cc == CA_INT([[0,0,0],
85
+ [1,1,1],
86
+ [2,2,2]]) }
87
+
88
+ end
89
+
90
+ example "all numeric" do
91
+ a = 1.0
92
+ b = 2.0
93
+ c = 3.0
94
+ aa, bb, cc = CArray.broadcast(a,b,c)
95
+ is_asserted_by { aa == a }
96
+ is_asserted_by { bb == b }
97
+ is_asserted_by { cc == c }
98
+ end
99
+
100
+ end
@@ -0,0 +1,19 @@
1
+ require 'carray'
2
+ require "rspec-power_assert"
3
+
4
+ describe "Cast function" do
5
+
6
+ example "CA_SIZE" do
7
+ # ---
8
+ a = CA_SIZE([1,2,3])
9
+ is_asserted_by { a.data_type == CA_INT64 }
10
+ end
11
+
12
+ example "CA_SIZE" do
13
+ # ---
14
+ a = CA_SIZE([1,2,3])
15
+ is_asserted_by { a.data_type == CA_INT64 }
16
+ end
17
+
18
+
19
+ end
@@ -0,0 +1,33 @@
1
+ require 'carray'
2
+ require "rspec-power_assert"
3
+
4
+ describe "TestCast " do
5
+
6
+ example "obj_to_numeric" do
7
+ # ---
8
+ a = CA_OBJECT([1,2,3])
9
+ b = CA_INT32([1,2,3])
10
+ c = CA_FLOAT64([1,2,3])
11
+ is_asserted_by { b == a.int32 }
12
+ is_asserted_by { c == a.float64 }
13
+
14
+ # ---
15
+ a = CA_OBJECT(["1","2","3"])
16
+ b = CA_INT32([1,2,3])
17
+ c = CA_FLOAT64([1,2,3])
18
+ is_asserted_by { b == a.int32 }
19
+ is_asserted_by { c == a.float64 }
20
+
21
+ # ---
22
+ a = CA_OBJECT([nil, nil, nil])
23
+ expect { a.int32 }.to raise_error(TypeError)
24
+ # assert_raise(TypeError) { a.float32 }
25
+
26
+ # ---
27
+ a = CA_OBJECT(["a", "b", "c"])
28
+ expect { a.int32 }.to raise_error(ArgumentError)
29
+ expect { a.float32 }.to raise_error(ArgumentError)
30
+ end
31
+
32
+
33
+ end
@@ -0,0 +1,84 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayClass " do
6
+
7
+ # CA_BIG_ENDIAN : 1
8
+ # CA_LITTLE_ENDIAN : 0
9
+
10
+ example "endian" do
11
+ if [1].pack("s") == [1].pack("n")
12
+ endian = CA_BIG_ENDIAN
13
+ else
14
+ endian = CA_LITTLE_ENDIAN
15
+ end
16
+ is_asserted_by { CArray.endian == endian }
17
+ case endian
18
+ when CA_BIG_ENDIAN
19
+ is_asserted_by { CArray.big_endian? == true }
20
+ is_asserted_by { CArray.little_endian? == false }
21
+ when CA_LITTLE_ENDIAN
22
+ is_asserted_by { CArray.big_endian? == false }
23
+ is_asserted_by { CArray.little_endian? == true }
24
+ end
25
+ end
26
+
27
+ example "sizeof" do
28
+ is_asserted_by { CArray.sizeof(CA_INT8) == 1 }
29
+ is_asserted_by { CArray.sizeof(CA_UINT8) == 1 }
30
+ is_asserted_by { CArray.sizeof(CA_INT16) == 2 }
31
+ is_asserted_by { CArray.sizeof(CA_UINT16) == 2 }
32
+ is_asserted_by { CArray.sizeof(CA_INT32) == 4 }
33
+ is_asserted_by { CArray.sizeof(CA_UINT32) == 4 }
34
+ # is_asserted_by { CArray.sizeof(CA_INT64), 8)
35
+ # is_asserted_by { CArray.sizeof(CA_UINT64), 8)
36
+ is_asserted_by { CArray.sizeof(CA_FLOAT32) == 4 }
37
+ is_asserted_by { CArray.sizeof(CA_FLOAT64) == 8 }
38
+ # is_asserted_by { CArray.sizeof(CA_FLOAT128), 16)
39
+ # is_asserted_by { CArray.sizeof(CA_CMPLX64), 8)
40
+ # is_asserted_by { CArray.sizeof(CA_CMPLX128), 16)
41
+ # is_asserted_by { CArray.sizeof(CA_CMPLX256), 32)
42
+ is_asserted_by { CArray.sizeof(CA_FIXLEN) == 0 }
43
+ # is_asserted_by { CArray.sizeof(CA_OBJECT), 0)
44
+ end
45
+
46
+ example "valid_type?" do
47
+ # can't test this method
48
+ expect { CArray.data_type?(-1) }.to raise_error(ArgumentError)
49
+ is_asserted_by { CArray.data_type?(CA_FIXLEN) == true }
50
+ is_asserted_by { CArray.data_type?(CA_INT8) == true }
51
+ is_asserted_by { CArray.data_type?(CA_INT32) == true }
52
+ is_asserted_by { CArray.data_type?(CA_FLOAT32) == true }
53
+ is_asserted_by { CArray.data_type?(CA_OBJECT) == true }
54
+ expect { CArray.data_type?(CA_OBJECT+1) }.to raise_error(ArgumentError)
55
+ end
56
+
57
+ example "type_name" do
58
+ [
59
+ [CA_INT8, "int8"],
60
+ [CA_UINT8, "uint8"],
61
+ [CA_INT16, "int16"],
62
+ [CA_UINT16, "uint16"],
63
+ [CA_INT32, "int32"],
64
+ [CA_UINT32, "uint32"],
65
+ [CA_INT64, "int64"],
66
+ [CA_UINT64, "uint64"],
67
+ [CA_FLOAT32, "float32"],
68
+ [CA_FLOAT64, "float64"],
69
+ [CA_FLOAT128, "float128"],
70
+ [CA_CMPLX64, "cmplx64"],
71
+ [CA_CMPLX128, "cmplx128"],
72
+ [CA_CMPLX256, "cmplx256"],
73
+ [CA_FIXLEN, "fixlen"],
74
+ [CA_OBJECT, "object"],
75
+ ].each do |type, name|
76
+ if CArray.data_type?(type)
77
+ is_asserted_by { CArray.data_type_name(type) == name }
78
+ else
79
+ expect { CArray.data_type_name(type) }.to raise_error(RuntimeError)
80
+ end
81
+ end
82
+ end
83
+
84
+ end
@@ -0,0 +1,42 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestComplex " do
6
+
7
+ example "complex" do
8
+ a = CArray.complex(3,3) { 1 + 2*CI }
9
+ is_asserted_by { a.real == CArray.float(3, 3) { 1 } }
10
+ is_asserted_by { a.imag == CArray.float(3, 3) { 2 } }
11
+ a.real[] = -1
12
+ a.imag[] = -2
13
+ is_asserted_by { a.real == CArray.float(3, 3) { -1 } }
14
+ is_asserted_by { a.imag == CArray.float(3, 3) { -2 } }
15
+ end
16
+
17
+ example "dcomplex" do
18
+ a = CArray.dcomplex(3,3) { 1 + 2*CI }
19
+ is_asserted_by { a.real == CArray.double(3, 3) { 1 } }
20
+ is_asserted_by { a.imag == CArray.double(3, 3) { 2 } }
21
+ a.real = -1
22
+ a.imag = -2
23
+ is_asserted_by { a.real == CArray.double(3, 3) { -1 } }
24
+ is_asserted_by { a.imag == CArray.double(3, 3) { -2 } }
25
+ end
26
+
27
+ example "conj" do
28
+ a = CArray.complex(3,3) { 1 + 2*CI }
29
+ a.conj!
30
+ is_asserted_by { a.real == CArray.float(3, 3) { 1 } }
31
+ is_asserted_by { a.imag == CArray.float(3, 3) { -2 } }
32
+ end
33
+
34
+ example "arg" do
35
+ a = CArray.complex(3,3) { 1 + 2*CI }
36
+ a.conj!
37
+ is_asserted_by { a.real == CArray.float(3, 3) { 1 } }
38
+ is_asserted_by { a.imag == CArray.float(3, 3) { -2 } }
39
+ end
40
+
41
+
42
+ end
@@ -1,11 +1,10 @@
1
- $:.unshift("../lib", "..")
2
1
 
3
- require 'test/unit'
4
2
  require 'carray'
3
+ require "rspec-power_assert"
5
4
 
6
- class TestCArrayComposite < Test::Unit::TestCase
5
+ describe "TestCArrayComposite " do
7
6
 
8
- def test_combine
7
+ example "combine" do
9
8
  a1 = CArray.int32(2,2){1}
10
9
  a2 = CArray.int32(2,2){2}
11
10
  a3 = CArray.int32(2,2){3}
@@ -24,7 +23,7 @@ class TestCArrayComposite < Test::Unit::TestCase
24
23
  [4,4],
25
24
  ])
26
25
  x = CArray.combine(CA_INT32, [4], list, 0)
27
- assert_equal(y, x)
26
+ is_asserted_by { y == x }
28
27
 
29
28
  # ---
30
29
  y = CA_INT32([
@@ -32,9 +31,9 @@ class TestCArrayComposite < Test::Unit::TestCase
32
31
  [1,1,2,2,3,3,4,4]
33
32
  ])
34
33
  x = CArray.combine(CA_INT32, [4], list, -1)
35
- assert_equal(y, x)
34
+ is_asserted_by { y == x }
36
35
  x = CArray.combine(CA_INT32, [4], list, 1)
37
- assert_equal(y, x)
36
+ is_asserted_by { y == x }
38
37
 
39
38
  # ---
40
39
  y = CA_INT32([
@@ -44,17 +43,17 @@ class TestCArrayComposite < Test::Unit::TestCase
44
43
  [3,3,4,4],
45
44
  ])
46
45
  x = CArray.combine(CA_INT32, [2,2], list, 0)
47
- assert_equal(y, x)
46
+ is_asserted_by { y == x }
48
47
  x = CArray.combine(CA_INT32, [2,2], list, -1)
49
- assert_equal(y, x)
48
+ is_asserted_by { y == x }
50
49
 
51
- assert_raise(RuntimeError) {
50
+ expect {
52
51
  CArray.combine(CA_INT32, [2,2], list, 1)
53
- }
52
+ }.to raise_error(RuntimeError)
54
53
 
55
54
  end
56
55
 
57
- def test_composite
56
+ example "composite" do
58
57
  a1 = CArray.int32(2,2){1}
59
58
  a2 = CArray.int32(2,2){2}
60
59
  a3 = CArray.int32(2,2){3}
@@ -71,7 +70,7 @@ class TestCArrayComposite < Test::Unit::TestCase
71
70
  [ [ 4, 4 ],
72
71
  [ 4, 4 ] ] ])
73
72
  x = CArray.composite(CA_INT32, [4], list, 0)
74
- assert_equal(y, x)
73
+ is_asserted_by { y == x }
75
74
 
76
75
  # ---
77
76
  y = CA_INT32([ [ [ 1, 2, 3, 4 ],
@@ -79,7 +78,7 @@ class TestCArrayComposite < Test::Unit::TestCase
79
78
  [ [ 1, 2, 3, 4 ],
80
79
  [ 1, 2, 3, 4 ] ] ])
81
80
  x = CArray.composite(CA_INT32, [4], list, -1)
82
- assert_equal(y, x)
81
+ is_asserted_by { y == x }
83
82
 
84
83
  # ---
85
84
  y = CA_INT32([ [ [ [ 1, 1 ],
@@ -91,7 +90,7 @@ class TestCArrayComposite < Test::Unit::TestCase
91
90
  [ [ 4, 4 ],
92
91
  [ 4, 4 ] ] ] ])
93
92
  x = CArray.composite(CA_INT32, [2,2], list, 0)
94
- assert_equal(y, x)
93
+ is_asserted_by { y == x }
95
94
 
96
95
  # ---
97
96
  y = CA_INT32([ [ [ [ 1, 1 ],
@@ -103,7 +102,7 @@ class TestCArrayComposite < Test::Unit::TestCase
103
102
  [ [ 3, 3 ],
104
103
  [ 4, 4 ] ] ] ])
105
104
  x = CArray.composite(CA_INT32, [2,2], list, 1)
106
- assert_equal(y, x)
105
+ is_asserted_by { y == x }
107
106
 
108
107
  # ---
109
108
  y = CA_INT32([ [ [ [ 1, 2 ],
@@ -115,10 +114,10 @@ class TestCArrayComposite < Test::Unit::TestCase
115
114
  [ [ 1, 2 ],
116
115
  [ 3, 4 ] ] ] ])
117
116
  x = CArray.composite(CA_INT32, [2,2], list, 2)
118
- assert_equal(y, x)
117
+ is_asserted_by { y == x }
119
118
 
120
119
  x = CArray.composite(CA_INT32, [2,2], list, -1)
121
- assert_equal(y, x)
120
+ is_asserted_by { y == x }
122
121
 
123
122
  end
124
123
 
@@ -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