1. 25 Oct, 2018 1 commit
  2. 24 Oct, 2018 2 commits
  3. 17 Oct, 2018 1 commit
  4. 15 Oct, 2018 1 commit
  5. 11 Oct, 2018 1 commit
    • Sayed Adel's avatar
      Change behaviour of 16-bit multiply operator · 5771fd69
      Sayed Adel authored
        - redefine 16-bit multiply operator to perform saturating multiply
          instead of non-saturating multiply
        - implement 8-bit multiply operator to perform saturating multiply
        - implement v_mul_wrap() for 8-bit, 16-bit non-saturating multiply
        - improve performance of v_mul_hi() for VSX
        - update intrin tests with new changes
        - replace unv 16-bit multiplication operator with v_mul_wrap due behavior changes
      
        - Several improvements depend on vpisarev review
      
          * initial forward declarations for universal intrinsics
          * move emulating SSE intrinsics into separate file
          * implement v_mul_expand for 8-bit
          * reimplement saturating multiply using v_mul_expand + v_pack
          * map v_expand, v_load_expand, v_load_expand_q to sse4.1
          * fix overflow avx2::v_pack(uint32)
          * implement two universal intrinsics v_expand_low and v_expand_high
      5771fd69
  6. 10 Oct, 2018 1 commit
  7. 05 Oct, 2018 1 commit
  8. 04 Oct, 2018 3 commits
  9. 01 Oct, 2018 1 commit
  10. 27 Sep, 2018 1 commit
  11. 26 Sep, 2018 2 commits
  12. 25 Sep, 2018 1 commit
  13. 13 Sep, 2018 2 commits
  14. 12 Sep, 2018 1 commit
  15. 11 Sep, 2018 1 commit
  16. 08 Sep, 2018 1 commit
  17. 07 Sep, 2018 2 commits
    • cyy's avatar
      Merge pull request #12458 from DEEPIR:3.4 · 286c2c23
      cyy authored
      * may be an typo fix
      
      * remove identical branch,may be paste error
      
      * add parentheses around macro parameter
      
      * simplify if condition
      
      * check malloc fail
      
      * change the condition of branch removed by commit 3041502861318c85d901e8c08226ff67898c77ed
      286c2c23
    • Hamdi Sahloul's avatar
      Utilize CV_UNUSED macro · a39e0daa
      Hamdi Sahloul authored
      a39e0daa
  18. 06 Sep, 2018 4 commits
    • Vadim Pisarevsky's avatar
      Merge pull request #12411 from vpisarev:wide_convert · 80b62a41
      Vadim Pisarevsky authored
      * rewrote Mat::convertTo() and convertScaleAbs() to wide universal intrinsics; added always-available and SIMD-optimized FP16<=>FP32 conversion
      
      * fixed compile warnings
      
      * fix some more compile errors
      
      * slightly relaxed accuracy threshold for int->float conversion (since we now do it using single-precision arithmetics, not double-precision)
      
      * fixed compile errors on iOS, Android and in the baseline C++ version (intrin_cpp.hpp)
      
      * trying to fix ARM-neon builds
      
      * trying to fix ARM-neon builds
      
      * trying to fix ARM-neon builds
      
      * trying to fix ARM-neon builds
      80b62a41
    • Vadim Pisarevsky's avatar
      Merge pull request #12437 from vpisarev:avx2_fixes · 54279523
      Vadim Pisarevsky authored
      * trying to fix the custom AVX2 builder test failures (false alarms)
      
      * fixed compile error with CPU_BASELINE=AVX2 on x86; raised tolerance thresholds in a couple of tests
      
      * fixed compile error with CPU_BASELINE=AVX2 on x86; raised tolerance thresholds in a couple of tests
      
      * fixed compile error with CPU_BASELINE=AVX2 on x86; raised tolerance thresholds in a couple of tests
      
      * seemingly disabled false alarm warning in surf.cpp; increased tolerance thresholds in the tests for SolvePnP and in DNN/ENet
      54279523
    • Alexander Alekhin's avatar
      8a3c394d
    • Alexander Alekhin's avatar
      core: remove constructors from C API structures · ad146e5a
      Alexander Alekhin authored
      POD structures can't have constructors.
      ad146e5a
  19. 04 Sep, 2018 1 commit
  20. 03 Sep, 2018 1 commit
  21. 31 Aug, 2018 1 commit
  22. 30 Aug, 2018 1 commit
  23. 22 Aug, 2018 1 commit
  24. 20 Aug, 2018 1 commit
    • Alexander Alekhin's avatar
      core(intrin): restrict FP16 operations · 67d46dfc
      Alexander Alekhin authored
      Intrinsics must be effective, so don't declare FP16 type/operations if there is no native support.
      
      - CV_FP16: supports load/store into/from float32
      - CV_SIMD_FP16: declares FP16 types and native FP16 operations
      67d46dfc
  25. 17 Aug, 2018 1 commit
  26. 15 Aug, 2018 1 commit
  27. 14 Aug, 2018 2 commits
  28. 07 Aug, 2018 1 commit
  29. 06 Aug, 2018 1 commit
  30. 01 Aug, 2018 1 commit
    • amatyuko's avatar
      Fix for SSE2 intrinsics problem in the part of saturation arithmetic processing… · 3ea2586a
      amatyuko authored
      Fix for SSE2 intrinsics problem in the part of saturation arithmetic processing during 32s->16u packed conversion -
      for some big negative values less than -INT_MAX+32767 the sign of the numbers is lost due to overflow that leads to
      incorrect saturation to MAX value, instead of zero.
      The issue is not reproduced with CV_ENABLED_INTRINSICS=OFF
      3ea2586a