numo-narray-alt 0.9.10 → 0.9.11
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/LICENSE +1 -1
- data/ext/numo/narray/numo/narray.h +2 -2
- data/ext/numo/narray/numo/types/robject.h +1 -1
- data/ext/numo/narray/src/mh/argmax.h +154 -0
- data/ext/numo/narray/src/mh/argmin.h +154 -0
- data/ext/numo/narray/src/mh/clip.h +115 -0
- data/ext/numo/narray/src/mh/cumprod.h +98 -0
- data/ext/numo/narray/src/mh/cumsum.h +98 -0
- data/ext/numo/narray/src/mh/eye.h +82 -0
- data/ext/numo/narray/src/mh/logseq.h +69 -0
- data/ext/numo/narray/src/mh/max.h +69 -0
- data/ext/numo/narray/src/mh/max_index.h +184 -0
- data/ext/numo/narray/src/mh/maximum.h +116 -0
- data/ext/numo/narray/src/mh/min.h +69 -0
- data/ext/numo/narray/src/mh/min_index.h +184 -0
- data/ext/numo/narray/src/mh/minimum.h +116 -0
- data/ext/numo/narray/src/mh/minmax.h +77 -0
- data/ext/numo/narray/src/mh/mulsum.h +185 -0
- data/ext/numo/narray/src/mh/prod.h +69 -0
- data/ext/numo/narray/src/mh/ptp.h +69 -0
- data/ext/numo/narray/src/mh/rand.h +315 -0
- data/ext/numo/narray/src/mh/seq.h +130 -0
- data/ext/numo/narray/src/mh/sum.h +69 -0
- data/ext/numo/narray/src/t_dcomplex.c +131 -667
- data/ext/numo/narray/src/t_dfloat.c +40 -1288
- data/ext/numo/narray/src/t_int16.c +262 -1161
- data/ext/numo/narray/src/t_int32.c +263 -1161
- data/ext/numo/narray/src/t_int64.c +262 -1163
- data/ext/numo/narray/src/t_int8.c +262 -1159
- data/ext/numo/narray/src/t_robject.c +427 -1675
- data/ext/numo/narray/src/t_scomplex.c +131 -667
- data/ext/numo/narray/src/t_sfloat.c +40 -1288
- data/ext/numo/narray/src/t_uint16.c +262 -1161
- data/ext/numo/narray/src/t_uint32.c +262 -1161
- data/ext/numo/narray/src/t_uint64.c +262 -1163
- data/ext/numo/narray/src/t_uint8.c +262 -1161
- data/lib/numo/narray.rb +2 -3
- metadata +23 -3
data/lib/numo/narray.rb
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# On
|
|
4
|
-
# directory from Ruby
|
|
3
|
+
# On RHEL-based Linux distributions, native extensions are installed in a separate
|
|
4
|
+
# directory from Ruby scripts, so use require to load them.
|
|
5
5
|
require 'numo/narray/narray'
|
|
6
|
-
|
|
7
6
|
require_relative 'narray/extra'
|
|
8
7
|
|
|
9
8
|
module Numo
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: numo-narray-alt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yoshoku
|
|
@@ -66,6 +66,13 @@ files:
|
|
|
66
66
|
- ext/numo/narray/numo/types/uint_macro.h
|
|
67
67
|
- ext/numo/narray/numo/types/xint_macro.h
|
|
68
68
|
- ext/numo/narray/rand.c
|
|
69
|
+
- ext/numo/narray/src/mh/argmax.h
|
|
70
|
+
- ext/numo/narray/src/mh/argmin.h
|
|
71
|
+
- ext/numo/narray/src/mh/clip.h
|
|
72
|
+
- ext/numo/narray/src/mh/cumprod.h
|
|
73
|
+
- ext/numo/narray/src/mh/cumsum.h
|
|
74
|
+
- ext/numo/narray/src/mh/eye.h
|
|
75
|
+
- ext/numo/narray/src/mh/logseq.h
|
|
69
76
|
- ext/numo/narray/src/mh/math/acos.h
|
|
70
77
|
- ext/numo/narray/src/mh/math/acosh.h
|
|
71
78
|
- ext/numo/narray/src/mh/math/asin.h
|
|
@@ -96,9 +103,22 @@ files:
|
|
|
96
103
|
- ext/numo/narray/src/mh/math/tan.h
|
|
97
104
|
- ext/numo/narray/src/mh/math/tanh.h
|
|
98
105
|
- ext/numo/narray/src/mh/math/unary_func.h
|
|
106
|
+
- ext/numo/narray/src/mh/max.h
|
|
107
|
+
- ext/numo/narray/src/mh/max_index.h
|
|
108
|
+
- ext/numo/narray/src/mh/maximum.h
|
|
99
109
|
- ext/numo/narray/src/mh/mean.h
|
|
110
|
+
- ext/numo/narray/src/mh/min.h
|
|
111
|
+
- ext/numo/narray/src/mh/min_index.h
|
|
112
|
+
- ext/numo/narray/src/mh/minimum.h
|
|
113
|
+
- ext/numo/narray/src/mh/minmax.h
|
|
114
|
+
- ext/numo/narray/src/mh/mulsum.h
|
|
115
|
+
- ext/numo/narray/src/mh/prod.h
|
|
116
|
+
- ext/numo/narray/src/mh/ptp.h
|
|
117
|
+
- ext/numo/narray/src/mh/rand.h
|
|
100
118
|
- ext/numo/narray/src/mh/rms.h
|
|
119
|
+
- ext/numo/narray/src/mh/seq.h
|
|
101
120
|
- ext/numo/narray/src/mh/stddev.h
|
|
121
|
+
- ext/numo/narray/src/mh/sum.h
|
|
102
122
|
- ext/numo/narray/src/mh/var.h
|
|
103
123
|
- ext/numo/narray/src/t_bit.c
|
|
104
124
|
- ext/numo/narray/src/t_dcomplex.c
|
|
@@ -126,7 +146,7 @@ licenses:
|
|
|
126
146
|
metadata:
|
|
127
147
|
homepage_uri: https://github.com/yoshoku/numo-narray-alt
|
|
128
148
|
changelog_uri: https://github.com/yoshoku/numo-narray-alt/blob/main/CHANGELOG.md
|
|
129
|
-
documentation_uri: https://gemdocs.org/gems/numo-narray-alt/0.9.
|
|
149
|
+
documentation_uri: https://gemdocs.org/gems/numo-narray-alt/0.9.11/
|
|
130
150
|
rubygems_mfa_required: 'true'
|
|
131
151
|
post_install_message: |
|
|
132
152
|
===
|
|
@@ -150,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
150
170
|
- !ruby/object:Gem::Version
|
|
151
171
|
version: '0'
|
|
152
172
|
requirements: []
|
|
153
|
-
rubygems_version:
|
|
173
|
+
rubygems_version: 4.0.3
|
|
154
174
|
specification_version: 4
|
|
155
175
|
summary: Numo::NArray Alternative is a project forked from Numo::NArray.
|
|
156
176
|
test_files: []
|