carray 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/COPYING +56 -0
- data/GPL +340 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +33 -0
- data/LEGAL +50 -0
- data/NOTE +73 -0
- data/Rakefile +20 -0
- data/TODO +5 -0
- data/ca_iter_block.c +242 -0
- data/ca_iter_dimension.c +287 -0
- data/ca_iter_window.c +202 -0
- data/ca_obj_array.c +1189 -0
- data/ca_obj_bitarray.c +523 -0
- data/ca_obj_bitfield.c +636 -0
- data/ca_obj_block.c +885 -0
- data/ca_obj_fake.c +405 -0
- data/ca_obj_farray.c +482 -0
- data/ca_obj_field.c +625 -0
- data/ca_obj_grid.c +738 -0
- data/ca_obj_mapping.c +614 -0
- data/ca_obj_object.c +777 -0
- data/ca_obj_reduce.c +299 -0
- data/ca_obj_refer.c +627 -0
- data/ca_obj_repeat.c +640 -0
- data/ca_obj_select.c +558 -0
- data/ca_obj_shift.c +952 -0
- data/ca_obj_transpose.c +582 -0
- data/ca_obj_unbound_repeat.c +557 -0
- data/ca_obj_window.c +1023 -0
- data/carray.h +1381 -0
- data/carray_access.c +1798 -0
- data/carray_attribute.c +903 -0
- data/carray_call_cfunc.c +1107 -0
- data/carray_cast.c +1155 -0
- data/carray_cast_func.rb +498 -0
- data/carray_class.c +132 -0
- data/carray_conversion.c +518 -0
- data/carray_copy.c +453 -0
- data/carray_core.c +1307 -0
- data/carray_element.c +572 -0
- data/carray_generate.c +681 -0
- data/carray_iterator.c +630 -0
- data/carray_loop.c +462 -0
- data/carray_mask.c +1174 -0
- data/carray_math.rb +834 -0
- data/carray_numeric.c +257 -0
- data/carray_operator.c +582 -0
- data/carray_order.c +1040 -0
- data/carray_random.c +529 -0
- data/carray_sort_addr.c +261 -0
- data/carray_stat.c +2102 -0
- data/carray_stat_proc.rb +1990 -0
- data/carray_test.c +602 -0
- data/carray_undef.c +69 -0
- data/carray_utils.c +740 -0
- data/ext/calculus/carray_calculus.c +792 -0
- data/ext/calculus/carray_interp.c +355 -0
- data/ext/calculus/extconf.rb +12 -0
- data/ext/calculus/lib/autoload/autoload_math_calculus.rb +2 -0
- data/ext/calculus/lib/math/calculus.rb +119 -0
- data/ext/calculus/lib/math/interp/adapter_interp1d.rb +31 -0
- data/ext/dataframe/API.txt +11 -0
- data/ext/dataframe/extconf.rb +3 -0
- data/ext/dataframe/lib/carray/autoload/autoload_dataframe_dataframe.rb +14 -0
- data/ext/dataframe/lib/carray/dataframe/dataframe.rb +1104 -0
- data/ext/dataframe/sample/test_uniq_sort.rb +5 -0
- data/ext/fortio/extconf.rb +3 -0
- data/ext/fortio/lib/carray/autoload/autoload_fortran_format.rb +5 -0
- data/ext/fortio/lib/carray/io/fortran_format.rb +43 -0
- data/ext/fortio/lib/fortio.rb +3 -0
- data/ext/fortio/lib/fortio/fortran_format.rb +603 -0
- data/ext/fortio/lib/fortio/fortran_format.tab.rb +536 -0
- data/ext/fortio/lib/fortio/fortran_format.y +215 -0
- data/ext/fortio/lib/fortio/fortran_namelist.rb +151 -0
- data/ext/fortio/lib/fortio/fortran_namelist.tab.rb +470 -0
- data/ext/fortio/lib/fortio/fortran_namelist.y +213 -0
- data/ext/fortio/lib/fortio/fortran_sequential.rb +345 -0
- data/ext/fortio/ruby_fortio.c +182 -0
- data/ext/fortio/test/test_H.rb +5 -0
- data/ext/fortio/test/test_T.rb +7 -0
- data/ext/fortio/test/test_fortran_format.rb +86 -0
- data/ext/fortio/test/test_namelist.rb +25 -0
- data/ext/fortio/test/test_sequential.rb +13 -0
- data/ext/fortio/test/test_sequential2.rb +13 -0
- data/ext/fortio/work/test.rb +10 -0
- data/ext/fortio/work/test_e.rb +19 -0
- data/ext/fortio/work/test_ep.rb +10 -0
- data/ext/fortio/work/test_parse.rb +12 -0
- data/ext/imagemap/carray_imagemap.c +495 -0
- data/ext/imagemap/doc/call_graph.dot +28 -0
- data/ext/imagemap/draw.c +567 -0
- data/ext/imagemap/extconf.rb +13 -0
- data/ext/imagemap/lib/autoload/autoload_graphics_imagemap.rb +1 -0
- data/ext/imagemap/lib/graphics/imagemap.rb +273 -0
- data/ext/imagemap/lib/image_map.rb +4 -0
- data/ext/imagemap/test/swath_index.rb +83 -0
- data/ext/imagemap/test/swath_warp.rb +99 -0
- data/ext/imagemap/test/test.rb +23 -0
- data/ext/imagemap/test/test_image.rb +42 -0
- data/ext/imagemap/test/test_line.rb +14 -0
- data/ext/imagemap/test/test_rotate.rb +17 -0
- data/ext/imagemap/test/test_triangle.rb +20 -0
- data/ext/imagemap/test/test_warp.rb +26 -0
- data/ext/mathfunc/carray_mathfunc.c +321 -0
- data/ext/mathfunc/extconf.rb +18 -0
- data/ext/mathfunc/lib/autoload/autoload_math_mathfunc.rb +1 -0
- data/ext/mathfunc/lib/math/mathfunc.rb +15 -0
- data/ext/mathfunc/test/test_hypot.rb +5 -0
- data/ext/mathfunc/test/test_j0.rb +22 -0
- data/ext/mathfunc/test/test_jn.rb +8 -0
- data/ext/mathfunc/test/test_sph.rb +9 -0
- data/ext/narray/README +22 -0
- data/ext/narray/ca_wrap_narray.c +491 -0
- data/ext/narray/carray_narray.c +21 -0
- data/ext/narray/extconf.rb +57 -0
- data/ext/narray/lib/autoload/autoload_math_narray.rb +1 -0
- data/ext/narray/lib/autoload/autoload_math_narray_miss.rb +11 -0
- data/ext/narray/lib/math/narray.rb +17 -0
- data/ext/narray/lib/math/narray_miss.rb +45 -0
- data/extconf.rb +3 -25
- data/lib/carray.rb +28 -0
- data/lib/carray/autoload/autoload_base.rb +23 -0
- data/lib/carray/autoload/autoload_graphics_gnuplot.rb +2 -0
- data/lib/carray/autoload/autoload_io_csv.rb +14 -0
- data/lib/carray/autoload/autoload_io_excel.rb +5 -0
- data/lib/carray/autoload/autoload_io_imagemagick.rb +6 -0
- data/lib/carray/autoload/autoload_io_pg.rb +6 -0
- data/lib/carray/autoload/autoload_io_sqlite3.rb +12 -0
- data/lib/carray/autoload/autoload_io_table.rb +1 -0
- data/lib/carray/autoload/autoload_math_histogram.rb +5 -0
- data/lib/carray/autoload/autoload_math_interp.rb +4 -0
- data/lib/carray/autoload/autoload_math_recurrence.rb +6 -0
- data/lib/carray/autoload/autoload_object_iterator.rb +1 -0
- data/lib/carray/autoload/autoload_object_link.rb +1 -0
- data/lib/carray/autoload/autoload_object_pack.rb +2 -0
- data/lib/carray/base/autoload.rb +94 -0
- data/lib/carray/base/basic.rb +1051 -0
- data/lib/carray/base/inspect.rb +252 -0
- data/lib/carray/base/iterator.rb +367 -0
- data/lib/carray/base/math.rb +403 -0
- data/lib/carray/base/obsolete.rb +93 -0
- data/lib/carray/base/serialize.rb +260 -0
- data/lib/carray/base/struct.rb +634 -0
- data/lib/carray/graphics/gnuplot.rb +2116 -0
- data/lib/carray/info.rb +112 -0
- data/lib/carray/io/csv.rb +560 -0
- data/lib/carray/io/excel.rb +26 -0
- data/lib/carray/io/imagemagick.rb +231 -0
- data/lib/carray/io/pg.rb +101 -0
- data/lib/carray/io/sqlite3.rb +202 -0
- data/lib/carray/io/table.rb +77 -0
- data/lib/carray/math/histogram.rb +179 -0
- data/lib/carray/math/interp.rb +57 -0
- data/lib/carray/math/interp/adapter_gsl_spline.rb +47 -0
- data/lib/carray/math/recurrence.rb +95 -0
- data/lib/carray/mkmf.rb +145 -0
- data/lib/carray/object/ca_obj_iterator.rb +52 -0
- data/lib/carray/object/ca_obj_link.rb +52 -0
- data/lib/carray/object/ca_obj_pack.rb +101 -0
- data/mkmath.rb +731 -0
- data/mt19937ar.c +182 -0
- data/mt19937ar.h +86 -0
- data/rdoc_main.rb +27 -0
- data/rdoc_math.rb +5 -0
- data/rdoc_stat.rb +31 -0
- data/ruby_carray.c +242 -0
- data/ruby_ccomplex.c +497 -0
- data/ruby_float_func.c +83 -0
- data/spec/CABlockIterator/CABlockIterator_spec.rb +113 -0
- data/spec/CArray/bug/store_spec.rb +27 -0
- data/spec/CArray/index/repeat_spec.rb +10 -0
- data/spec/CArray/method/eq_spec.rb +80 -0
- data/spec/CArray/method/is_nan_spec.rb +12 -0
- data/spec/CArray/method/ne_spec.rb +18 -0
- data/spec/CArray/method/round_spec.rb +11 -0
- data/spec/CArray/object/_attribute_spec.rb +32 -0
- data/spec/CArray/object/s_new_spec.rb +31 -0
- data/spec/CArray/serialize/Serialization_spec.rb +89 -0
- data/spec/spec_all.rb +11 -0
- data/test/test_ALL.rb +50 -0
- data/test/test_CABitfield.rb +59 -0
- data/test/test_CABlock.rb +208 -0
- data/test/test_CAField.rb +40 -0
- data/test/test_CAGrid.rb +76 -0
- data/test/test_CAMapping.rb +106 -0
- data/test/test_CAMmap.rb +11 -0
- data/test/test_CARefer.rb +94 -0
- data/test/test_CARepeat.rb +66 -0
- data/test/test_CASelect.rb +23 -0
- data/test/test_CAShift.rb +17 -0
- data/test/test_CATranspose.rb +61 -0
- data/test/test_CAVirtual.rb +214 -0
- data/test/test_CAWindow.rb +55 -0
- data/test/test_CAWrap.rb +9 -0
- data/test/test_CArray.rb +228 -0
- data/test/test_CComplex.rb +83 -0
- data/test/test_CScalar.rb +91 -0
- data/test/test_attribute.rb +281 -0
- data/test/test_block_iterator.rb +17 -0
- data/test/test_boolean.rb +99 -0
- data/test/test_cast.rb +33 -0
- data/test/test_class.rb +85 -0
- data/test/test_complex.rb +43 -0
- data/test/test_composite.rb +125 -0
- data/test/test_convert.rb +79 -0
- data/test/test_copy.rb +141 -0
- data/test/test_creation.rb +85 -0
- data/test/test_element.rb +146 -0
- data/test/test_extream.rb +55 -0
- data/test/test_generate.rb +75 -0
- data/test/test_index.rb +71 -0
- data/test/test_mask.rb +578 -0
- data/test/test_math.rb +98 -0
- data/test/test_narray.rb +64 -0
- data/test/test_order.rb +147 -0
- data/test/test_random.rb +15 -0
- data/test/test_ref_store.rb +211 -0
- data/test/test_stat.rb +414 -0
- data/test/test_struct.rb +72 -0
- data/test/test_virtual.rb +49 -0
- data/utils/ca_ase.rb +21 -0
- data/utils/ca_methods.rb +15 -0
- data/utils/cast_checker.rb +30 -0
- data/utils/create_rdoc.sh +9 -0
- data/utils/diff_method.rb +52 -0
- data/utils/extract_rdoc.rb +27 -0
- data/utils/make_tgz.sh +3 -0
- data/utils/remove_resource_fork.sh +5 -0
- data/version.h +3 -3
- metadata +266 -1
@@ -0,0 +1,281 @@
|
|
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
|
@@ -0,0 +1,17 @@
|
|
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
|
+
|
@@ -0,0 +1,99 @@
|
|
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
ADDED
@@ -0,0 +1,33 @@
|
|
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
ADDED
@@ -0,0 +1,85 @@
|
|
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
|