carray 1.5.1 → 1.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{LICENSES → LICENSE} +0 -0
- data/NEWS.md +42 -0
- data/README.md +5 -5
- data/TODO.md +16 -0
- data/carray.gemspec +9 -5
- data/ext/ca_iter_block.c +3 -5
- data/ext/ca_iter_dimension.c +4 -5
- data/ext/ca_iter_window.c +2 -4
- data/ext/ca_obj_array.c +394 -124
- data/ext/ca_obj_bitarray.c +3 -5
- data/ext/ca_obj_bitfield.c +3 -5
- data/ext/ca_obj_block.c +6 -8
- data/ext/ca_obj_fake.c +3 -5
- data/ext/ca_obj_farray.c +3 -5
- data/ext/ca_obj_field.c +15 -17
- data/ext/ca_obj_grid.c +5 -6
- data/ext/ca_obj_mapping.c +2 -4
- data/ext/ca_obj_object.c +3 -5
- data/ext/ca_obj_reduce.c +2 -4
- data/ext/ca_obj_refer.c +5 -7
- data/ext/ca_obj_repeat.c +2 -4
- data/ext/ca_obj_select.c +2 -4
- data/ext/ca_obj_shift.c +3 -5
- data/ext/ca_obj_transpose.c +3 -5
- data/ext/ca_obj_unbound_repeat.c +58 -81
- data/ext/ca_obj_window.c +7 -9
- data/ext/carray.h +13 -8
- data/ext/carray_access.c +111 -18
- data/ext/carray_attribute.c +136 -197
- data/ext/carray_call_cfunc.c +1 -3
- data/ext/carray_cast.c +344 -143
- data/ext/carray_cast_func.rb +1 -2
- data/ext/carray_class.c +28 -36
- data/ext/carray_conversion.c +49 -59
- data/ext/carray_copy.c +16 -32
- data/ext/carray_core.c +51 -44
- data/ext/carray_element.c +25 -44
- data/ext/carray_generate.c +71 -50
- data/ext/carray_iterator.c +13 -15
- data/ext/carray_loop.c +53 -82
- data/ext/carray_mask.c +87 -117
- data/ext/carray_math.rb +8 -10
- data/ext/carray_mathfunc.c +1 -3
- data/ext/carray_numeric.c +19 -3
- data/ext/carray_operator.c +45 -32
- data/ext/carray_order.c +72 -65
- data/ext/carray_sort_addr.c +14 -21
- data/ext/carray_stat.c +1 -3
- data/ext/carray_stat_proc.rb +2 -4
- data/ext/carray_test.c +28 -30
- data/ext/carray_undef.c +1 -3
- data/ext/carray_utils.c +12 -4
- data/ext/extconf.rb +1 -1
- data/ext/mkmath.rb +1 -1
- data/ext/ruby_carray.c +11 -6
- data/ext/ruby_ccomplex.c +1 -3
- data/ext/ruby_float_func.c +1 -3
- data/ext/version.h +5 -7
- data/lib/carray.rb +2 -0
- data/lib/carray/autoload/autoload_gem_numo_narray.rb +6 -6
- data/lib/carray/broadcast.rb +45 -0
- data/lib/carray/construct.rb +21 -4
- data/lib/carray/iterator.rb +1 -0
- data/lib/carray/ordering.rb +28 -2
- data/spec/Classes/CABitfield_spec.rb +58 -0
- data/spec/Classes/CABlockIterator_spec.rb +114 -0
- data/spec/Classes/CABlock_spec.rb +205 -0
- data/spec/Classes/CAField_spec.rb +39 -0
- data/spec/Classes/CAGrid_spec.rb +75 -0
- data/spec/Classes/CAMap_spec.rb +0 -0
- data/{test/test_CAMapping.rb → spec/Classes/CAMapping_spec.rb} +35 -36
- data/spec/Classes/CAObject_attribute_spec.rb +33 -0
- data/spec/Classes/CAObject_spec.rb +33 -0
- data/spec/Classes/CARefer_spec.rb +93 -0
- data/spec/Classes/CARepeat_spec.rb +65 -0
- data/spec/Classes/CASelect_spec.rb +22 -0
- data/spec/Classes/CAShift_spec.rb +16 -0
- data/spec/Classes/CAStruct_spec.rb +71 -0
- data/{test/test_CATranspose.rb → spec/Classes/CATranspose_spec.rb} +20 -21
- data/spec/Classes/CAUnboudRepeat_spec.rb +78 -0
- data/spec/Classes/CAWindow_spec.rb +54 -0
- data/spec/Classes/CAWrap_spec.rb +8 -0
- data/{test/test_CArray.rb → spec/Classes/CArray_spec.rb} +48 -92
- data/spec/Classes/CScalar_spec.rb +55 -0
- data/spec/Features/feature_130_spec.rb +19 -0
- data/spec/Features/feature_attributes_spec.rb +280 -0
- data/spec/Features/feature_boolean_spec.rb +97 -0
- data/spec/Features/feature_broadcast.rb +100 -0
- data/spec/Features/feature_cast_function.rb +19 -0
- data/spec/Features/feature_cast_spec.rb +33 -0
- data/spec/Features/feature_class_spec.rb +84 -0
- data/spec/Features/feature_complex_spec.rb +42 -0
- data/{test/test_composite.rb → spec/Features/feature_composite_spec.rb} +17 -18
- data/spec/Features/feature_convert_spec.rb +46 -0
- data/spec/Features/feature_copy_spec.rb +123 -0
- data/spec/Features/feature_creation_spec.rb +84 -0
- data/spec/Features/feature_element_spec.rb +144 -0
- data/spec/Features/feature_extream_spec.rb +54 -0
- data/spec/Features/feature_generate_spec.rb +74 -0
- data/spec/Features/feature_index_spec.rb +69 -0
- data/spec/Features/feature_mask_spec.rb +574 -0
- data/spec/Features/feature_math_spec.rb +97 -0
- data/spec/Features/feature_order_spec.rb +146 -0
- data/spec/Features/feature_ref_store_spec.rb +209 -0
- data/spec/Features/feature_serialization_spec.rb +125 -0
- data/spec/Features/feature_stat_spec.rb +397 -0
- data/spec/Features/feature_virtual_spec.rb +48 -0
- data/spec/Features/method_eq_spec.rb +81 -0
- data/spec/Features/method_is_nan_spec.rb +12 -0
- data/spec/Features/method_map_spec.rb +54 -0
- data/spec/Features/method_max_with.rb +20 -0
- data/spec/Features/method_min_with.rb +19 -0
- data/spec/Features/method_ne_spec.rb +18 -0
- data/spec/Features/method_project_spec.rb +188 -0
- data/spec/Features/method_ref_spec.rb +27 -0
- data/spec/Features/method_round_spec.rb +11 -0
- data/spec/Features/method_s_linspace_spec.rb +48 -0
- data/spec/Features/method_s_span_spec.rb +14 -0
- data/spec/Features/method_seq_spec.rb +47 -0
- data/spec/Features/method_sort_with.rb +43 -0
- data/spec/Features/method_sorted_with.rb +29 -0
- data/spec/Features/method_span_spec.rb +42 -0
- data/spec/Features/method_wrap_readonly_spec.rb +43 -0
- data/{test → spec/UnitTest}/test_CAVirtual.rb +0 -0
- data/spec/spec_all.rb +0 -1
- data/utils/convert_test.rb +73 -0
- data/utils/{extract_rdoc.rb → extract_yard.rb} +7 -12
- metadata +77 -60
- data/spec/CABlockIterator/CABlockIterator_spec.rb +0 -113
- data/spec/CArray/bug/store_spec.rb +0 -27
- data/spec/CArray/index/repeat_spec.rb +0 -10
- data/spec/CArray/method/eq_spec.rb +0 -80
- data/spec/CArray/method/is_nan_spec.rb +0 -12
- data/spec/CArray/method/ne_spec.rb +0 -18
- data/spec/CArray/method/round_spec.rb +0 -11
- data/spec/CArray/object/_attribute_spec.rb +0 -32
- data/spec/CArray/object/s_new_spec.rb +0 -31
- data/spec/CArray/serialize/Serialization_spec.rb +0 -89
- data/test/test_130.rb +0 -23
- data/test/test_ALL.rb +0 -49
- data/test/test_CABitfield.rb +0 -59
- data/test/test_CABlock.rb +0 -208
- data/test/test_CAField.rb +0 -40
- data/test/test_CAGrid.rb +0 -76
- data/test/test_CAMmap.rb +0 -11
- data/test/test_CARefer.rb +0 -94
- data/test/test_CARepeat.rb +0 -66
- data/test/test_CASelect.rb +0 -23
- data/test/test_CAShift.rb +0 -17
- data/test/test_CAWindow.rb +0 -55
- data/test/test_CAWrap.rb +0 -9
- data/test/test_CComplex.rb +0 -83
- data/test/test_CScalar.rb +0 -91
- data/test/test_attribute.rb +0 -281
- data/test/test_block_iterator.rb +0 -17
- data/test/test_boolean.rb +0 -99
- data/test/test_cast.rb +0 -33
- data/test/test_class.rb +0 -85
- data/test/test_complex.rb +0 -43
- data/test/test_convert.rb +0 -79
- data/test/test_copy.rb +0 -141
- data/test/test_creation.rb +0 -85
- data/test/test_element.rb +0 -146
- data/test/test_extream.rb +0 -55
- data/test/test_generate.rb +0 -75
- data/test/test_index.rb +0 -71
- data/test/test_mask.rb +0 -578
- data/test/test_math.rb +0 -98
- data/test/test_order.rb +0 -147
- data/test/test_ref_store.rb +0 -211
- data/test/test_stat.rb +0 -406
- data/test/test_struct.rb +0 -72
- data/test/test_virtual.rb +0 -49
data/test/test_attribute.rb
DELETED
@@ -1,281 +0,0 @@
|
|
1
|
-
$:.unshift("../lib", "..")
|
2
|
-
|
3
|
-
require 'test/unit'
|
4
|
-
require 'carray'
|
5
|
-
|
6
|
-
class TestCArrayAttribute < Test::Unit::TestCase
|
7
|
-
|
8
|
-
def test_attribute_basic_features
|
9
|
-
a = CArray.new(CA_INT32, [4, 3, 2, 1])
|
10
|
-
assert_instance_of(CArray, a)
|
11
|
-
assert_equal(CA_OBJ_ARRAY, a.obj_type)
|
12
|
-
assert_equal(CA_INT32, a.data_type)
|
13
|
-
assert_equal(4, a.rank)
|
14
|
-
assert_equal(CArray.sizeof(CA_INT32), a.bytes)
|
15
|
-
assert_equal(24, a.elements)
|
16
|
-
assert_equal([4, 3, 2, 1], a.dim)
|
17
|
-
assert_equal(4, a.dim0)
|
18
|
-
assert_equal(3, a.dim1)
|
19
|
-
assert_equal(2, a.dim2)
|
20
|
-
assert_equal(1, a.dim3)
|
21
|
-
end
|
22
|
-
|
23
|
-
def test_fixlen?
|
24
|
-
assert_equal(CArray.new(CA_FIXLEN, [1], :bytes=>1).fixlen?, true)
|
25
|
-
assert_equal(CArray.boolean(1).fixlen?, false)
|
26
|
-
assert_equal(CArray.int8(1).fixlen?, false)
|
27
|
-
assert_equal(CArray.uint8(1).fixlen?, false)
|
28
|
-
assert_equal(CArray.int16(1).fixlen?, false)
|
29
|
-
assert_equal(CArray.uint16(1).fixlen?, false)
|
30
|
-
assert_equal(CArray.int32(1).fixlen?, false)
|
31
|
-
assert_equal(CArray.uint32(1).fixlen?, false)
|
32
|
-
assert_equal(CArray.int64(1).fixlen?, false)
|
33
|
-
assert_equal(CArray.uint64(1).fixlen?, false)
|
34
|
-
assert_equal(CArray.float32(1).fixlen?, false)
|
35
|
-
assert_equal(CArray.float64(1).fixlen?, false)
|
36
|
-
if CArray.data_type?(:float128)
|
37
|
-
assert_equal(CArray.float128(1).fixlen?, false)
|
38
|
-
end
|
39
|
-
if CArray::HAVE_COMPLEX
|
40
|
-
assert_equal(CArray.cmplx64(1).fixlen?, false)
|
41
|
-
assert_equal(CArray.cmplx128(1).fixlen?, false)
|
42
|
-
if CArray.data_type?(:cmplx256)
|
43
|
-
assert_equal(CArray.cmplx256(1).fixlen?, false)
|
44
|
-
end
|
45
|
-
end
|
46
|
-
assert_equal(CArray.object(1).fixlen?, false)
|
47
|
-
end
|
48
|
-
|
49
|
-
def test_boolean?
|
50
|
-
assert_equal(CArray.new(CA_FIXLEN, [1], :bytes=>1).boolean?, false)
|
51
|
-
assert_equal(CArray.boolean(1).boolean?, true)
|
52
|
-
assert_equal(CArray.int8(1).boolean?, false)
|
53
|
-
assert_equal(CArray.uint8(1).boolean?, false)
|
54
|
-
assert_equal(CArray.int16(1).boolean?, false)
|
55
|
-
assert_equal(CArray.uint16(1).boolean?, false)
|
56
|
-
assert_equal(CArray.int32(1).boolean?, false)
|
57
|
-
assert_equal(CArray.uint32(1).boolean?, false)
|
58
|
-
assert_equal(CArray.int64(1).boolean?, false)
|
59
|
-
assert_equal(CArray.uint64(1).boolean?, false)
|
60
|
-
assert_equal(CArray.float32(1).boolean?, false)
|
61
|
-
assert_equal(CArray.float64(1).boolean?, false)
|
62
|
-
if CArray.data_type?(:float128)
|
63
|
-
assert_equal(CArray.float128(1).boolean?, false)
|
64
|
-
end
|
65
|
-
if CArray::HAVE_COMPLEX
|
66
|
-
assert_equal(CArray.cmplx64(1).boolean?, false)
|
67
|
-
assert_equal(CArray.cmplx128(1).boolean?, false)
|
68
|
-
if CArray.data_type?(:cmplx256)
|
69
|
-
assert_equal(CArray.cmplx256(1).boolean?, false)
|
70
|
-
end
|
71
|
-
end
|
72
|
-
assert_equal(CArray.object(1).boolean?, false)
|
73
|
-
end
|
74
|
-
|
75
|
-
def test_numeric?
|
76
|
-
assert_equal(CArray.new(CA_FIXLEN, [1], :bytes=>1).integer?, false)
|
77
|
-
assert_equal(CArray.boolean(1).integer?, false)
|
78
|
-
assert_equal(CArray.int8(1).integer?, true)
|
79
|
-
assert_equal(CArray.uint8(1).integer?, true)
|
80
|
-
assert_equal(CArray.int16(1).integer?, true)
|
81
|
-
assert_equal(CArray.uint16(1).integer?, true)
|
82
|
-
assert_equal(CArray.int32(1).integer?, true)
|
83
|
-
assert_equal(CArray.uint32(1).integer?, true)
|
84
|
-
assert_equal(CArray.int64(1).integer?, true)
|
85
|
-
assert_equal(CArray.uint64(1).integer?, true)
|
86
|
-
assert_equal(CArray.float32(1).integer?, false)
|
87
|
-
assert_equal(CArray.float64(1).integer?, false)
|
88
|
-
if CArray.data_type?(:float128)
|
89
|
-
assert_equal(CArray.float128(1).integer?, false)
|
90
|
-
end
|
91
|
-
if CArray::HAVE_COMPLEX
|
92
|
-
assert_equal(CArray.cmplx64(1).integer?, false)
|
93
|
-
assert_equal(CArray.cmplx128(1).integer?, false)
|
94
|
-
if CArray.data_type?(:cmplx256)
|
95
|
-
assert_equal(CArray.cmplx256(1).integer?, false)
|
96
|
-
end
|
97
|
-
end
|
98
|
-
assert_equal(CArray.object(1).integer?, false)
|
99
|
-
end
|
100
|
-
|
101
|
-
def test_integer?
|
102
|
-
assert_equal(CArray.new(CA_FIXLEN, [1], :bytes=>1).integer?, false)
|
103
|
-
assert_equal(CArray.boolean(1).integer?, false)
|
104
|
-
assert_equal(CArray.int8(1).integer?, true)
|
105
|
-
assert_equal(CArray.uint8(1).integer?, true)
|
106
|
-
assert_equal(CArray.int16(1).integer?, true)
|
107
|
-
assert_equal(CArray.uint16(1).integer?, true)
|
108
|
-
assert_equal(CArray.int32(1).integer?, true)
|
109
|
-
assert_equal(CArray.uint32(1).integer?, true)
|
110
|
-
assert_equal(CArray.int64(1).integer?, true)
|
111
|
-
assert_equal(CArray.uint64(1).integer?, true)
|
112
|
-
assert_equal(CArray.float32(1).integer?, false)
|
113
|
-
assert_equal(CArray.float64(1).integer?, false)
|
114
|
-
if CArray.data_type?(:float128)
|
115
|
-
assert_equal(CArray.float128(1).integer?, false)
|
116
|
-
end
|
117
|
-
if CArray::HAVE_COMPLEX
|
118
|
-
assert_equal(CArray.cmplx64(1).integer?, false)
|
119
|
-
assert_equal(CArray.cmplx128(1).integer?, false)
|
120
|
-
if CArray.data_type?(:cmplx256)
|
121
|
-
assert_equal(CArray.cmplx256(1).integer?, false)
|
122
|
-
end
|
123
|
-
end
|
124
|
-
assert_equal(CArray.object(1).integer?, false)
|
125
|
-
end
|
126
|
-
|
127
|
-
def test_unsigned?
|
128
|
-
assert_equal(CArray.new(CA_FIXLEN, [1], :bytes=>1).unsigned?, false)
|
129
|
-
assert_equal(CArray.boolean(1).unsigned?, false)
|
130
|
-
assert_equal(CArray.int8(1).unsigned?, false)
|
131
|
-
assert_equal(CArray.uint8(1).unsigned?, true)
|
132
|
-
assert_equal(CArray.int16(1).unsigned?, false)
|
133
|
-
assert_equal(CArray.uint16(1).unsigned?, true)
|
134
|
-
assert_equal(CArray.int32(1).unsigned?, false)
|
135
|
-
assert_equal(CArray.uint32(1).unsigned?, true)
|
136
|
-
assert_equal(CArray.int64(1).unsigned?, false)
|
137
|
-
assert_equal(CArray.uint64(1).unsigned?, true)
|
138
|
-
assert_equal(CArray.float32(1).unsigned?, false)
|
139
|
-
assert_equal(CArray.float64(1).unsigned?, false)
|
140
|
-
if CArray.data_type?(:float128)
|
141
|
-
assert_equal(CArray.float128(1).unsigned?, false)
|
142
|
-
end
|
143
|
-
if CArray::HAVE_COMPLEX
|
144
|
-
assert_equal(CArray.cmplx64(1).unsigned?, false)
|
145
|
-
assert_equal(CArray.cmplx128(1).unsigned?, false)
|
146
|
-
if CArray.data_type?(:cmplx256)
|
147
|
-
assert_equal(CArray.cmplx256(1).unsigned?, false)
|
148
|
-
end
|
149
|
-
end
|
150
|
-
assert_equal(CArray.object(1).unsigned?, false)
|
151
|
-
end
|
152
|
-
|
153
|
-
def test_float?
|
154
|
-
assert_equal(CArray.new(CA_FIXLEN, [1], :bytes=>1).float?, false)
|
155
|
-
assert_equal(CArray.boolean(1).float?, false)
|
156
|
-
assert_equal(CArray.int8(1).float?, false)
|
157
|
-
assert_equal(CArray.uint8(1).float?, false)
|
158
|
-
assert_equal(CArray.int16(1).float?, false)
|
159
|
-
assert_equal(CArray.uint16(1).float?, false)
|
160
|
-
assert_equal(CArray.int32(1).float?, false)
|
161
|
-
assert_equal(CArray.uint32(1).float?, false)
|
162
|
-
assert_equal(CArray.int64(1).float?, false)
|
163
|
-
assert_equal(CArray.uint64(1).float?, false)
|
164
|
-
assert_equal(CArray.float32(1).float?, true)
|
165
|
-
assert_equal(CArray.float64(1).float?, true)
|
166
|
-
if CArray.data_type?(:float128)
|
167
|
-
assert_equal(CArray.float128(1).float?, true)
|
168
|
-
end
|
169
|
-
if CArray::HAVE_COMPLEX
|
170
|
-
assert_equal(CArray.cmplx64(1).float?, false)
|
171
|
-
assert_equal(CArray.cmplx128(1).float?, false)
|
172
|
-
if CArray.data_type?(:cmplx256)
|
173
|
-
assert_equal(CArray.cmplx256(1).float?, false)
|
174
|
-
end
|
175
|
-
end
|
176
|
-
assert_equal(CArray.object(1).float?, false)
|
177
|
-
end
|
178
|
-
|
179
|
-
def test_complex?
|
180
|
-
assert_equal(CArray.new(CA_FIXLEN, [1], :bytes=>1).complex?, false)
|
181
|
-
assert_equal(CArray.boolean(1).complex?, false)
|
182
|
-
assert_equal(CArray.int8(1).complex?, false)
|
183
|
-
assert_equal(CArray.uint8(1).complex?, false)
|
184
|
-
assert_equal(CArray.int16(1).complex?, false)
|
185
|
-
assert_equal(CArray.uint16(1).complex?, false)
|
186
|
-
assert_equal(CArray.int32(1).complex?, false)
|
187
|
-
assert_equal(CArray.uint32(1).complex?, false)
|
188
|
-
assert_equal(CArray.int64(1).complex?, false)
|
189
|
-
assert_equal(CArray.uint64(1).complex?, false)
|
190
|
-
assert_equal(CArray.float32(1).complex?, false)
|
191
|
-
assert_equal(CArray.float64(1).complex?, false)
|
192
|
-
if CArray.data_type?(:float128)
|
193
|
-
assert_equal(CArray.float128(1).complex?, false)
|
194
|
-
end
|
195
|
-
if CArray::HAVE_COMPLEX
|
196
|
-
assert_equal(CArray.cmplx64(1).complex?, true)
|
197
|
-
assert_equal(CArray.cmplx128(1).complex?, true)
|
198
|
-
if CArray.data_type?(:cmplx256)
|
199
|
-
assert_equal(CArray.cmplx256(1).complex?, true)
|
200
|
-
end
|
201
|
-
end
|
202
|
-
assert_equal(CArray.object(1).complex?, false)
|
203
|
-
end
|
204
|
-
|
205
|
-
def test_object?
|
206
|
-
assert_equal(CArray.new(CA_FIXLEN, [1], :bytes=>1).object?, false)
|
207
|
-
assert_equal(CArray.boolean(1).object?, false)
|
208
|
-
assert_equal(CArray.int8(1).object?, false)
|
209
|
-
assert_equal(CArray.uint8(1).object?, false)
|
210
|
-
assert_equal(CArray.int16(1).object?, false)
|
211
|
-
assert_equal(CArray.uint16(1).object?, false)
|
212
|
-
assert_equal(CArray.int32(1).object?, false)
|
213
|
-
assert_equal(CArray.uint32(1).object?, false)
|
214
|
-
assert_equal(CArray.int64(1).object?, false)
|
215
|
-
assert_equal(CArray.uint64(1).object?, false)
|
216
|
-
assert_equal(CArray.float32(1).object?, false)
|
217
|
-
assert_equal(CArray.float64(1).object?, false)
|
218
|
-
if CArray.data_type?(:float128)
|
219
|
-
assert_equal(CArray.float128(1).object?, false)
|
220
|
-
end
|
221
|
-
if CArray::HAVE_COMPLEX
|
222
|
-
assert_equal(CArray.cmplx64(1).object?, false)
|
223
|
-
assert_equal(CArray.cmplx128(1).object?, false)
|
224
|
-
if CArray.data_type?(:cmplx256)
|
225
|
-
assert_equal(CArray.cmplx256(1).object?, false)
|
226
|
-
end
|
227
|
-
end
|
228
|
-
assert_equal(CArray.object(1).object?, true)
|
229
|
-
end
|
230
|
-
|
231
|
-
def test_entity?
|
232
|
-
a = CArray.int32(3)
|
233
|
-
assert_equal(a.entity?, true)
|
234
|
-
assert_equal(a[].entity?, false)
|
235
|
-
assert_equal(a[0..1].entity?, false)
|
236
|
-
assert_equal(a[a>0].entity?, false)
|
237
|
-
|
238
|
-
b = CScalar.int32()
|
239
|
-
assert_equal(b.entity?, true)
|
240
|
-
assert_equal(b[].entity?, false)
|
241
|
-
end
|
242
|
-
|
243
|
-
def test_virtual?
|
244
|
-
a = CArray.int32(3)
|
245
|
-
assert_equal(a.virtual?, false)
|
246
|
-
assert_equal(a[].virtual?, true)
|
247
|
-
assert_equal(a[0..1].virtual?, true)
|
248
|
-
assert_equal(a[a>0].virtual?, true)
|
249
|
-
|
250
|
-
b = CScalar.int32()
|
251
|
-
assert_equal(b.virtual?, false)
|
252
|
-
assert_equal(b[].virtual?, true)
|
253
|
-
end
|
254
|
-
|
255
|
-
def test_valid_index?
|
256
|
-
a = CArray.int32(3,3)
|
257
|
-
assert_equal(true, a.valid_index?(2,2))
|
258
|
-
assert_equal(true, a.valid_index?(1,1))
|
259
|
-
assert_equal(true, a.valid_index?(-1,-1))
|
260
|
-
assert_equal(true, a.valid_index?(-3,-3))
|
261
|
-
|
262
|
-
assert_equal(true, a.valid_addr?(8))
|
263
|
-
assert_equal(true, a.valid_addr?(4))
|
264
|
-
assert_equal(true, a.valid_addr?(-4))
|
265
|
-
assert_equal(true, a.valid_addr?(-8))
|
266
|
-
|
267
|
-
assert_equal(false, a.valid_index?(1,3))
|
268
|
-
assert_equal(false, a.valid_index?(-4,1))
|
269
|
-
|
270
|
-
assert_equal(false, a.valid_addr?(9))
|
271
|
-
assert_equal(false, a.valid_addr?(-10))
|
272
|
-
end
|
273
|
-
|
274
|
-
def test_same_shape?
|
275
|
-
a = CArray.int32(4,3,2,1)
|
276
|
-
b = CArray.int8(1,2,3,4)
|
277
|
-
assert_equal(false, a.same_shape?(b))
|
278
|
-
assert_equal(true, a.transposed.same_shape?(b))
|
279
|
-
end
|
280
|
-
|
281
|
-
end
|
data/test/test_block_iterator.rb
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
$:.unshift("../lib", "..")
|
2
|
-
|
3
|
-
require 'test/unit'
|
4
|
-
require 'carray'
|
5
|
-
|
6
|
-
class TestCArrayBlockIterator < Test::Unit::TestCase
|
7
|
-
|
8
|
-
def test_block_asignment
|
9
|
-
a = CArray.object(4,4)
|
10
|
-
b = a.blocks(0..1,0..1).each_with_addr{|x,i| x[] = i * 2 }
|
11
|
-
c = CArray.object(2,2).seq!(0,2)[:%,:%,2,2].transposed(0,2,1,3).reshape(4,4)
|
12
|
-
assert_equal(c, a)
|
13
|
-
end
|
14
|
-
|
15
|
-
end
|
16
|
-
|
17
|
-
|
data/test/test_boolean.rb
DELETED
@@ -1,99 +0,0 @@
|
|
1
|
-
$:.unshift("../lib", "..")
|
2
|
-
|
3
|
-
require 'test/unit'
|
4
|
-
require 'carray'
|
5
|
-
|
6
|
-
class TestBooleanType < Test::Unit::TestCase
|
7
|
-
|
8
|
-
def test_boolean_bit_operations
|
9
|
-
a = CArray.int(3,3).seq!
|
10
|
-
e0 = a < 4
|
11
|
-
e1 = a >= 4
|
12
|
-
|
13
|
-
# ---
|
14
|
-
assert_equal(e0, e0 & 1)
|
15
|
-
assert_equal(e0, e0 & true)
|
16
|
-
assert_equal(a.false, e0 & false)
|
17
|
-
|
18
|
-
assert_equal(a.true, e0 | 1)
|
19
|
-
assert_equal(a.true, e0 | true)
|
20
|
-
assert_equal(e0, e0 | false)
|
21
|
-
|
22
|
-
assert_equal(e1, e0 ^ 1)
|
23
|
-
assert_equal(e1, e0 ^ true)
|
24
|
-
assert_equal(e0, e0 ^ false)
|
25
|
-
|
26
|
-
# ---
|
27
|
-
assert_equal(e0, 1 & e0)
|
28
|
-
assert_equal(e0, true & e0)
|
29
|
-
assert_equal(a.false, false & e0)
|
30
|
-
|
31
|
-
assert_equal(a.true, 1 | e0)
|
32
|
-
assert_equal(a.true, true | e0)
|
33
|
-
assert_equal(e0, false | e0)
|
34
|
-
|
35
|
-
assert_equal(e1, 1 ^ e0)
|
36
|
-
assert_equal(e1, true ^ e0)
|
37
|
-
assert_equal(e0, false ^ e0)
|
38
|
-
|
39
|
-
end
|
40
|
-
|
41
|
-
def test_boolean_bit_operations2
|
42
|
-
a = CArray.int(3,3).seq!
|
43
|
-
e0 = a < 4
|
44
|
-
e1 = a >= 4
|
45
|
-
|
46
|
-
one = a.one
|
47
|
-
zero = a.zero
|
48
|
-
tt = a.true
|
49
|
-
ff = a.false
|
50
|
-
|
51
|
-
# ---
|
52
|
-
assert_equal(e0, e0 & one)
|
53
|
-
assert_equal(e0, e0 & tt)
|
54
|
-
assert_equal(ff, e0 & ff)
|
55
|
-
|
56
|
-
assert_equal(tt, e0 | one)
|
57
|
-
assert_equal(tt, e0 | tt)
|
58
|
-
assert_equal(e0, e0 | ff)
|
59
|
-
|
60
|
-
assert_equal(e1, e0 ^ one)
|
61
|
-
assert_equal(e1, e0 ^ tt)
|
62
|
-
assert_equal(e0, e0 ^ ff)
|
63
|
-
|
64
|
-
# ---
|
65
|
-
assert_equal(e0, one & e0)
|
66
|
-
assert_equal(e0, tt & e0)
|
67
|
-
assert_equal(ff, ff & e0)
|
68
|
-
|
69
|
-
assert_equal(tt, one | e0)
|
70
|
-
assert_equal(tt, tt | e0)
|
71
|
-
assert_equal(e0, ff | e0)
|
72
|
-
|
73
|
-
assert_equal(e1, one ^ e0)
|
74
|
-
assert_equal(e1, tt ^ e0)
|
75
|
-
assert_equal(e0, ff ^ e0)
|
76
|
-
|
77
|
-
end
|
78
|
-
|
79
|
-
def test_boolean_bit_operation_with_non_boolean_type
|
80
|
-
|
81
|
-
a = CArray.int(3,3).seq!
|
82
|
-
b = CArray.int(3,3).seq! + 1
|
83
|
-
e0 = a < 4
|
84
|
-
e1 = a >= 4
|
85
|
-
|
86
|
-
# ---
|
87
|
-
assert_raise(RuntimeError) { e0 & b }
|
88
|
-
assert_raise(RuntimeError) { e0 | b }
|
89
|
-
assert_raise(RuntimeError) { e0 ^ b }
|
90
|
-
|
91
|
-
# ---
|
92
|
-
assert_raise(RuntimeError) { b & e0 }
|
93
|
-
assert_raise(RuntimeError) { b | e0 }
|
94
|
-
assert_raise(RuntimeError) { b ^ e0 }
|
95
|
-
|
96
|
-
end
|
97
|
-
|
98
|
-
|
99
|
-
end
|
data/test/test_cast.rb
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
require 'test/unit'
|
2
|
-
require 'carray'
|
3
|
-
|
4
|
-
class TestCast < Test::Unit::TestCase
|
5
|
-
|
6
|
-
def test_obj_to_numeric
|
7
|
-
# ---
|
8
|
-
a = CA_OBJECT([1,2,3])
|
9
|
-
b = CA_INT32([1,2,3])
|
10
|
-
c = CA_FLOAT64([1,2,3])
|
11
|
-
assert_equal(b, a.int32)
|
12
|
-
assert_equal(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
|
-
assert_equal(b, a.int32)
|
19
|
-
assert_equal(c, a.float64)
|
20
|
-
|
21
|
-
# ---
|
22
|
-
a = CA_OBJECT([nil, nil, nil])
|
23
|
-
assert_raise(TypeError) { a.int32 }
|
24
|
-
# assert_raise(TypeError) { a.float32 }
|
25
|
-
|
26
|
-
# ---
|
27
|
-
a = CA_OBJECT(["a", "b", "c"])
|
28
|
-
assert_raise(ArgumentError) { a.int32 }
|
29
|
-
assert_raise(ArgumentError) { a.float32 }
|
30
|
-
end
|
31
|
-
|
32
|
-
|
33
|
-
end
|
data/test/test_class.rb
DELETED
@@ -1,85 +0,0 @@
|
|
1
|
-
$:.unshift("../lib", "..")
|
2
|
-
|
3
|
-
require 'test/unit'
|
4
|
-
require 'carray'
|
5
|
-
|
6
|
-
class TestCArrayClass < Test::Unit::TestCase
|
7
|
-
|
8
|
-
# CA_BIG_ENDIAN : 1
|
9
|
-
# CA_LITTLE_ENDIAN : 0
|
10
|
-
|
11
|
-
def test_endian
|
12
|
-
if [1].pack("s") == [1].pack("n")
|
13
|
-
endian = CA_BIG_ENDIAN
|
14
|
-
else
|
15
|
-
endian = CA_LITTLE_ENDIAN
|
16
|
-
end
|
17
|
-
assert_equal(CArray.endian, endian)
|
18
|
-
case endian
|
19
|
-
when CA_BIG_ENDIAN
|
20
|
-
assert_equal(CArray.big_endian?, true)
|
21
|
-
assert_equal(CArray.little_endian?, false)
|
22
|
-
when CA_LITTLE_ENDIAN
|
23
|
-
assert_equal(CArray.big_endian?, false)
|
24
|
-
assert_equal(CArray.little_endian?, true)
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
def test_sizeof
|
29
|
-
assert_equal(CArray.sizeof(CA_INT8), 1)
|
30
|
-
assert_equal(CArray.sizeof(CA_UINT8), 1)
|
31
|
-
assert_equal(CArray.sizeof(CA_INT16), 2)
|
32
|
-
assert_equal(CArray.sizeof(CA_UINT16), 2)
|
33
|
-
assert_equal(CArray.sizeof(CA_INT32), 4)
|
34
|
-
assert_equal(CArray.sizeof(CA_UINT32), 4)
|
35
|
-
# assert_equal(CArray.sizeof(CA_INT64), 8)
|
36
|
-
# assert_equal(CArray.sizeof(CA_UINT64), 8)
|
37
|
-
assert_equal(CArray.sizeof(CA_FLOAT32), 4)
|
38
|
-
assert_equal(CArray.sizeof(CA_FLOAT64), 8)
|
39
|
-
# assert_equal(CArray.sizeof(CA_FLOAT128), 16)
|
40
|
-
# assert_equal(CArray.sizeof(CA_CMPLX64), 8)
|
41
|
-
# assert_equal(CArray.sizeof(CA_CMPLX128), 16)
|
42
|
-
# assert_equal(CArray.sizeof(CA_CMPLX256), 32)
|
43
|
-
assert_equal(CArray.sizeof(CA_FIXLEN), 0)
|
44
|
-
# assert_equal(CArray.sizeof(CA_OBJECT), 0)
|
45
|
-
end
|
46
|
-
|
47
|
-
def test_valid_type?
|
48
|
-
# can't test this method
|
49
|
-
assert_raise(ArgumentError) { CArray.data_type?(-1) }
|
50
|
-
assert_equal(CArray.data_type?(CA_FIXLEN), true)
|
51
|
-
assert_equal(CArray.data_type?(CA_INT8), true)
|
52
|
-
assert_equal(CArray.data_type?(CA_INT32), true)
|
53
|
-
assert_equal(CArray.data_type?(CA_FLOAT32), true)
|
54
|
-
assert_equal(CArray.data_type?(CA_OBJECT), true)
|
55
|
-
assert_raise(ArgumentError) { CArray.data_type?(CA_OBJECT+1) }
|
56
|
-
end
|
57
|
-
|
58
|
-
def test_type_name
|
59
|
-
[
|
60
|
-
[CA_INT8, "int8"],
|
61
|
-
[CA_UINT8, "uint8"],
|
62
|
-
[CA_INT16, "int16"],
|
63
|
-
[CA_UINT16, "uint16"],
|
64
|
-
[CA_INT32, "int32"],
|
65
|
-
[CA_UINT32, "uint32"],
|
66
|
-
[CA_INT64, "int64"],
|
67
|
-
[CA_UINT64, "uint64"],
|
68
|
-
[CA_FLOAT32, "float32"],
|
69
|
-
[CA_FLOAT64, "float64"],
|
70
|
-
[CA_FLOAT128, "float128"],
|
71
|
-
[CA_CMPLX64, "cmplx64"],
|
72
|
-
[CA_CMPLX128, "cmplx128"],
|
73
|
-
[CA_CMPLX256, "cmplx256"],
|
74
|
-
[CA_FIXLEN, "fixlen"],
|
75
|
-
[CA_OBJECT, "object"],
|
76
|
-
].each do |type, name|
|
77
|
-
if CArray.data_type?(type)
|
78
|
-
assert_equal(CArray.data_type_name(type), name)
|
79
|
-
else
|
80
|
-
assert_raise(RuntimeError) { CArray.data_type_name(type) }
|
81
|
-
end
|
82
|
-
end
|
83
|
-
end
|
84
|
-
|
85
|
-
end
|