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

Function convolve2

src/backend/cuda/convolveNN.cpp:222–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

220
221template<typename T>
222Array<T> convolve2(Array<T> const &signal, Array<T> const &filter,
223 const dim4 stride, const dim4 padding, const dim4 dilation) {
224#ifdef WITH_CUDNN
225 if (getCudnnPlugin().isLoaded()) {
226 checkTypeSupport<T>();
227 return convolve2_cudnn<T>(signal, filter, stride, padding, dilation);
228 }
229#endif
230 return convolve2_base<T>(signal, filter, stride, padding, dilation);
231}
232
233#define INSTANTIATE(T) \
234 template Array<T> convolve2<T>(Array<T> const &signal, \

Callers

nothing calls this directly

Calls 1

isLoadedMethod · 0.45

Tested by

no test coverage detected