1. 22 Dec, 2017 1 commit
  2. 19 Dec, 2017 1 commit
  3. 15 Dec, 2017 2 commits
  4. 12 Dec, 2017 1 commit
  5. 11 Dec, 2017 2 commits
  6. 07 Dec, 2017 1 commit
  7. 05 Dec, 2017 2 commits
  8. 29 Nov, 2017 1 commit
  9. 28 Nov, 2017 2 commits
  10. 27 Nov, 2017 2 commits
  11. 24 Nov, 2017 1 commit
  12. 22 Nov, 2017 3 commits
  13. 21 Nov, 2017 3 commits
  14. 20 Nov, 2017 1 commit
    • Tomoaki Teshima's avatar
      Merge pull request #9753 from tomoaki0705:universalMatmul · 3cbe60cc
      Tomoaki Teshima authored
      * add accuracy test and performance check for matmul
        * add performance tests for transform and dotProduct
        * add test Core_TransformLargeTest for 8u version of transform
      
      * remove raw SSE2/NEON implementation from matmul.cpp
        * use universal intrinsic instead of raw intrinsic
        * remove unused templated function
        * add v_matmuladd which multiply 3x3 matrix and add 3x1 vector
        * add v_rotate_left/right in universal intrinsic
        * suppress intrinsic on some function and platform
        * add pure SW implementation of new universal intrinsics
        * add test for new universal intrinsics
      
      * core: prevent memory access after the end of buffer
      
      * fix perf tests
      3cbe60cc
  15. 17 Nov, 2017 2 commits
  16. 16 Nov, 2017 1 commit
  17. 15 Nov, 2017 1 commit
  18. 13 Nov, 2017 1 commit
    • Simon Guo's avatar
      core:ppc Fix 2 interleave logic errors in vsx_utils.hpp · 2610a47c
      Simon Guo authored
      When elements are 64 bits, the vec_st_interleave()/vec_ld_deinterleave()
      doesn't interleave 4 elements correctly.
      
      For vec_st_interleave(), following is saved into mem:
      	a0 b0 a1 b1 c0 d0 c1 d1
           -> we expected:
      	a0 b0 c0 d0 a1 b1 c1 d1
      
      for vec_ld_deinterleave(), following is loaded into a b c d for memory
      string { 1 2 3 4 5 6 7 8 }:
      	a: 1 3
      	b: 2 4
      	c: 5 7
      	d: 6 8
         -> we expected:
         	a: 1 5
      	b: 2 6
      	c: 3 7
      	d: 4 8
      
      This patch corrects this behavior.
      Signed-off-by: 's avatarSimon Guo <wei.guo.simon@gmail.com>
      2610a47c
  19. 10 Nov, 2017 1 commit
  20. 07 Nov, 2017 1 commit
  21. 28 Oct, 2017 1 commit
    • Sayed Adel's avatar
      core: Several improvements to Power/VSX · def444d9
      Sayed Adel authored
      - changed behavior of vec_ctf, vec_ctu, vec_cts
        in gcc and clang to make them compatible with XLC
      - implemented most of missing conversion intrinsics in gcc and clang
      - implemented conversions intrinsics of odd-numbered elements
      - ignored gcc bug warning that caused by -Wunused-but-set-variable in rare cases
      - replaced right shift with algebraic right shift for signed vectors
        to shift in the sign bit.
      - added new universal intrinsics v_matmuladd, v_rotate_left/right
      - avoid using floating multiply-add in RNG
      def444d9
  22. 18 Oct, 2017 1 commit
  23. 16 Oct, 2017 1 commit
    • Gregory Morse's avatar
      Merge pull request #9856 from GregoryMorse:patch-1 · d30a0c6f
      Gregory Morse authored
      * Update OpenCVCompilerOptimizations.cmake
      
      Neon not supported on MSVC ARM breaking build fix
      
      * Update OpenCVCompilerOptimizations.cmake
      
      Whitespace
      
      * Update intrin.hpp
      
      Many problems in MSVC ARM builds (at least on VS2017) being fixed in this PR now.
      
      C:\Users\Gregory\DOCUME~1\MYLIBR~1\OPENCV~3\opencv\sources\modules\core\include\opencv2/core/hal/intrin.hpp(444): error C3861: '_tzcnt_u32': identifier not found
      
      * Update hal_replacement.hpp
      
      Passing variadic expansion in a macro to another macro does not work properly in MSVC and a famous known workaround is hereby applied.  Discussion of it: https://stackoverflow.com/questions/5134523/msvc-doesnt-expand-va-args-correctly
      Only needed the fix for ARM builds: TEGRA_ macros are used for cv_hal_ functions in the carotene library.
      
      C:\Users\Gregory\Documents\My Libraries\opencv330\opencv\sources\modules\core\src\arithm.cpp(2378): warning C4003: not enough actual parameters for macro 'TEGRA_ADD'
      C:\Users\Gregory\Documents\My Libraries\opencv330\opencv\sources\modules\core\src\arithm.cpp(2378): error C2143: syntax error: missing ')' before ','
      C:\Users\Gregory\Documents\My Libraries\opencv330\opencv\sources\modules\core\src\arithm.cpp(2378): error C2059: syntax error: ')'
      
      * Update hal_replacement.hpp
      
      All hal_replacement's using carotene\hal\tegra_hal.hpp TEGRA_ functions as macros preprocessed by variadic macros should be changed, identical as was done in core.
      C:\Users\Gregory\Documents\My Libraries\opencv330\opencv\sources\modules\imgproc\src\color.cpp(9604): warning C4003: not enough actual parameters for macro 'TEGRA_CVTBGRTOBGR'
      C:\Users\Gregory\Documents\My Libraries\opencv330\opencv\sources\modules\imgproc\src\color.cpp(9604): error C2059: syntax error: '=='
      
      * Update OpenCVCompilerOptimizations.cmake
      
      * Update hal_replacement.hpp
      
      * Update hal_replacement.hpp
      d30a0c6f
  24. 14 Oct, 2017 1 commit
  25. 11 Oct, 2017 1 commit
  26. 10 Oct, 2017 3 commits
  27. 09 Oct, 2017 2 commits