Path: blob/master/modules/imgproc/src/accum.dispatch.cpp
16354 views
// This file is part of OpenCV project.1// It is subject to the license terms in the LICENSE file found in the top-level directory2// of this distribution and at http://opencv.org/license.html.34#include "precomp.hpp"56#include "accum.simd.hpp"7#include "accum.simd_declarations.hpp" // defines CV_CPU_DISPATCH_MODES_ALL=AVX2,...,BASELINE based on CMakeLists.txt content89namespace cv {1011DEF_ACC_INT_FUNCS(8u32f, uchar, float)12DEF_ACC_INT_FUNCS(8u64f, uchar, double)13DEF_ACC_INT_FUNCS(16u32f, ushort, float)14DEF_ACC_INT_FUNCS(16u64f, ushort, double)15DEF_ACC_FLT_FUNCS(32f, float, float)16DEF_ACC_FLT_FUNCS(32f64f, float, double)17DEF_ACC_FLT_FUNCS(64f, double, double)1819} //cv::hal2021