Skip to content

Commit

Permalink
Merge pull request opencv#3081 from akarsakov:small_fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vpisarev committed Aug 13, 2014
2 parents 28f3a44 + 713ddb8 commit 01bd496
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion modules/core/perf/opencl/perf_dxt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ OCL_PERF_TEST_P(DftFixture, Dft, ::testing::Combine(Values(C2C, R2R, C2R, R2C),
const Size srcSize = get<1>(params);
int flags = get<2>(params);

int in_cn, out_cn;
int in_cn = 0, out_cn = 0;
switch (dft_type)
{
case R2R: flags |= cv::DFT_REAL_OUTPUT; in_cn = 1; out_cn = 1; break;
Expand Down
5 changes: 3 additions & 2 deletions modules/core/src/matmul.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -781,8 +781,9 @@ void cv::gemm( InputArray matA, InputArray matB, double alpha,
InputArray matC, double beta, OutputArray _matD, int flags )
{
#ifdef HAVE_CLAMDBLAS
CV_OCL_RUN(ocl::haveAmdBlas() && matA.dims() <= 2 && matB.dims() <= 2 && matC.dims() <= 2 && _matD.isUMat(),
ocl_gemm(matA, matB, alpha, matC, beta, _matD, flags))
CV_OCL_RUN(ocl::haveAmdBlas() && matA.dims() <= 2 && matB.dims() <= 2 && matC.dims() <= 2 && _matD.isUMat() &&
matA.cols() > 20 && matA.rows() > 20 && matB.cols() > 20, // since it works incorrect for small sizes
ocl_gemm(matA, matB, alpha, matC, beta, _matD, flags))
#endif

const int block_lin_size = 128;
Expand Down
5 changes: 3 additions & 2 deletions modules/core/test/ocl/test_gemm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,15 @@ PARAM_TEST_CASE(Gemm,

void generateTestData()
{
Size ARoiSize = randomSize(1, MAX_VALUE);
// set minimum size to 20, since testing less sizes doesn't make sense
Size ARoiSize = randomSize(20, MAX_VALUE);
Border ABorder = randomBorder(0, use_roi ? MAX_VALUE : 0);
randomSubMat(A, A_roi, ARoiSize, ABorder, type, -11, 11);

if (atrans)
ARoiSize = Size(ARoiSize.height, ARoiSize.width);

Size BRoiSize = randomSize(1, MAX_VALUE);
Size BRoiSize = randomSize(20, MAX_VALUE);
if (btrans)
BRoiSize.width = ARoiSize.width;
else
Expand Down
2 changes: 1 addition & 1 deletion modules/core/test/test_eigen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ void Core_EigenTest_32::run(int) { check_full(CV_32FC1); }
void Core_EigenTest_64::run(int) { check_full(CV_64FC1); }

Core_EigenTest::Core_EigenTest()
: eps_val_32(1e-3f), eps_vec_32(1e-2f),
: eps_val_32(1e-3f), eps_vec_32(12e-3f),
eps_val_64(1e-4f), eps_vec_64(1e-3f), ntests(100) {}
Core_EigenTest::~Core_EigenTest() {}

Expand Down
7 changes: 5 additions & 2 deletions modules/imgproc/src/opencl/calc_back_project.cl
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@

#define OUT_OF_RANGE -1

// for identical rounding after dividing on different platforms
#define ROUNDING_EPS 0.000001f

#if histdims == 1

__kernel void calcLUT(__global const uchar * histptr, int hist_step, int hist_offset, int hist_bins,
Expand All @@ -53,7 +56,7 @@ __kernel void calcLUT(__global const uchar * histptr, int hist_step, int hist_of
{
float lb = ranges[0], ub = ranges[1], gap = (ub - lb) / hist_bins;
value -= lb;
int bin = convert_int_sat_rtn(value / gap);
int bin = convert_int_sat_rtn(value / gap + ROUNDING_EPS);

if (bin >= hist_bins)
lut[x] = OUT_OF_RANGE;
Expand Down Expand Up @@ -101,7 +104,7 @@ __kernel void calcLUT(int hist_bins, __global int * lut, int lut_offset,
{
float lb = ranges[0], ub = ranges[1], gap = (ub - lb) / hist_bins;
value -= lb;
int bin = convert_int_sat_rtn(value / gap);
int bin = convert_int_sat_rtn(value / gap + ROUNDING_EPS);

lut[x] = bin >= hist_bins ? OUT_OF_RANGE : bin;
}
Expand Down
3 changes: 2 additions & 1 deletion modules/imgproc/src/smooth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,8 @@ void cv::boxFilter( InputArray _src, OutputArray _dst, int ddepth,

if (normalize && !src.isSubmatrix() && ddepth == sdepth &&
(/*ippBorderType == BORDER_REPLICATE ||*/ /* returns ippStsStepErr: Step value is not valid */
ippBorderType == BORDER_CONSTANT) && ocvAnchor == ippAnchor )
ippBorderType == BORDER_CONSTANT) && ocvAnchor == ippAnchor &&
dst.cols != ksize.width && dst.rows != ksize.height) // returns ippStsMaskSizeErr: mask has an illegal value
{
Ipp32s bufSize = 0;
IppiSize roiSize = { dst.cols, dst.rows }, maskSize = { ksize.width, ksize.height };
Expand Down

0 comments on commit 01bd496

Please sign in to comment.