forked from csound/csound
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharrayops.cpp
More file actions
372 lines (333 loc) · 15 KB
/
Copy patharrayops.cpp
File metadata and controls
372 lines (333 loc) · 15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
/*
arrayops.c: array operators
Copyright (C) 2017 Victor Lazzarini
This file is part of Csound.
The Csound Library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
Csound is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Csound; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
#include <algorithm>
#include <cmath>
#include <functional>
#include <numeric>
#include <plugin.h>
inline MYFLT logb(MYFLT a, MYFLT b) {
return log(a)/log(b);
}
// extern
inline MYFLT frac(MYFLT f) { return std::modf(f, &f); }
// extern
inline MYFLT lim1(MYFLT f) {
return f > FL(0.0) ? (f < FL(1.0) ? f : FL(1.0)) : FL(0.0);
}
inline MYFLT limx(MYFLT f, MYFLT v1, MYFLT v2) {
return f > v1 ? (f < v2 ? f : v2) : v1;
}
/** k-rate operator
kout[] op kin[]
*/
template <MYFLT (*op)(MYFLT)> struct ArrayOp : csnd::Plugin<1, 1> {
int32_t process(csnd::myfltvec &out, csnd::myfltvec &in) {
std::transform(in.begin(), in.end(), out.begin(),
[](MYFLT f) { return op(f); });
return OK;
}
int32_t init() {
csnd::myfltvec &out = outargs.myfltvec_data(0);
csnd::myfltvec &in = inargs.myfltvec_data(0);
out.init(csound, in.len(), this->insdshead);
if (!is_perf()) process(out, in);
return OK;
}
int32_t kperf() {
return process(outargs.myfltvec_data(0), inargs.myfltvec_data(0));
}
};
/** k-rate binary operator
kout[] op kin1[], kin2[]
*/
template <MYFLT (*bop)(MYFLT, MYFLT)> struct ArrayOp2 : csnd::Plugin<1, 2> {
int32_t process(csnd::myfltvec &out, csnd::myfltvec &in1, csnd::myfltvec &in2) {
std::transform(in1.begin(), in1.end(), in2.begin(), out.begin(),
[](MYFLT f1, MYFLT f2) { return bop(f1, f2); });
return OK;
}
int32_t init() {
csnd::myfltvec &out = outargs.myfltvec_data(0);
csnd::myfltvec &in1 = inargs.myfltvec_data(0);
csnd::myfltvec &in2 = inargs.myfltvec_data(1);
if (UNLIKELY(in2.len() < in1.len()))
return csound->init_error(Str_noop("second input array is too short\n"));
out.init(csound, in1.len(), this->insdshead);
if (!is_perf()) process(out, in1, in2);
return OK;
}
int32_t kperf() {
return process(outargs.myfltvec_data(0), inargs.myfltvec_data(0),
inargs.myfltvec_data(1));
}
};
/** k-rate binary operator with array and scalar
kout[] op kin1[], kin2
*/
template <MYFLT (*bop)(MYFLT, MYFLT)> struct ArrayOp3 : csnd::Plugin<1, 2> {
int32_t process(csnd::myfltvec &out, csnd::myfltvec &in, MYFLT v) {
for (MYFLT *s = in.begin(), *o = out.begin(); s != in.end(); s++, o++)
*o = bop(*s, v);
return OK;
}
int32_t init() {
csnd::myfltvec &out = outargs.myfltvec_data(0);
csnd::myfltvec &in = inargs.myfltvec_data(0);
out.init(csound, in.len(), this->insdshead);
if (!is_perf()) process(out, in, inargs[1]);
return OK;
}
int32_t kperf() {
return process(outargs.myfltvec_data(0), inargs.myfltvec_data(0),
inargs[1]);
}
};
/** k-rate binary operator with array and two scalar
kout[] op kin1[], kin2, kin3
*/
template <MYFLT (*trop)(MYFLT, MYFLT, MYFLT)>
struct ArrayOp4 : csnd::Plugin<1, 3> {
int32_t process(csnd::myfltvec &out, csnd::myfltvec &in, MYFLT v1, MYFLT v2) {
for (MYFLT *s = in.begin(), *o = out.begin(); s != in.end(); s++, o++)
*o = trop(*s, v1, v2);
return OK;
}
int32_t init() {
csnd::myfltvec &out = outargs.myfltvec_data(0);
csnd::myfltvec &in = inargs.myfltvec_data(0);
out.init(csound, in.len(), this->insdshead);
if(!is_perf()) process(out, in, inargs[1], inargs[2]);
return OK;
}
int32_t kperf() {
return process(outargs.myfltvec_data(0), inargs.myfltvec_data(0), inargs[1],
inargs[2]);
}
};
/** k-rate operator
kout[] sort[a,d] kin[]
*/
template <typename T> struct ArraySort : csnd::Plugin<1, 1> {
int32_t process(csnd::myfltvec &out, csnd::myfltvec &in) {
std::copy(in.begin(), in.end(), out.begin());
std::sort(out.begin(), out.end(), T());
return OK;
}
int32_t init() {
csnd::myfltvec &out = outargs.myfltvec_data(0);
csnd::myfltvec &in = inargs.myfltvec_data(0);
out.init(csound, in.len(), this->insdshead);
if (!is_perf()) process(out, in);
return OK;
}
int32_t kperf() {
return process(outargs.myfltvec_data(0), inargs.myfltvec_data(0));
}
};
/** dot product
*/
struct Dot : csnd::Plugin<1, 2> {
MYFLT process(csnd::myfltvec &in1, csnd::myfltvec &in2) {
return std::inner_product(in1.begin(), in1.end(), in2.begin(), 0.0);
}
int32_t init() {
csnd::myfltvec &in1 = inargs.myfltvec_data(0);
csnd::myfltvec &in2 = inargs.myfltvec_data(1);
if (UNLIKELY(in2.len() < in1.len()))
return csound->init_error(Str_noop("second input array is too short\n"));
outargs[0] = process(in1, in2);
return OK;
}
int32_t kperf() {
outargs[0] = process(inargs.myfltvec_data(0), inargs.myfltvec_data(1));
return OK;
}
};
template <typename T, int32_t I> struct Accum : csnd::Plugin<1, 1> {
MYFLT process(csnd::myfltvec &in1) {
return std::accumulate(in1.begin(), in1.end(), FL(I), T());
}
int32_t init() {
csnd::myfltvec &in1 = inargs.myfltvec_data(0);
outargs[0] = process(in1);
return OK;
}
int32_t kperf() {
outargs[0] = process(inargs.myfltvec_data(0));
return OK;
}
};
static void onload(csnd::Csound *csound) {
csnd::plugin<ArrayOp<lim1>>(csound, "limit1", "i[]", "i[]", csnd::thread::i);
csnd::plugin<ArrayOp<lim1>>(csound, "limit1", "k[]", "k[]", csnd::thread::ik);
csnd::plugin<ArrayOp<std::ceil>>(csound, "ceil", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::ceil>>(csound, "ceil", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::floor>>(csound, "floor", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::floor>>(csound, "floor", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::round>>(csound, "round", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::round>>(csound, "round", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::trunc>>(csound, "int", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::trunc>>(csound, "int", "k[]", "k[]",
csnd::thread::i);
csnd::plugin<ArrayOp<frac>>(csound, "frac", "i[]", "i[]", csnd::thread::i);
csnd::plugin<ArrayOp<frac>>(csound, "frac", "k[]", "k[]", csnd::thread::ik);
csnd::plugin<ArrayOp<std::exp2>>(csound, "powoftwo", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::exp2>>(csound, "powoftwo", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::fabs>>(csound, "abs", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::fabs>>(csound, "abs", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::log10>>(csound, "log2", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::log10>>(csound, "log2", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::log10>>(csound, "log10", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::log10>>(csound, "log10", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::log>>(csound, "log", "i[]", "i[]", csnd::thread::i);
csnd::plugin<ArrayOp<std::log>>(csound, "log", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp3<logb>>(csound, "log", "i[]", "i[]i", csnd::thread::i);
csnd::plugin<ArrayOp<std::exp>>(csound, "exp", "i[]", "i[]", csnd::thread::i);
csnd::plugin<ArrayOp<std::exp>>(csound, "exp", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::sqrt>>(csound, "sqrt", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::sqrt>>(csound, "sqrt", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::cos>>(csound, "cos", "i[]", "i[]", csnd::thread::i);
csnd::plugin<ArrayOp<std::cos>>(csound, "cos", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::sin>>(csound, "sin", "i[]", "i[]", csnd::thread::i);
csnd::plugin<ArrayOp<std::sin>>(csound, "sin", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::tan>>(csound, "tan", "i[]", "i[]", csnd::thread::i);
csnd::plugin<ArrayOp<std::tan>>(csound, "tan", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::acos>>(csound, "cosinv", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::acos>>(csound, "cosinv", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::asin>>(csound, "sininv", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::asin>>(csound, "sininv", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::atan>>(csound, "taninv", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::atan>>(csound, "taninv", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::cosh>>(csound, "cosh", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::cosh>>(csound, "cosh", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::sinh>>(csound, "sinh", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::sinh>>(csound, "sinh", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::tanh>>(csound, "tanh", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::tanh>>(csound, "tanh", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp<std::cbrt>>(csound, "cbrt", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp<std::cbrt>>(csound, "cbrt", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp2<std::atan2>>(csound, "taninv", "i[]", "i[]i[]",
csnd::thread::i);
csnd::plugin<ArrayOp2<std::atan2>>(csound, "taninv", "k[]", "k[]k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp2<std::pow>>(csound, "pow", "i[]", "i[]i[]",
csnd::thread::i);
csnd::plugin<ArrayOp2<std::pow>>(csound, "pow", "k[]", "k[]k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp2<std::hypot>>(csound, "hypot", "i[]", "i[]i[]",
csnd::thread::i);
csnd::plugin<ArrayOp2<std::hypot>>(csound, "hypot", "k[]", "k[]k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp2<std::fmod>>(csound, "fmod", "i[]", "i[]i[]",
csnd::thread::i);
csnd::plugin<ArrayOp2<std::fmod>>(csound, "fmod", "k[]", "k[]k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp2<std::fmax>>(csound, "fmax", "i[]", "i[]i[]",
csnd::thread::i);
csnd::plugin<ArrayOp2<std::fmax>>(csound, "fmax", "k[]", "k[]k[]",
csnd::thread::ik);
csnd::plugin<ArrayOp2<std::fmin>>(csound, "fmin", "i[]", "i[]i[]",
csnd::thread::i);
csnd::plugin<ArrayOp2<std::fmin>>(csound, "fmin", "k[]", "k[]k[]",
csnd::thread::ik);
csnd::plugin<ArraySort<std::less<MYFLT>>>(csound, "sorta", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArraySort<std::greater<MYFLT>>>(csound, "sortd", "i[]", "i[]",
csnd::thread::i);
csnd::plugin<ArraySort<std::less<MYFLT>>>(csound, "sorta", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<ArraySort<std::greater<MYFLT>>>(csound, "sortd", "k[]", "k[]",
csnd::thread::ik);
csnd::plugin<Dot>(csound, "dot", "i", "i[]i[]", csnd::thread::i);
csnd::plugin<Dot>(csound, "dot", "k", "k[]k[]", csnd::thread::k);
csnd::plugin<Accum<std::multiplies<MYFLT>, 1>>(csound, "product", "k", "k[]",
csnd::thread::k);
csnd::plugin<Accum<std::plus<MYFLT>, 0>>(csound, "sum", "k", "k[]",
csnd::thread::k);
csnd::plugin<Accum<std::multiplies<MYFLT>, 1>>(csound, "product", "i", "i[]",
csnd::thread::i);
csnd::plugin<Accum<std::plus<MYFLT>, 0>>(csound, "sum", "i", "i[]",
csnd::thread::i);
csnd::plugin<ArrayOp4<limx>>(csound, "limit", "i[]", "i[]ii",
csnd::thread::i);
csnd::plugin<ArrayOp4<limx>>(csound, "limit", "k[]", "k[]kk",
csnd::thread::ik);
csnd::plugin<ArrayOp3<std::pow>>(csound, "pow", "i[]", "i[]i",
csnd::thread::i);
csnd::plugin<ArrayOp3<std::pow>>(csound, "pow", "k[]", "k[]k",
csnd::thread::ik);
csnd::plugin<ArrayOp3<std::fmod>>(csound, "fmod", "i[]", "i[]i",
csnd::thread::i);
csnd::plugin<ArrayOp3<std::fmod>>(csound, "fmod", "k[]", "k[]k",
csnd::thread::ik);
csnd::plugin<ArrayOp3<std::fmax>>(csound, "fmax", "i[]", "i[]i",
csnd::thread::i);
csnd::plugin<ArrayOp3<std::fmax>>(csound, "fmax", "k[]", "k[]k",
csnd::thread::ik);
csnd::plugin<ArrayOp3<std::fmin>>(csound, "fmin", "i[]", "i[]i",
csnd::thread::i);
csnd::plugin<ArrayOp3<std::fmin>>(csound, "fmin", "k[]", "k[]k",
csnd::thread::ik);
}
#ifdef BUILD_PLUGINS
#include <modload.h>
void csnd::on_load(csnd::Csound *csound) {
onload(csound);
}
#else
extern "C" int32_t arrayops_init_modules(CSOUND *csound) {
onload((csnd::Csound *)csound);
return OK;
}
#endif