carray 1.4.0 → 1.5.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +32 -0
- data/LICENSE +22 -0
- data/NEWS.md +83 -0
- data/README.md +38 -18
- data/Rakefile +2 -2
- data/TODO.md +17 -0
- data/carray.gemspec +13 -18
- data/{ca_iter_block.c → ext/ca_iter_block.c} +16 -18
- data/{ca_iter_dimension.c → ext/ca_iter_dimension.c} +20 -21
- data/{ca_iter_window.c → ext/ca_iter_window.c} +12 -14
- data/{ca_obj_array.c → ext/ca_obj_array.c} +451 -176
- data/{ca_obj_bitarray.c → ext/ca_obj_bitarray.c} +18 -23
- data/{ca_obj_bitfield.c → ext/ca_obj_bitfield.c} +12 -16
- data/{ca_obj_block.c → ext/ca_obj_block.c} +47 -54
- data/{ca_obj_fake.c → ext/ca_obj_fake.c} +10 -12
- data/{ca_obj_farray.c → ext/ca_obj_farray.c} +21 -23
- data/{ca_obj_field.c → ext/ca_obj_field.c} +30 -32
- data/{ca_obj_grid.c → ext/ca_obj_grid.c} +32 -33
- data/{ca_obj_mapping.c → ext/ca_obj_mapping.c} +11 -13
- data/{ca_obj_object.c → ext/ca_obj_object.c} +40 -42
- data/{ca_obj_reduce.c → ext/ca_obj_reduce.c} +3 -5
- data/{ca_obj_refer.c → ext/ca_obj_refer.c} +44 -48
- data/{ca_obj_repeat.c → ext/ca_obj_repeat.c} +45 -47
- data/{ca_obj_select.c → ext/ca_obj_select.c} +4 -6
- data/{ca_obj_shift.c → ext/ca_obj_shift.c} +26 -28
- data/{ca_obj_transpose.c → ext/ca_obj_transpose.c} +26 -28
- data/{ca_obj_unbound_repeat.c → ext/ca_obj_unbound_repeat.c} +106 -160
- data/{ca_obj_window.c → ext/ca_obj_window.c} +33 -35
- data/{carray.h → ext/carray.h} +86 -59
- data/{carray_access.c → ext/carray_access.c} +194 -101
- data/{carray_attribute.c → ext/carray_attribute.c} +161 -207
- data/{carray_call_cfunc.c → ext/carray_call_cfunc.c} +1 -3
- data/{carray_cast.c → ext/carray_cast.c} +351 -150
- data/{carray_cast_func.rb → ext/carray_cast_func.rb} +1 -2
- data/{carray_class.c → ext/carray_class.c} +28 -36
- data/{carray_conversion.c → ext/carray_conversion.c} +63 -68
- data/{carray_copy.c → ext/carray_copy.c} +34 -50
- data/{carray_core.c → ext/carray_core.c} +75 -62
- data/ext/carray_data_type.c +66 -0
- data/{carray_element.c → ext/carray_element.c} +34 -53
- data/{carray_generate.c → ext/carray_generate.c} +71 -50
- data/{carray_iterator.c → ext/carray_iterator.c} +53 -53
- data/{carray_loop.c → ext/carray_loop.c} +77 -106
- data/{carray_mask.c → ext/carray_mask.c} +105 -114
- data/{carray_math.rb → ext/carray_math.rb} +29 -13
- data/ext/{mathfunc/carray_mathfunc.c → carray_mathfunc.c} +1 -3
- data/{carray_numeric.c → ext/carray_numeric.c} +43 -46
- data/{carray_operator.c → ext/carray_operator.c} +49 -36
- data/{carray_order.c → ext/carray_order.c} +232 -217
- data/{carray_sort_addr.c → ext/carray_sort_addr.c} +14 -21
- data/{carray_stat.c → ext/carray_stat.c} +6 -8
- data/{carray_stat_proc.rb → ext/carray_stat_proc.rb} +25 -27
- data/{carray_test.c → ext/carray_test.c} +63 -51
- data/{carray_undef.c → ext/carray_undef.c} +1 -11
- data/{carray_utils.c → ext/carray_utils.c} +12 -4
- data/{extconf.rb → ext/extconf.rb} +10 -7
- data/{mkmath.rb → ext/mkmath.rb} +2 -2
- data/{ruby_carray.c → ext/ruby_carray.c} +20 -8
- data/{ruby_ccomplex.c → ext/ruby_ccomplex.c} +2 -4
- data/{ruby_float_func.c → ext/ruby_float_func.c} +1 -3
- data/ext/version.h +16 -0
- data/{version.rb → ext/version.rb} +0 -0
- data/lib/carray.rb +51 -40
- data/lib/carray/{base/autoload.rb → autoload.rb} +1 -3
- data/lib/carray/autoload/autoload_base.rb +1 -1
- data/lib/carray/autoload/autoload_gem_numo_narray.rb +7 -6
- data/lib/carray/autoload/autoload_gem_random.rb +8 -0
- data/lib/carray/basic.rb +191 -0
- data/lib/carray/broadcast.rb +101 -0
- data/lib/carray/compose.rb +315 -0
- data/lib/carray/construct.rb +484 -0
- data/lib/carray/convert.rb +115 -0
- data/lib/carray/info.rb +1 -3
- data/lib/carray/{base/inspect.rb → inspect.rb} +9 -11
- data/lib/carray/io/imagemagick.rb +2 -4
- data/lib/carray/{base/iterator.rb → iterator.rb} +6 -6
- data/lib/carray/mask.rb +102 -0
- data/lib/carray/{base/math.rb → math.rb} +20 -52
- data/lib/carray/math/histogram.rb +8 -10
- data/lib/carray/math/recurrence.rb +1 -3
- data/lib/carray/mkmf.rb +9 -3
- data/lib/carray/object/ca_obj_iterator.rb +1 -3
- data/lib/carray/object/ca_obj_link.rb +1 -3
- data/lib/carray/object/ca_obj_pack.rb +9 -11
- data/lib/carray/obsolete.rb +256 -0
- data/lib/carray/ordering.rb +181 -0
- data/lib/carray/{base/serialize.rb → serialize.rb} +60 -76
- data/lib/carray/{base/string.rb → string.rb} +10 -64
- data/lib/carray/{base/struct.rb → struct.rb} +19 -21
- data/lib/carray/{io/table.rb → table.rb} +1 -10
- data/lib/carray/testing.rb +51 -0
- data/lib/carray/time.rb +76 -0
- data/lib/carray/transform.rb +109 -0
- data/misc/Methods.ja.md +182 -0
- data/{NOTE → misc/NOTE} +16 -38
- 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 +102 -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 +98 -0
- data/spec/Features/feature_broadcast.rb +116 -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 +580 -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
- data/{devel → utils}/guess_shape.rb +0 -0
- data/utils/{diff_method.rb → monkey_patch_methods.rb} +17 -7
- metadata +159 -206
- data/COPYING +0 -56
- data/GPL +0 -340
- data/LEGAL +0 -50
- data/TODO +0 -5
- data/carray_random.c +0 -531
- data/devel/im2col.rb +0 -17
- data/ext/calculus/carray_calculus.c +0 -931
- data/ext/calculus/carray_interp.c +0 -358
- data/ext/calculus/extconf.rb +0 -12
- data/ext/calculus/lib/math/calculus.rb +0 -119
- data/ext/calculus/lib/math/interp/adapter_interp1d.rb +0 -31
- data/ext/mathfunc/extconf.rb +0 -18
- data/ext/mathfunc/test/test_hypot.rb +0 -5
- data/ext/mathfunc/test/test_j0.rb +0 -22
- data/ext/mathfunc/test/test_jn.rb +0 -8
- data/ext/mathfunc/test/test_sph.rb +0 -9
- data/lib/carray/autoload/autoload_io_table.rb +0 -1
- data/lib/carray/autoload/autoload_math_interp.rb +0 -4
- data/lib/carray/base/basic.rb +0 -1146
- data/lib/carray/base/obsolete.rb +0 -131
- data/lib/carray/math/interp.rb +0 -57
- data/lib/carray/math/interp/adapter_gsl_spline.rb +0 -47
- data/mt19937ar.c +0 -182
- data/mt19937ar.h +0 -86
- data/rdoc_main.rb +0 -27
- data/rdoc_math.rb +0 -5
- data/rdoc_stat.rb +0 -31
- 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 -51
- 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_narray.rb +0 -64
- data/test/test_order.rb +0 -147
- data/test/test_random.rb +0 -15
- data/test/test_ref_store.rb +0 -211
- data/test/test_stat.rb +0 -414
- data/test/test_struct.rb +0 -72
- data/test/test_virtual.rb +0 -49
- data/utils/create_rdoc.sh +0 -9
- data/utils/make_tgz.sh +0 -3
- data/version.h +0 -18
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'carray'
|
2
|
+
require "rspec-power_assert"
|
3
|
+
|
4
|
+
describe "CScalar#[]" do
|
5
|
+
|
6
|
+
example "basic" do
|
7
|
+
a = CA_DOUBLE(3.0)
|
8
|
+
|
9
|
+
is_asserted_by { a[0] == 3.0 }
|
10
|
+
is_asserted_by { a[1] == 3.0 }
|
11
|
+
|
12
|
+
# a[] returns self
|
13
|
+
is_asserted_by { a[].class == CScalar }
|
14
|
+
is_asserted_by { a[] == a }
|
15
|
+
|
16
|
+
# a[nil] returns self
|
17
|
+
is_asserted_by { a[nil].class == CScalar }
|
18
|
+
is_asserted_by { a[nil] == a }
|
19
|
+
|
20
|
+
# a[block] returns self
|
21
|
+
is_asserted_by { a[0..5].class == CScalar }
|
22
|
+
is_asserted_by { a[0..5] == a }
|
23
|
+
|
24
|
+
a[0] = 5.0
|
25
|
+
is_asserted_by { a[0] == 5.0 }
|
26
|
+
expect { a[1] = 5.0 }.to raise_error(IndexError)
|
27
|
+
end
|
28
|
+
|
29
|
+
example "select" do
|
30
|
+
a = CA_DOUBLE(3.0)
|
31
|
+
idx = CA_BOOLEAN([true,false,true,false,true])
|
32
|
+
expect { a[idx] }.to raise_error(RuntimeError)
|
33
|
+
end
|
34
|
+
|
35
|
+
example "mapping" do
|
36
|
+
a = CA_DOUBLE(3.0)
|
37
|
+
idx = CA_INT([0,0,0,0,0])
|
38
|
+
is_asserted_by { a[idx] == CA_DOUBLE([3,3,3,3,3]) }
|
39
|
+
|
40
|
+
idx = CA_INT([0,1,2,3,4])
|
41
|
+
expect { a[idx] }.to raise_error(IndexError)
|
42
|
+
end
|
43
|
+
|
44
|
+
example "method" do
|
45
|
+
a = CA_DOUBLE(3.0)
|
46
|
+
a[:gt,1] = 10
|
47
|
+
is_asserted_by { a[0] == 10 }
|
48
|
+
|
49
|
+
a = CA_DOUBLE(3.0)
|
50
|
+
a[:lt,1] = 10
|
51
|
+
is_asserted_by { a[0] == 3.0 }
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
55
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
|
2
|
+
require 'carray'
|
3
|
+
require "rspec-power_assert"
|
4
|
+
|
5
|
+
describe "Test130 " do
|
6
|
+
|
7
|
+
example "float_arithmetic" do
|
8
|
+
is_asserted_by { (CA_FLOAT([100]) + 1)[0] == 101.0 }
|
9
|
+
end
|
10
|
+
|
11
|
+
example "int64" do
|
12
|
+
expect { CA_INT64([0xffffffffffffffff]) }.to raise_error(RangeError)
|
13
|
+
is_asserted_by { CA_INT64([0x7fffffffffffffff])[0] == 0x7fffffffffffffff }
|
14
|
+
is_asserted_by { CA_INT64([0x7fffffffffffffff])+1 == CA_INT64([-0x8000000000000000]) }
|
15
|
+
is_asserted_by { CA_INT64([0x7fffffffffffffff, 0x7fffffffffffffff]).sum == (2*0x7fffffffffffffff).to_f }
|
16
|
+
end
|
17
|
+
|
18
|
+
|
19
|
+
end
|
@@ -0,0 +1,280 @@
|
|
1
|
+
|
2
|
+
require 'carray'
|
3
|
+
require "rspec-power_assert"
|
4
|
+
|
5
|
+
describe "TestCArrayAttribute " do
|
6
|
+
|
7
|
+
example "attribute_basic_features" do
|
8
|
+
a = CArray.new(CA_INT32, [4, 3, 2, 1])
|
9
|
+
is_asserted_by { a.class == CArray }
|
10
|
+
is_asserted_by { CA_OBJ_ARRAY == a.obj_type }
|
11
|
+
is_asserted_by { CA_INT32 == a.data_type }
|
12
|
+
is_asserted_by { 4 == a.rank }
|
13
|
+
is_asserted_by { CArray.sizeof(CA_INT32) == a.bytes }
|
14
|
+
is_asserted_by { 24 == a.elements }
|
15
|
+
is_asserted_by { [4, 3, 2, 1] == a.dim }
|
16
|
+
is_asserted_by { 4 == a.dim0 }
|
17
|
+
is_asserted_by { 3 == a.dim1 }
|
18
|
+
is_asserted_by { 2 == a.dim2 }
|
19
|
+
is_asserted_by { 1 == a.dim3 }
|
20
|
+
end
|
21
|
+
|
22
|
+
example "fixlen?" do
|
23
|
+
is_asserted_by { CArray.new(CA_FIXLEN, [1], bytes: 1).fixlen? == true }
|
24
|
+
is_asserted_by { CArray.boolean(1).fixlen? == false }
|
25
|
+
is_asserted_by { CArray.int8(1).fixlen? == false }
|
26
|
+
is_asserted_by { CArray.uint8(1).fixlen? == false }
|
27
|
+
is_asserted_by { CArray.int16(1).fixlen? == false }
|
28
|
+
is_asserted_by { CArray.uint16(1).fixlen? == false }
|
29
|
+
is_asserted_by { CArray.int32(1).fixlen? == false }
|
30
|
+
is_asserted_by { CArray.uint32(1).fixlen? == false }
|
31
|
+
is_asserted_by { CArray.int64(1).fixlen? == false }
|
32
|
+
is_asserted_by { CArray.uint64(1).fixlen? == false }
|
33
|
+
is_asserted_by { CArray.float32(1).fixlen? == false }
|
34
|
+
is_asserted_by { CArray.float64(1).fixlen? == false }
|
35
|
+
if CArray.data_type?(:float128)
|
36
|
+
is_asserted_by { CArray.float128(1).fixlen? == false }
|
37
|
+
end
|
38
|
+
if CArray::HAVE_COMPLEX
|
39
|
+
is_asserted_by { CArray.cmplx64(1).fixlen? == false }
|
40
|
+
is_asserted_by { CArray.cmplx128(1).fixlen? == false }
|
41
|
+
if CArray.data_type?(:cmplx256)
|
42
|
+
is_asserted_by { CArray.cmplx256(1).fixlen? == false }
|
43
|
+
end
|
44
|
+
end
|
45
|
+
is_asserted_by { CArray.object(1).fixlen? == false }
|
46
|
+
end
|
47
|
+
|
48
|
+
example "boolean?" do
|
49
|
+
is_asserted_by { CArray.new(CA_FIXLEN, [1], bytes: 1).boolean? == false }
|
50
|
+
is_asserted_by { CArray.boolean(1).boolean? == true }
|
51
|
+
is_asserted_by { CArray.int8(1).boolean? == false }
|
52
|
+
is_asserted_by { CArray.uint8(1).boolean? == false }
|
53
|
+
is_asserted_by { CArray.int16(1).boolean? == false }
|
54
|
+
is_asserted_by { CArray.uint16(1).boolean? == false }
|
55
|
+
is_asserted_by { CArray.int32(1).boolean? == false }
|
56
|
+
is_asserted_by { CArray.uint32(1).boolean? == false }
|
57
|
+
is_asserted_by { CArray.int64(1).boolean? == false }
|
58
|
+
is_asserted_by { CArray.uint64(1).boolean? == false }
|
59
|
+
is_asserted_by { CArray.float32(1).boolean? == false }
|
60
|
+
is_asserted_by { CArray.float64(1).boolean? == false }
|
61
|
+
if CArray.data_type?(:float128)
|
62
|
+
is_asserted_by { CArray.float128(1).boolean? == false }
|
63
|
+
end
|
64
|
+
if CArray::HAVE_COMPLEX
|
65
|
+
is_asserted_by { CArray.cmplx64(1).boolean? == false }
|
66
|
+
is_asserted_by { CArray.cmplx128(1).boolean? == false }
|
67
|
+
if CArray.data_type?(:cmplx256)
|
68
|
+
is_asserted_by { CArray.cmplx256(1).boolean? == false }
|
69
|
+
end
|
70
|
+
end
|
71
|
+
is_asserted_by { CArray.object(1).boolean? == false }
|
72
|
+
end
|
73
|
+
|
74
|
+
example "numeric?" do
|
75
|
+
is_asserted_by { CArray.new(CA_FIXLEN, [1], bytes: 1).integer? == false }
|
76
|
+
is_asserted_by { CArray.boolean(1).integer? == false }
|
77
|
+
is_asserted_by { CArray.int8(1).integer? == true }
|
78
|
+
is_asserted_by { CArray.uint8(1).integer? == true }
|
79
|
+
is_asserted_by { CArray.int16(1).integer? == true }
|
80
|
+
is_asserted_by { CArray.uint16(1).integer? == true }
|
81
|
+
is_asserted_by { CArray.int32(1).integer? == true }
|
82
|
+
is_asserted_by { CArray.uint32(1).integer? == true }
|
83
|
+
is_asserted_by { CArray.int64(1).integer? == true }
|
84
|
+
is_asserted_by { CArray.uint64(1).integer? == true }
|
85
|
+
is_asserted_by { CArray.float32(1).integer? == false }
|
86
|
+
is_asserted_by { CArray.float64(1).integer? == false }
|
87
|
+
if CArray.data_type?(:float128)
|
88
|
+
is_asserted_by { CArray.float128(1).integer? == false }
|
89
|
+
end
|
90
|
+
if CArray::HAVE_COMPLEX
|
91
|
+
is_asserted_by { CArray.cmplx64(1).integer? == false }
|
92
|
+
is_asserted_by { CArray.cmplx128(1).integer? == false }
|
93
|
+
if CArray.data_type?(:cmplx256)
|
94
|
+
is_asserted_by { CArray.cmplx256(1).integer? == false }
|
95
|
+
end
|
96
|
+
end
|
97
|
+
is_asserted_by { CArray.object(1).integer? == false }
|
98
|
+
end
|
99
|
+
|
100
|
+
example "integer?" do
|
101
|
+
is_asserted_by { CArray.new(CA_FIXLEN, [1], bytes: 1).integer? == false }
|
102
|
+
is_asserted_by { CArray.boolean(1).integer? == false }
|
103
|
+
is_asserted_by { CArray.int8(1).integer? == true }
|
104
|
+
is_asserted_by { CArray.uint8(1).integer? == true }
|
105
|
+
is_asserted_by { CArray.int16(1).integer? == true }
|
106
|
+
is_asserted_by { CArray.uint16(1).integer? == true }
|
107
|
+
is_asserted_by { CArray.int32(1).integer? == true }
|
108
|
+
is_asserted_by { CArray.uint32(1).integer? == true }
|
109
|
+
is_asserted_by { CArray.int64(1).integer? == true }
|
110
|
+
is_asserted_by { CArray.uint64(1).integer? == true }
|
111
|
+
is_asserted_by { CArray.float32(1).integer? == false }
|
112
|
+
is_asserted_by { CArray.float64(1).integer? == false }
|
113
|
+
if CArray.data_type?(:float128)
|
114
|
+
is_asserted_by { CArray.float128(1).integer? == false }
|
115
|
+
end
|
116
|
+
if CArray::HAVE_COMPLEX
|
117
|
+
is_asserted_by { CArray.cmplx64(1).integer? == false }
|
118
|
+
is_asserted_by { CArray.cmplx128(1).integer? == false }
|
119
|
+
if CArray.data_type?(:cmplx256)
|
120
|
+
is_asserted_by { CArray.cmplx256(1).integer? == false }
|
121
|
+
end
|
122
|
+
end
|
123
|
+
is_asserted_by { CArray.object(1).integer? == false }
|
124
|
+
end
|
125
|
+
|
126
|
+
example "unsigned?" do
|
127
|
+
is_asserted_by { CArray.new(CA_FIXLEN, [1], bytes: 1).unsigned? == false }
|
128
|
+
is_asserted_by { CArray.boolean(1).unsigned? == false }
|
129
|
+
is_asserted_by { CArray.int8(1).unsigned? == false }
|
130
|
+
is_asserted_by { CArray.uint8(1).unsigned? == true }
|
131
|
+
is_asserted_by { CArray.int16(1).unsigned? == false }
|
132
|
+
is_asserted_by { CArray.uint16(1).unsigned? == true }
|
133
|
+
is_asserted_by { CArray.int32(1).unsigned? == false }
|
134
|
+
is_asserted_by { CArray.uint32(1).unsigned? == true }
|
135
|
+
is_asserted_by { CArray.int64(1).unsigned? == false }
|
136
|
+
is_asserted_by { CArray.uint64(1).unsigned? == true }
|
137
|
+
is_asserted_by { CArray.float32(1).unsigned? == false }
|
138
|
+
is_asserted_by { CArray.float64(1).unsigned? == false }
|
139
|
+
if CArray.data_type?(:float128)
|
140
|
+
is_asserted_by { CArray.float128(1).unsigned? == false }
|
141
|
+
end
|
142
|
+
if CArray::HAVE_COMPLEX
|
143
|
+
is_asserted_by { CArray.cmplx64(1).unsigned? == false }
|
144
|
+
is_asserted_by { CArray.cmplx128(1).unsigned? == false }
|
145
|
+
if CArray.data_type?(:cmplx256)
|
146
|
+
is_asserted_by { CArray.cmplx256(1).unsigned? == false }
|
147
|
+
end
|
148
|
+
end
|
149
|
+
is_asserted_by { CArray.object(1).unsigned? == false }
|
150
|
+
end
|
151
|
+
|
152
|
+
example "float?" do
|
153
|
+
is_asserted_by { CArray.new(CA_FIXLEN, [1], bytes: 1).float? == false }
|
154
|
+
is_asserted_by { CArray.boolean(1).float? == false }
|
155
|
+
is_asserted_by { CArray.int8(1).float? == false }
|
156
|
+
is_asserted_by { CArray.uint8(1).float? == false }
|
157
|
+
is_asserted_by { CArray.int16(1).float? == false }
|
158
|
+
is_asserted_by { CArray.uint16(1).float? == false }
|
159
|
+
is_asserted_by { CArray.int32(1).float? == false }
|
160
|
+
is_asserted_by { CArray.uint32(1).float? == false }
|
161
|
+
is_asserted_by { CArray.int64(1).float? == false }
|
162
|
+
is_asserted_by { CArray.uint64(1).float? == false }
|
163
|
+
is_asserted_by { CArray.float32(1).float? == true }
|
164
|
+
is_asserted_by { CArray.float64(1).float? == true }
|
165
|
+
if CArray.data_type?(:float128)
|
166
|
+
is_asserted_by { CArray.float128(1).float? == true }
|
167
|
+
end
|
168
|
+
if CArray::HAVE_COMPLEX
|
169
|
+
is_asserted_by { CArray.cmplx64(1).float? == false }
|
170
|
+
is_asserted_by { CArray.cmplx128(1).float? == false }
|
171
|
+
if CArray.data_type?(:cmplx256)
|
172
|
+
is_asserted_by { CArray.cmplx256(1).float? == false }
|
173
|
+
end
|
174
|
+
end
|
175
|
+
is_asserted_by { CArray.object(1).float? == false }
|
176
|
+
end
|
177
|
+
|
178
|
+
example "complex?" do
|
179
|
+
is_asserted_by { CArray.new(CA_FIXLEN, [1], bytes: 1).complex? == false }
|
180
|
+
is_asserted_by { CArray.boolean(1).complex? == false }
|
181
|
+
is_asserted_by { CArray.int8(1).complex? == false }
|
182
|
+
is_asserted_by { CArray.uint8(1).complex? == false }
|
183
|
+
is_asserted_by { CArray.int16(1).complex? == false }
|
184
|
+
is_asserted_by { CArray.uint16(1).complex? == false }
|
185
|
+
is_asserted_by { CArray.int32(1).complex? == false }
|
186
|
+
is_asserted_by { CArray.uint32(1).complex? == false }
|
187
|
+
is_asserted_by { CArray.int64(1).complex? == false }
|
188
|
+
is_asserted_by { CArray.uint64(1).complex? == false }
|
189
|
+
is_asserted_by { CArray.float32(1).complex? == false }
|
190
|
+
is_asserted_by { CArray.float64(1).complex? == false }
|
191
|
+
if CArray.data_type?(:float128)
|
192
|
+
is_asserted_by { CArray.float128(1).complex? == false }
|
193
|
+
end
|
194
|
+
if CArray::HAVE_COMPLEX
|
195
|
+
is_asserted_by { CArray.cmplx64(1).complex? == true }
|
196
|
+
is_asserted_by { CArray.cmplx128(1).complex? == true }
|
197
|
+
if CArray.data_type?(:cmplx256)
|
198
|
+
is_asserted_by { CArray.cmplx256(1).complex? == true }
|
199
|
+
end
|
200
|
+
end
|
201
|
+
is_asserted_by { CArray.object(1).complex? == false }
|
202
|
+
end
|
203
|
+
|
204
|
+
example "object?" do
|
205
|
+
is_asserted_by { CArray.new(CA_FIXLEN, [1], bytes: 1).object? == false }
|
206
|
+
is_asserted_by { CArray.boolean(1).object? == false }
|
207
|
+
is_asserted_by { CArray.int8(1).object? == false }
|
208
|
+
is_asserted_by { CArray.uint8(1).object? == false }
|
209
|
+
is_asserted_by { CArray.int16(1).object? == false }
|
210
|
+
is_asserted_by { CArray.uint16(1).object? == false }
|
211
|
+
is_asserted_by { CArray.int32(1).object? == false }
|
212
|
+
is_asserted_by { CArray.uint32(1).object? == false }
|
213
|
+
is_asserted_by { CArray.int64(1).object? == false }
|
214
|
+
is_asserted_by { CArray.uint64(1).object? == false }
|
215
|
+
is_asserted_by { CArray.float32(1).object? == false }
|
216
|
+
is_asserted_by { CArray.float64(1).object? == false }
|
217
|
+
if CArray.data_type?(:float128)
|
218
|
+
is_asserted_by { CArray.float128(1).object? == false }
|
219
|
+
end
|
220
|
+
if CArray::HAVE_COMPLEX
|
221
|
+
is_asserted_by { CArray.cmplx64(1).object? == false }
|
222
|
+
is_asserted_by { CArray.cmplx128(1).object? == false }
|
223
|
+
if CArray.data_type?(:cmplx256)
|
224
|
+
is_asserted_by { CArray.cmplx256(1).object? == false }
|
225
|
+
end
|
226
|
+
end
|
227
|
+
is_asserted_by { CArray.object(1).object? == true }
|
228
|
+
end
|
229
|
+
|
230
|
+
example "entity?" do
|
231
|
+
a = CArray.int32(3)
|
232
|
+
is_asserted_by { a.entity? == true }
|
233
|
+
is_asserted_by { a[].entity? == false }
|
234
|
+
is_asserted_by { a[0..1].entity? == false }
|
235
|
+
is_asserted_by { a[a > 0].entity? == false }
|
236
|
+
|
237
|
+
b = CScalar.int32()
|
238
|
+
is_asserted_by { b.entity? == true }
|
239
|
+
is_asserted_by { b[].entity? == true }
|
240
|
+
end
|
241
|
+
|
242
|
+
example "virtual?" do
|
243
|
+
a = CArray.int32(3)
|
244
|
+
is_asserted_by { a.virtual? == false }
|
245
|
+
is_asserted_by { a[].virtual? == true }
|
246
|
+
is_asserted_by { a[0..1].virtual? == true }
|
247
|
+
is_asserted_by { a[a > 0].virtual? == true }
|
248
|
+
|
249
|
+
b = CScalar.int32()
|
250
|
+
is_asserted_by { b.virtual? == false }
|
251
|
+
is_asserted_by { b[].virtual? == false }
|
252
|
+
end
|
253
|
+
|
254
|
+
example "valid_index?" do
|
255
|
+
a = CArray.int32(3,3)
|
256
|
+
is_asserted_by { true == a.valid_index?(2, 2) }
|
257
|
+
is_asserted_by { true == a.valid_index?(1, 1) }
|
258
|
+
is_asserted_by { true == a.valid_index?((-1), (-1)) }
|
259
|
+
is_asserted_by { true == a.valid_index?((-3), (-3)) }
|
260
|
+
|
261
|
+
is_asserted_by { true == a.valid_addr?(8) }
|
262
|
+
is_asserted_by { true == a.valid_addr?(4) }
|
263
|
+
is_asserted_by { true == a.valid_addr?((-4)) }
|
264
|
+
is_asserted_by { true == a.valid_addr?((-8)) }
|
265
|
+
|
266
|
+
is_asserted_by { false == a.valid_index?(1, 3) }
|
267
|
+
is_asserted_by { false == a.valid_index?((-4), 1) }
|
268
|
+
|
269
|
+
is_asserted_by { false == a.valid_addr?(9) }
|
270
|
+
is_asserted_by { false == a.valid_addr?((-10)) }
|
271
|
+
end
|
272
|
+
|
273
|
+
example "same_shape?" do
|
274
|
+
a = CArray.int32(4,3,2,1)
|
275
|
+
b = CArray.int8(1,2,3,4)
|
276
|
+
is_asserted_by { false == a.same_shape?(b) }
|
277
|
+
is_asserted_by { true == a.transposed.same_shape?(b) }
|
278
|
+
end
|
279
|
+
|
280
|
+
end
|
@@ -0,0 +1,98 @@
|
|
1
|
+
|
2
|
+
require 'carray'
|
3
|
+
require "rspec-power_assert"
|
4
|
+
|
5
|
+
describe "TestBooleanType " do
|
6
|
+
|
7
|
+
example "boolean_bit_operations" do
|
8
|
+
a = CArray.int(3,3).seq!
|
9
|
+
e0 = a < 4
|
10
|
+
e1 = a >= 4
|
11
|
+
|
12
|
+
# ---
|
13
|
+
is_asserted_by { e0 != (e0 & 1) }
|
14
|
+
is_asserted_by { e0 == (e0 & true) }
|
15
|
+
is_asserted_by { a.false == (e0 & false) }
|
16
|
+
|
17
|
+
is_asserted_by { a.true != (e0 | 1) }
|
18
|
+
is_asserted_by { a.true == (e0 | true) }
|
19
|
+
is_asserted_by { e0 == (e0 | false) }
|
20
|
+
|
21
|
+
is_asserted_by { e1 != (e0 ^ 1) }
|
22
|
+
is_asserted_by { e1 == (e0 ^ true) }
|
23
|
+
is_asserted_by { e0 == (e0 ^ false) }
|
24
|
+
|
25
|
+
# ---
|
26
|
+
is_asserted_by { e0 != (1 & e0) }
|
27
|
+
is_asserted_by { e0 == (true & e0) }
|
28
|
+
is_asserted_by { a.false == (false & e0) }
|
29
|
+
|
30
|
+
is_asserted_by { a.true != (1 | e0) }
|
31
|
+
is_asserted_by { a.true == (true | e0) }
|
32
|
+
is_asserted_by { e0 == (false | e0) }
|
33
|
+
|
34
|
+
is_asserted_by { e1 != (1 ^ e0) }
|
35
|
+
is_asserted_by { e1 == (true ^ e0) }
|
36
|
+
is_asserted_by { e0 == (false ^ e0) }
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
example "boolean_bit_operations2" do
|
41
|
+
a = CArray.int(3,3).seq!
|
42
|
+
e0 = a < 4
|
43
|
+
e1 = a >= 4
|
44
|
+
|
45
|
+
one = a.one
|
46
|
+
zero = a.zero
|
47
|
+
tt = a.true
|
48
|
+
ff = a.false
|
49
|
+
|
50
|
+
# ---
|
51
|
+
is_asserted_by { e0 != (e0 & one) }
|
52
|
+
is_asserted_by { e0 == (e0 & tt) }
|
53
|
+
is_asserted_by { ff == (e0 & ff) }
|
54
|
+
|
55
|
+
is_asserted_by { tt != (e0 | one) }
|
56
|
+
is_asserted_by { tt == (e0 | tt) }
|
57
|
+
is_asserted_by { e0 == (e0 | ff) }
|
58
|
+
|
59
|
+
is_asserted_by { e1 != (e0 ^ one) }
|
60
|
+
is_asserted_by { e1 == (e0 ^ tt) }
|
61
|
+
is_asserted_by { e0 == (e0 ^ ff) }
|
62
|
+
|
63
|
+
# ---
|
64
|
+
is_asserted_by { e0 != (one & e0) }
|
65
|
+
is_asserted_by { e0 == (tt & e0) }
|
66
|
+
is_asserted_by { ff == (ff & e0) }
|
67
|
+
|
68
|
+
is_asserted_by { tt != (one | e0) }
|
69
|
+
is_asserted_by { tt == (tt | e0) }
|
70
|
+
is_asserted_by { e0 == (ff | e0) }
|
71
|
+
|
72
|
+
is_asserted_by { e1 != (one ^ e0) }
|
73
|
+
is_asserted_by { e1 == (tt ^ e0) }
|
74
|
+
is_asserted_by { e0 == (ff ^ e0) }
|
75
|
+
|
76
|
+
end
|
77
|
+
|
78
|
+
example "boolean_bit_operation_with_non_boolean_integer_type" do
|
79
|
+
|
80
|
+
a = CA_BOOLEAN([1,1,1,1])
|
81
|
+
b = CA_INT([0,1,2,3])
|
82
|
+
|
83
|
+
is_asserted_by { a & b == CA_INT([0, 1, 0, 1]) }
|
84
|
+
is_asserted_by { a | b == CA_INT([1, 1, 3, 3]) }
|
85
|
+
is_asserted_by { a ^ b == CA_INT([1, 0, 3, 2]) }
|
86
|
+
|
87
|
+
end
|
88
|
+
|
89
|
+
example "boolean_arithmetic_operation" do
|
90
|
+
a = CA_BOOLEAN([1,1,0,0])
|
91
|
+
b = CA_INT( [0,1,1,0])
|
92
|
+
|
93
|
+
expect { a + a }.to raise_error(CArray::DataTypeError)
|
94
|
+
|
95
|
+
is_asserted_by { a + b == CA_INT([1, 2, 1, 0]) }
|
96
|
+
end
|
97
|
+
|
98
|
+
end
|