vdsp 1.0.0 → 1.1.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/ext/vdsp/vdsp.c +952 -248
- data/ext/vdsp/vdsp.h +7 -0
- data/lib/vdsp/version.rb +1 -1
- metadata +2 -2
data/ext/vdsp/vdsp.h
CHANGED
|
@@ -11,6 +11,13 @@ typedef struct {
|
|
|
11
11
|
unsigned long length;
|
|
12
12
|
} VdspArrayNativeResource;
|
|
13
13
|
|
|
14
|
+
typedef struct {
|
|
15
|
+
VdspArrayNativeResource *res0;
|
|
16
|
+
VdspArrayNativeResource *res1;
|
|
17
|
+
long offset;
|
|
18
|
+
vDSP_Stride stride;
|
|
19
|
+
} VdspArrayParam;
|
|
20
|
+
|
|
14
21
|
extern VALUE rb_double_array_plus(VALUE self, VALUE other);
|
|
15
22
|
extern VALUE rb_double_array_mul(VALUE self, VALUE other);
|
|
16
23
|
|
data/lib/vdsp/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vdsp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yoshida
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-09-
|
|
11
|
+
date: 2019-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|