MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / af_convolve1

Function af_convolve1

src/api/c/convolve.cpp:217–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215}
216
217af_err af_convolve1(af_array *out, const af_array signal, const af_array filter,
218 const af_conv_mode mode, af_conv_domain domain) {
219 try {
220 if (isFreqDomain(1, signal, filter, domain)) {
221 return af_fft_convolve1(out, signal, filter, mode);
222 }
223 return convolve(out, signal, filter, mode, 1);
224 }
225 CATCHALL;
226}
227
228af_err af_convolve2(af_array *out, const af_array signal, const af_array filter,
229 const af_conv_mode mode, af_conv_domain domain) {

Callers 4

convolveTestFunction · 0.85
convolve1Function · 0.85
af_convolve2Function · 0.85
af_firFunction · 0.85

Calls 3

isFreqDomainFunction · 0.85
af_fft_convolve1Function · 0.85
convolveFunction · 0.70

Tested by

no test coverage detected