carray 2.0.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardopts +5 -25
- data/CHANGELOG.md +16 -0
- data/LICENSE +1 -1
- data/NEWS.md +3 -0
- data/README.md +128 -44
- data/carray.gemspec +22 -24
- data/ext/ca_array_pool.c +91 -0
- data/ext/ca_axis_descriptor.h +186 -0
- data/ext/ca_axis_dispatch.c +924 -0
- data/ext/ca_axis_group.c +1208 -0
- data/ext/ca_bincmp_dispatch.c +76 -0
- data/ext/ca_bincmp_dispatch.h +85 -0
- data/ext/ca_binop_dispatch.c +125 -0
- data/ext/ca_binop_dispatch.h +159 -0
- data/ext/ca_categorical_iterator.c +1375 -0
- data/ext/ca_compare.c +94 -0
- data/ext/ca_compare.h +26 -0
- data/ext/ca_composite_dispatch.c +414 -0
- data/ext/ca_composite_dispatch.h +116 -0
- data/ext/ca_for_buffer.h +96 -0
- data/ext/ca_for_each_element.h +241 -0
- data/ext/ca_group_iter.c +304 -0
- data/ext/ca_iter_substrate.h +325 -0
- data/ext/ca_kernel_iterator.c +4321 -0
- data/ext/ca_kernel_iterator.h +2603 -0
- data/ext/ca_moncmp_dispatch.c +37 -0
- data/ext/ca_moncmp_dispatch.h +62 -0
- data/ext/ca_monop_dispatch.c +200 -0
- data/ext/ca_monop_dispatch.h +235 -0
- data/ext/ca_obj_array.c +355 -359
- data/ext/ca_obj_bincmp.c +809 -0
- data/ext/ca_obj_binop.c +892 -0
- data/ext/ca_obj_bitarray.c +369 -164
- data/ext/ca_obj_bitfield.c +294 -234
- data/ext/ca_obj_block.c +189 -711
- data/ext/ca_obj_byte_swap.c +766 -0
- data/ext/ca_obj_const_string.c +965 -0
- data/ext/ca_obj_face.c +670 -0
- data/ext/ca_obj_face.h +247 -0
- data/ext/ca_obj_fake.c +228 -100
- data/ext/ca_obj_farray.c +54 -441
- data/ext/ca_obj_field.c +82 -529
- data/ext/ca_obj_fixlen_string.c +306 -0
- data/ext/ca_obj_grid.c +858 -440
- data/ext/ca_obj_meld.c +1034 -0
- data/ext/ca_obj_moncmp.c +569 -0
- data/ext/ca_obj_monop.c +1111 -0
- data/ext/ca_obj_object.c +774 -298
- data/ext/ca_obj_record.c +468 -0
- data/ext/ca_obj_reduce.c +97 -82
- data/ext/ca_obj_refer.c +569 -459
- data/ext/ca_obj_remap.c +475 -0
- data/ext/ca_obj_repeat.c +92 -477
- data/ext/ca_obj_roll.c +616 -0
- data/ext/ca_obj_select.c +344 -296
- data/ext/ca_obj_select_axis.c +1296 -0
- data/ext/ca_obj_shift.c +230 -792
- data/ext/ca_obj_source.c +78 -0
- data/ext/ca_obj_stack.c +1173 -0
- data/ext/ca_obj_stride.c +2501 -0
- data/ext/ca_obj_string.c +268 -0
- data/ext/ca_obj_tile.c +614 -0
- data/ext/ca_obj_time.c +546 -0
- data/ext/ca_obj_timedelta.c +435 -0
- data/ext/ca_obj_transpose.c +62 -516
- data/ext/ca_obj_triop.c +746 -0
- data/ext/ca_obj_unbound_repeat.c +208 -241
- data/ext/ca_obj_window.c +1131 -563
- data/ext/ca_op_byte_swap.c +175 -0
- data/ext/ca_op_ipower.c +319 -0
- data/ext/ca_op_powi.h +88 -0
- data/ext/ca_sort_kernels.h +132 -0
- data/ext/ca_sweep_engine.c +430 -0
- data/ext/ca_sweep_engine.h +157 -0
- data/ext/ca_transform_common.c +228 -0
- data/ext/ca_triop_dispatch.c +55 -0
- data/ext/ca_triop_dispatch.h +62 -0
- data/ext/carray.h +795 -402
- data/ext/carray_access.c +831 -711
- data/ext/carray_attribute.c +98 -330
- data/ext/carray_bincount.c +255 -0
- data/ext/carray_broadcast.c +283 -0
- data/ext/carray_call_cfunc.c +1360 -828
- data/ext/carray_call_cfunc.h +160 -0
- data/ext/carray_cast.c +1212 -301
- data/ext/carray_cast_func.rb +81 -40
- data/ext/carray_class.c +53 -63
- data/ext/carray_config.h +28 -0
- data/ext/carray_conversion.c +350 -346
- data/ext/carray_copy.c +156 -268
- data/ext/carray_core.c +1342 -199
- data/ext/carray_count.c +312 -0
- data/ext/carray_data_type.c +43 -19
- data/ext/carray_element.c +585 -213
- data/ext/carray_factorize.c +2542 -0
- data/ext/carray_generate.c +230 -559
- data/ext/carray_histogram.c +490 -0
- data/ext/carray_hold.c +228 -0
- data/ext/carray_index_classifier.c +1035 -0
- data/ext/carray_index_classifier.h +27 -0
- data/ext/carray_internal.h +120 -0
- data/ext/carray_kernels_bincmp.c +4445 -0
- data/ext/carray_kernels_binop.c +10979 -0
- data/ext/carray_kernels_init.c +36 -0
- data/ext/carray_kernels_map.c +3466 -0
- data/ext/carray_kernels_moncmp.c +2096 -0
- data/ext/carray_kernels_monop.c +18312 -0
- data/ext/carray_kernels_reduce_aggregate.c +25836 -0
- data/ext/carray_kernels_reduce_boolean.c +329 -0
- data/ext/carray_kernels_reduce_cumulative.c +14592 -0
- data/ext/carray_kernels_reduce_extreme.c +16947 -0
- data/ext/carray_kernels_reduce_variance.c +3909 -0
- data/ext/carray_kernels_scan.c +3692 -0
- data/ext/carray_kernels_search.c +32137 -0
- data/ext/carray_kernels_sort.c +10625 -0
- data/ext/carray_kernels_triop.c +1391 -0
- data/ext/carray_lazy.c +567 -0
- data/ext/carray_loop.c +88 -200
- data/ext/carray_mask.c +848 -154
- data/ext/carray_math_kernel.h +120 -0
- data/ext/carray_mathfunc.c +10 -241
- data/ext/carray_median_percentile.c +1257 -0
- data/ext/carray_memory_view.c +1625 -0
- data/ext/carray_operator.c +1526 -318
- data/ext/carray_order.c +664 -1394
- data/ext/carray_partition.c +416 -0
- data/ext/carray_random.c +518 -0
- data/ext/carray_scatter.c +357 -0
- data/ext/carray_slab.c +1219 -0
- data/ext/carray_slab.h +84 -0
- data/ext/carray_sort.c +829 -0
- data/ext/carray_sort_kernel.c +620 -0
- data/ext/carray_struct.c +695 -0
- data/ext/carray_test.c +343 -229
- data/ext/carray_undef.c +34 -17
- data/ext/carray_utils.c +175 -74
- data/ext/extconf.rb +216 -55
- data/ext/mk_call_cfunc.rb +480 -0
- data/ext/mkkernel.rb +8842 -0
- data/ext/ruby_carray.c +202 -101
- data/ext/version.h +4 -14
- data/ext/version.rb +5 -13
- data/lib/carray/arrow_tensor.rb +401 -0
- data/lib/carray/attribute.rb +166 -0
- data/lib/carray/autoload_carray.rb +220 -0
- data/lib/carray/autoload_method_extension.rb +44 -0
- data/lib/carray/axis_group.rb +711 -0
- data/lib/carray/basics.rb +481 -0
- data/lib/carray/bincount_nd.rb +358 -0
- data/lib/carray/block_iterator.rb +604 -0
- data/lib/carray/boolean_reduce.rb +109 -0
- data/lib/carray/categorical.rb +561 -0
- data/lib/carray/categorical_iterator.rb +1062 -0
- data/lib/carray/complex.rb +150 -0
- data/lib/carray/conditional.rb +216 -0
- data/lib/carray/const_string.rb +228 -0
- data/lib/carray/construct.rb +139 -328
- data/lib/carray/core_extensions.rb +240 -0
- data/lib/carray/data_type_extension.rb +233 -0
- data/lib/carray/fixlen_string.rb +95 -0
- data/lib/carray/frame/concat.rb +132 -0
- data/lib/carray/frame/convert.rb +95 -0
- data/lib/carray/frame/csv_parser.rb +211 -0
- data/lib/carray/frame/frame.rb +649 -0
- data/lib/carray/frame/group.rb +186 -0
- data/lib/carray/frame/io.rb +164 -0
- data/lib/carray/frame/join.rb +248 -0
- data/lib/carray/frame/records.rb +99 -0
- data/lib/carray/frame/sort.rb +113 -0
- data/lib/carray/frame/verbs.rb +299 -0
- data/lib/carray/frame.rb +16 -0
- data/lib/carray/histogram.rb +512 -0
- data/lib/carray/inspect.rb +37 -20
- data/lib/carray/iterator.rb +57 -349
- data/lib/carray/lazy.rb +889 -0
- data/lib/carray/mask_gap_fill.rb +200 -0
- data/lib/carray/math.rb +78 -342
- data/lib/carray/meld_reduce.rb +289 -0
- data/lib/carray/methods/align_addr.rb +116 -0
- data/lib/carray/methods/bin.rb +128 -0
- data/lib/carray/methods/bincount.rb +87 -0
- data/lib/carray/methods/bit_string.rb +92 -0
- data/lib/carray/methods/broadcast.rb +63 -0
- data/lib/carray/methods/choose.rb +39 -0
- data/lib/carray/methods/composition.rb +280 -0
- data/lib/carray/methods/gather_nd.rb +206 -0
- data/lib/carray/methods/index.rb +39 -0
- data/lib/carray/methods/insert_block.rb +99 -0
- data/lib/carray/methods/is_in.rb +141 -0
- data/lib/carray/methods/join.rb +90 -0
- data/lib/carray/methods/locate_addr.rb +47 -0
- data/lib/carray/methods/mask_duplicates.rb +41 -0
- data/lib/carray/methods/meshgrid.rb +91 -0
- data/lib/carray/methods/mode.rb +126 -0
- data/lib/carray/methods/nunique.rb +46 -0
- data/lib/carray/methods/resize.rb +56 -0
- data/lib/carray/methods/snap.rb +156 -0
- data/lib/carray/methods/string_format.rb +57 -0
- data/lib/carray/methods/unique.rb +47 -0
- data/lib/carray/methods/value_counts.rb +71 -0
- data/lib/carray/mkmf.rb +124 -101
- data/lib/carray/runtime.rb +108 -0
- data/lib/carray/serialize.rb +478 -167
- data/lib/carray/slab_iterator.rb +292 -0
- data/lib/carray/stack.rb +291 -0
- data/lib/carray/string.rb +56 -180
- data/lib/carray/string_operation_extension.rb +289 -0
- data/lib/carray/struct.rb +335 -323
- data/lib/carray/struct_builder.rb +697 -0
- data/lib/carray/table.rb +41 -2
- data/lib/carray/time.rb +2255 -38
- data/lib/carray/window_iterator.rb +655 -0
- data/lib/carray.rb +55 -57
- metadata +163 -130
- data/Rakefile +0 -51
- data/TODO.md +0 -18
- data/ext/ca_iter_block.c +0 -257
- data/ext/ca_iter_dimension.c +0 -299
- data/ext/ca_iter_window.c +0 -214
- data/ext/ca_obj_mapping.c +0 -644
- data/ext/carray_iterator.c +0 -641
- data/ext/carray_math.rb +0 -850
- data/ext/carray_numeric.c +0 -259
- data/ext/carray_sort_addr.c +0 -254
- data/ext/carray_stat.c +0 -2100
- data/ext/carray_stat_proc.rb +0 -1999
- data/ext/mkmath.rb +0 -741
- data/ext/ruby_ccomplex.c +0 -509
- data/ext/ruby_float_func.c +0 -86
- data/lib/carray/array.rb +0 -8
- data/lib/carray/autoload/autoload_base.rb +0 -19
- data/lib/carray/autoload/autoload_gem_cairo.rb +0 -9
- data/lib/carray/autoload/autoload_gem_ffi.rb +0 -9
- data/lib/carray/autoload/autoload_gem_gnuplot.rb +0 -2
- data/lib/carray/autoload/autoload_gem_io_csv.rb +0 -14
- data/lib/carray/autoload/autoload_gem_io_pg.rb +0 -6
- data/lib/carray/autoload/autoload_gem_io_sqlite3.rb +0 -12
- data/lib/carray/autoload/autoload_gem_narray.rb +0 -10
- data/lib/carray/autoload/autoload_gem_numo_narray.rb +0 -15
- data/lib/carray/autoload/autoload_gem_opencv.rb +0 -16
- data/lib/carray/autoload/autoload_gem_random.rb +0 -8
- data/lib/carray/autoload/autoload_gem_rmagick.rb +0 -23
- data/lib/carray/autoload/autoload_gem_zimg.rb +0 -3
- data/lib/carray/autoload/autoload_io_imagemagick.rb +0 -6
- data/lib/carray/autoload/autoload_math_histogram.rb +0 -5
- data/lib/carray/autoload/autoload_math_recurrence.rb +0 -6
- data/lib/carray/autoload/autoload_object_iterator.rb +0 -1
- data/lib/carray/autoload/autoload_object_link.rb +0 -1
- data/lib/carray/autoload/autoload_object_pack.rb +0 -2
- data/lib/carray/autoload.rb +0 -141
- data/lib/carray/basic.rb +0 -191
- data/lib/carray/broadcast.rb +0 -101
- data/lib/carray/compose.rb +0 -315
- data/lib/carray/convert.rb +0 -115
- data/lib/carray/info.rb +0 -110
- data/lib/carray/io/imagemagick.rb +0 -235
- data/lib/carray/mask.rb +0 -102
- data/lib/carray/math/histogram.rb +0 -177
- data/lib/carray/math/recurrence.rb +0 -93
- data/lib/carray/object/ca_obj_iterator.rb +0 -50
- data/lib/carray/object/ca_obj_link.rb +0 -50
- data/lib/carray/object/ca_obj_pack.rb +0 -99
- data/lib/carray/obsolete.rb +0 -256
- data/lib/carray/ordering.rb +0 -181
- data/lib/carray/testing.rb +0 -51
- data/lib/carray/transform.rb +0 -109
- data/misc/Methods.ja.md +0 -182
- data/misc/NOTE +0 -51
- data/spec/Classes/CABitfield_spec.rb +0 -58
- data/spec/Classes/CABlockIterator_spec.rb +0 -114
- data/spec/Classes/CABlock_spec.rb +0 -205
- data/spec/Classes/CAField_spec.rb +0 -39
- data/spec/Classes/CAGrid_spec.rb +0 -75
- data/spec/Classes/CAMap_spec.rb +0 -0
- data/spec/Classes/CAMapping_spec.rb +0 -105
- data/spec/Classes/CAObject_attribute_spec.rb +0 -33
- data/spec/Classes/CAObject_spec.rb +0 -33
- data/spec/Classes/CARefer_spec.rb +0 -93
- data/spec/Classes/CARepeat_spec.rb +0 -65
- data/spec/Classes/CASelect_spec.rb +0 -22
- data/spec/Classes/CAShift_spec.rb +0 -16
- data/spec/Classes/CAStruct_spec.rb +0 -71
- data/spec/Classes/CATranspose_spec.rb +0 -60
- data/spec/Classes/CAUnboudRepeat_spec.rb +0 -102
- data/spec/Classes/CAWindow_spec.rb +0 -54
- data/spec/Classes/CAWrap_spec.rb +0 -8
- data/spec/Classes/CArray_spec.rb +0 -184
- data/spec/Classes/CScalar_spec.rb +0 -55
- data/spec/Classes/ex1.rb +0 -46
- data/spec/Features/feature_130_spec.rb +0 -19
- data/spec/Features/feature_attributes_spec.rb +0 -280
- data/spec/Features/feature_boolean_spec.rb +0 -98
- data/spec/Features/feature_broadcast.rb +0 -116
- data/spec/Features/feature_cast_function.rb +0 -19
- data/spec/Features/feature_cast_spec.rb +0 -33
- data/spec/Features/feature_class_spec.rb +0 -84
- data/spec/Features/feature_complex_spec.rb +0 -42
- data/spec/Features/feature_composite_spec.rb +0 -124
- data/spec/Features/feature_convert_spec.rb +0 -46
- data/spec/Features/feature_copy_spec.rb +0 -123
- data/spec/Features/feature_creation_spec.rb +0 -84
- data/spec/Features/feature_element_spec.rb +0 -144
- data/spec/Features/feature_extream_spec.rb +0 -54
- data/spec/Features/feature_generate_spec.rb +0 -74
- data/spec/Features/feature_index_spec.rb +0 -69
- data/spec/Features/feature_mask_spec.rb +0 -580
- data/spec/Features/feature_math_spec.rb +0 -97
- data/spec/Features/feature_order_spec.rb +0 -146
- data/spec/Features/feature_ref_store_spec.rb +0 -209
- data/spec/Features/feature_serialization_spec.rb +0 -125
- data/spec/Features/feature_stat_spec.rb +0 -397
- data/spec/Features/feature_virtual_spec.rb +0 -48
- data/spec/Features/method_eq_spec.rb +0 -81
- data/spec/Features/method_is_nan_spec.rb +0 -12
- data/spec/Features/method_map_spec.rb +0 -54
- data/spec/Features/method_max_with.rb +0 -20
- data/spec/Features/method_min_with.rb +0 -19
- data/spec/Features/method_ne_spec.rb +0 -18
- data/spec/Features/method_project_spec.rb +0 -188
- data/spec/Features/method_ref_spec.rb +0 -27
- data/spec/Features/method_round_spec.rb +0 -11
- data/spec/Features/method_s_linspace_spec.rb +0 -48
- data/spec/Features/method_s_span_spec.rb +0 -14
- data/spec/Features/method_seq_spec.rb +0 -47
- data/spec/Features/method_sort_with.rb +0 -43
- data/spec/Features/method_sorted_with.rb +0 -29
- data/spec/Features/method_span_spec.rb +0 -42
- data/spec/Features/method_wrap_readonly_spec.rb +0 -43
- data/spec/UnitTest/test_CAVirtual.rb +0 -214
- data/spec/spec_all.rb +0 -10
- data/utils/ca_ase.rb +0 -21
- data/utils/ca_methods.rb +0 -15
- data/utils/cast_checker.rb +0 -30
- data/utils/convert_test.rb +0 -73
- data/utils/extract_yard.rb +0 -22
- data/utils/guess_shape.rb +0 -76
- data/utils/monkey_patch_methods.rb +0 -62
- data/utils/remove_resource_fork.sh +0 -5
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
require 'carray'
|
|
3
|
-
require "rspec-power_assert"
|
|
4
|
-
|
|
5
|
-
describe "TestCArrayCAWindow " do
|
|
6
|
-
|
|
7
|
-
example "virtual_array" do
|
|
8
|
-
a = CArray.int(3,3).seq!
|
|
9
|
-
b = a.window(-1..1, -1..1)
|
|
10
|
-
r = b.parent
|
|
11
|
-
is_asserted_by { b.class == CAWindow }
|
|
12
|
-
is_asserted_by { true == b.virtual? }
|
|
13
|
-
is_asserted_by { a == r }
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
example "basic_features" do
|
|
18
|
-
# ---
|
|
19
|
-
a = CArray.int(3,3).seq!
|
|
20
|
-
b = a.window(-1..1, -1..1)
|
|
21
|
-
is_asserted_by { CA_INT([[0,0,0],
|
|
22
|
-
[0,0,1],
|
|
23
|
-
[0,3,4]]) == b }
|
|
24
|
-
|
|
25
|
-
# ---
|
|
26
|
-
a = CArray.int(3,3).seq!
|
|
27
|
-
b = a.window(-1..1, -1..1) { UNDEF}
|
|
28
|
-
_ = UNDEF
|
|
29
|
-
is_asserted_by { CA_INT([[_,_,_],
|
|
30
|
-
[_,0,1],
|
|
31
|
-
[_,3,4]]) == b }
|
|
32
|
-
end
|
|
33
|
-
|
|
34
|
-
example "invalid_args" do
|
|
35
|
-
# ---
|
|
36
|
-
a = CArray.int(3,3).seq
|
|
37
|
-
expect { a.window(1) }.to raise_error(ArgumentError)
|
|
38
|
-
expect { a.window([nil]) }.to raise_error(ArgumentError)
|
|
39
|
-
expect { a.window(nil, [nil,2]) }.to raise_error(ArgumentError)
|
|
40
|
-
expect { a.window(1..-1, nil) }.to raise_error(ArgumentError)
|
|
41
|
-
end
|
|
42
|
-
|
|
43
|
-
example "out_of_index" do
|
|
44
|
-
# ---
|
|
45
|
-
a = CArray.int(3,3).seq
|
|
46
|
-
i1 = CA_INT([1,2,3])
|
|
47
|
-
i2 = CA_INT([-4,-3,-2])
|
|
48
|
-
expect { a[i1,nil] }.to raise_error(IndexError)
|
|
49
|
-
expect { a[nil,i1] }.to raise_error(IndexError)
|
|
50
|
-
expect { a[i2,nil] }.to raise_error(IndexError)
|
|
51
|
-
expect { a[nil,i2] }.to raise_error(IndexError)
|
|
52
|
-
end
|
|
53
|
-
|
|
54
|
-
end
|
data/spec/Classes/CAWrap_spec.rb
DELETED
data/spec/Classes/CArray_spec.rb
DELETED
|
@@ -1,184 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
require 'carray'
|
|
3
|
-
require "rspec-power_assert"
|
|
4
|
-
|
|
5
|
-
describe "TestCArray " do
|
|
6
|
-
|
|
7
|
-
def assert_carray (ca, type, dim, ary)
|
|
8
|
-
is_asserted_by { ca == CArray.new(type, dim) { ary } }
|
|
9
|
-
end
|
|
10
|
-
|
|
11
|
-
example "s_new" do
|
|
12
|
-
a = CArray.new(CA_INT32, [3, 2, 1]) { 1 }
|
|
13
|
-
is_asserted_by { a.class == CArray }
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
example "s_type" do
|
|
17
|
-
a = CArray.int32(3, 3) { 1 }
|
|
18
|
-
assert_carray(a, CA_INT32, [3,3], 1)
|
|
19
|
-
end
|
|
20
|
-
|
|
21
|
-
example "equal" do
|
|
22
|
-
a = CArray.int32(3, 3) { 0 }
|
|
23
|
-
b = CArray.int32(3, 3) { 0 }
|
|
24
|
-
c = CArray.uint32(3, 3) { 0 }
|
|
25
|
-
d = CArray.uint32(2, 3) { 0 }
|
|
26
|
-
e = CArray.int32(3, 3) { 1 }
|
|
27
|
-
is_asserted_by { (a == b) == true }
|
|
28
|
-
is_asserted_by { (a != b) == false }
|
|
29
|
-
is_asserted_by { (a == c) == false }
|
|
30
|
-
is_asserted_by { (a != c) == true }
|
|
31
|
-
is_asserted_by { (a == d) == false }
|
|
32
|
-
is_asserted_by { (a != d) == true }
|
|
33
|
-
is_asserted_by { (a == e) == false }
|
|
34
|
-
is_asserted_by { (a != e) == true }
|
|
35
|
-
end
|
|
36
|
-
|
|
37
|
-
example "clone" do
|
|
38
|
-
a = CArray.int32(3, 3)
|
|
39
|
-
is_asserted_by { a.clone == a }
|
|
40
|
-
end
|
|
41
|
-
|
|
42
|
-
example "to_s" do
|
|
43
|
-
a = CArray.int8(3, 3) { 1 }
|
|
44
|
-
is_asserted_by { a.to_s == ("\u0001" * 9) }
|
|
45
|
-
|
|
46
|
-
a = CArray.int32(3, 3) { 1 }
|
|
47
|
-
is_asserted_by { a.to_s == ([1].pack("l") * 9) }
|
|
48
|
-
end
|
|
49
|
-
|
|
50
|
-
example "to_ca" do
|
|
51
|
-
a = CArray.int32(3, 3).seq
|
|
52
|
-
is_asserted_by { a.to_ca == a }
|
|
53
|
-
|
|
54
|
-
c = CArray.int32(4, 4)
|
|
55
|
-
c[0..2, 0..2] = a
|
|
56
|
-
b = c[0..2, 0..2]
|
|
57
|
-
is_asserted_by { b.to_ca == b }
|
|
58
|
-
|
|
59
|
-
a = CArray.int32(3, 3).seq
|
|
60
|
-
assert_carray(a[nil, 0].to_ca, CA_INT32, [3], [0,3,6])
|
|
61
|
-
assert_carray(a[nil, 1].to_ca, CA_INT32, [3], [1,4,7])
|
|
62
|
-
assert_carray(a[nil, 2].to_ca, CA_INT32, [3], [2,5,8])
|
|
63
|
-
|
|
64
|
-
a = CArray.int32(3, 3).seq
|
|
65
|
-
# assert_carray(a[0, nil].to_ca, CA_INT32, [3], [0,1,2])
|
|
66
|
-
# assert_carray(a[1, nil].to_ca, CA_INT32, [3], [3,4,5])
|
|
67
|
-
# assert_carray(a[2, nil].to_ca, CA_INT32, [3], [6,7,8])
|
|
68
|
-
end
|
|
69
|
-
|
|
70
|
-
example "store_array" do
|
|
71
|
-
a = CArray.int32(3, 3){1}
|
|
72
|
-
b = CArray.int32(3, 3)
|
|
73
|
-
b[] = [[1, 1, 1], [1, 1, 1], [1, 1, 1]]
|
|
74
|
-
is_asserted_by { a == b }
|
|
75
|
-
end
|
|
76
|
-
|
|
77
|
-
example "set_value" do
|
|
78
|
-
a = CArray.int32(3, 3)
|
|
79
|
-
b = CArray.int32(3, 3)
|
|
80
|
-
|
|
81
|
-
a[] = 0
|
|
82
|
-
assert_carray(a, CA_INT32, [3,3], [
|
|
83
|
-
[0, 0, 0],
|
|
84
|
-
[0, 0, 0],
|
|
85
|
-
[0, 0, 0]
|
|
86
|
-
])
|
|
87
|
-
|
|
88
|
-
# reg_point
|
|
89
|
-
a[] = 0
|
|
90
|
-
a[1, 1] = 1
|
|
91
|
-
assert_carray(a, CA_INT32, [3,3], [
|
|
92
|
-
[0, 0, 0],
|
|
93
|
-
[0, 1, 0],
|
|
94
|
-
[0, 0, 0]
|
|
95
|
-
])
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
# reg_block : idx_all
|
|
99
|
-
a[] = 0
|
|
100
|
-
a[nil, 1] = 1
|
|
101
|
-
assert_carray(a, CA_INT32, [3,3], [
|
|
102
|
-
[0, 1, 0],
|
|
103
|
-
[0, 1, 0],
|
|
104
|
-
[0, 1, 0]
|
|
105
|
-
])
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
# reg_block : idx_block
|
|
109
|
-
a[] = 0
|
|
110
|
-
a[0..1, 1] = 1
|
|
111
|
-
assert_carray(a, CA_INT32, [3,3], [
|
|
112
|
-
[0, 1, 0],
|
|
113
|
-
[0, 1, 0],
|
|
114
|
-
[0, 0, 0]
|
|
115
|
-
])
|
|
116
|
-
|
|
117
|
-
# reg_block : idx_block
|
|
118
|
-
a[] = 0
|
|
119
|
-
a[[0..2,2], 1] = 1
|
|
120
|
-
assert_carray(a, CA_INT32, [3,3], [
|
|
121
|
-
[0, 1, 0],
|
|
122
|
-
[0, 0, 0],
|
|
123
|
-
[0, 1, 0]
|
|
124
|
-
])
|
|
125
|
-
end
|
|
126
|
-
|
|
127
|
-
example "set_point" do
|
|
128
|
-
a = CArray.int32(3, 3) { 0 }
|
|
129
|
-
|
|
130
|
-
a[1, 1] = 1
|
|
131
|
-
is_asserted_by { a[1, 1] == 1 }
|
|
132
|
-
|
|
133
|
-
end
|
|
134
|
-
|
|
135
|
-
example "set_addr" do
|
|
136
|
-
a = CArray.int32(3, 3) { 0 }
|
|
137
|
-
|
|
138
|
-
a[4] = 1
|
|
139
|
-
is_asserted_by { a[1, 1] == 1 }
|
|
140
|
-
|
|
141
|
-
a[3..5] = -1
|
|
142
|
-
is_asserted_by { a[1, 1] == (-1) }
|
|
143
|
-
|
|
144
|
-
a[3..5] = [1,2,3]
|
|
145
|
-
is_asserted_by { a[1, 1] == 2 }
|
|
146
|
-
end
|
|
147
|
-
|
|
148
|
-
example "reverse" do
|
|
149
|
-
a = CArray.uint8(100).seq!
|
|
150
|
-
b = a[-1..0].to_ca
|
|
151
|
-
is_asserted_by { a.reverse! == b }
|
|
152
|
-
end
|
|
153
|
-
|
|
154
|
-
example "stat" do
|
|
155
|
-
a = CArray.float32(3,3).seq!(1,2)
|
|
156
|
-
stddev = Math.sqrt(((a - a.mean)**2).sum/(a.elements-1))
|
|
157
|
-
|
|
158
|
-
is_asserted_by { a.max == 17 }
|
|
159
|
-
is_asserted_by { a.min == 1 }
|
|
160
|
-
is_asserted_by { a.sum == 81 }
|
|
161
|
-
is_asserted_by { a.mean == 9 }
|
|
162
|
-
is_asserted_by { a.stddev == stddev }
|
|
163
|
-
|
|
164
|
-
c = CArray.int32(4,4)
|
|
165
|
-
c[0..2, 0..2] = a
|
|
166
|
-
a = c[0..2, 0..2]
|
|
167
|
-
is_asserted_by { a.max == 17 }
|
|
168
|
-
is_asserted_by { a.min == 1 }
|
|
169
|
-
is_asserted_by { a.sum == 81 }
|
|
170
|
-
is_asserted_by { a.mean == 9 }
|
|
171
|
-
is_asserted_by { a.stddev == stddev }
|
|
172
|
-
end
|
|
173
|
-
|
|
174
|
-
example "ancestors" do
|
|
175
|
-
# ---
|
|
176
|
-
a = CArray.int(3,3).seq!
|
|
177
|
-
b = a.reshape(9)
|
|
178
|
-
c = b.reshape(3,3)
|
|
179
|
-
d = c[0..1,0..1]
|
|
180
|
-
is_asserted_by { a == d.root_array }
|
|
181
|
-
is_asserted_by { [a, b, c, d] == d.ancestors }
|
|
182
|
-
end
|
|
183
|
-
|
|
184
|
-
end
|
|
@@ -1,55 +0,0 @@
|
|
|
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
|
-
|
data/spec/Classes/ex1.rb
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
require_relative "../../lib/carray"
|
|
2
|
-
#require_relative "../../ext/carray_ext"
|
|
3
|
-
|
|
4
|
-
class CArray
|
|
5
|
-
|
|
6
|
-
def count_masked (*axis)
|
|
7
|
-
p "rw"
|
|
8
|
-
if has_mask?
|
|
9
|
-
p "rb"
|
|
10
|
-
p self.class
|
|
11
|
-
p self.mask.ndim
|
|
12
|
-
p "rk"
|
|
13
|
-
# j=self.mask
|
|
14
|
-
p "rj"
|
|
15
|
-
#p mask.int64
|
|
16
|
-
#return mask.int64.accumulate(*axis)
|
|
17
|
-
else
|
|
18
|
-
if axis.empty?
|
|
19
|
-
return 0
|
|
20
|
-
else
|
|
21
|
-
spec = shape.map{:i}
|
|
22
|
-
axis.each do |k|
|
|
23
|
-
spec[k] = nil
|
|
24
|
-
end
|
|
25
|
-
return self[*spec].ca.template(:int64) { 0 }
|
|
26
|
-
end
|
|
27
|
-
end
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
end
|
|
31
|
-
a = CArray.int(3).seq!
|
|
32
|
-
a[1] = UNDEF
|
|
33
|
-
r1 = a[3,:%]
|
|
34
|
-
x1 = r1.to_ca
|
|
35
|
-
3 == x1.count_masked
|
|
36
|
-
p "ro"
|
|
37
|
-
#is_asserted_by { 3 == r1[nil, 1].count_masked }
|
|
38
|
-
#is_asserted_by { 3 == x1.count_masked }
|
|
39
|
-
#is_asserted_by { 3 == x1[nil, 1].count_masked }
|
|
40
|
-
|
|
41
|
-
#r2 = a[:%,3]
|
|
42
|
-
#x2 = r2.to_ca
|
|
43
|
-
#is_asserted_by { 3 == r2.count_masked }
|
|
44
|
-
#is_asserted_by { 3 == r2[1, nil].count_masked }
|
|
45
|
-
#is_asserted_by { 3 == x2.count_masked }
|
|
46
|
-
#is_asserted_by { 3 == x2[1, nil].count_masked }
|
|
@@ -1,19 +0,0 @@
|
|
|
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
|
|
@@ -1,280 +0,0 @@
|
|
|
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
|