00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef HxFuncGenConv2d_h
00011 #define HxFuncGenConv2d_h
00012
00013
00014 template <class DstDataPtrType, class SrcDataPtrType, class KernelT,
00015 class PixOpT, class RedOpT>
00016 void
00017 HxFuncGenConv2dDispatch(
00018 DstDataPtrType dstPtr, SrcDataPtrType srcPtr, KernelT& kernel,
00019 HxSizes dstSize, PixOpT& pixOp, RedOpT& redOp, bool rowpixfunc);
00020
00021
00022 #ifdef INC_TEMPLATE_SRC
00023 #include "HxFuncGenConv2d.c"
00024 #endif
00025
00026 #endif