1. 20 Mar, 2015 1 commit
  2. 02 Mar, 2015 2 commits
  3. 04 Feb, 2015 1 commit
  4. 23 Jan, 2015 1 commit
  5. 26 Nov, 2014 1 commit
  6. 05 Nov, 2014 1 commit
  7. 24 Oct, 2014 2 commits
  8. 23 Oct, 2014 1 commit
  9. 21 Oct, 2014 2 commits
  10. 15 Oct, 2014 1 commit
    • Pavel Vlasov's avatar
      Implementation detector and selector for IPP and OpenCL; · 45958eaa
      Pavel Vlasov authored
      IPP can be switched on and off on runtime;
      
      Optional implementation collector was added (switched off by default in CMake). Gathers data of implementation used in functions and report this info through performance TS;
      
      TS modifications for implementations control;
      45958eaa
  11. 09 Oct, 2014 1 commit
  12. 04 Sep, 2014 1 commit
  13. 03 Sep, 2014 1 commit
  14. 29 Aug, 2014 2 commits
  15. 25 Aug, 2014 3 commits
  16. 15 Aug, 2014 1 commit
  17. 13 Aug, 2014 1 commit
    • Adil Ibragimov's avatar
      Several type of formal refactoring: · 8a4a1bb0
      Adil Ibragimov authored
      1. someMatrix.data -> someMatrix.prt()
      2. someMatrix.data + someMatrix.step * lineIndex -> someMatrix.ptr( lineIndex )
      3. (SomeType*) someMatrix.data -> someMatrix.ptr<SomeType>()
      4. someMatrix.data -> !someMatrix.empty() ( or !someMatrix.data -> someMatrix.empty() ) in logical expressions
      8a4a1bb0
  18. 09 Aug, 2014 1 commit
  19. 24 Jul, 2014 1 commit
  20. 22 Jul, 2014 1 commit
  21. 11 Jul, 2014 1 commit
  22. 09 Jul, 2014 1 commit
    • Zhigang Gong's avatar
      Avoid unmap an umat(ocl) which hasn't been mapped at all. · 2e49ca49
      Zhigang Gong authored
      According to opencl 1.2 spec 5.4.2:
        enqueues a command to unmap a previously mapped region of a memory object.
        ...
        CL_INVALID_VALUE if mapped_ptr is not a valid pointer returned by
        clEnqueueMapBuffer, or clEnqueueMapImage for memobj.
      
      So if the u->data is not from a clEnqueueMapBuffer call, we should not
      call clEnqueueUnmapMemObject() unmap it. With this patch, the cases
      ./opencv_test_video --gtest_filter=OCL_Video/FarnebackOpticalFlow.Mat/*
      could work well with beignet 0.9.1, Otherwise, it will get a
      CL_INVALID_VALUE at the clEnqueueUnmapMemObject().
      Signed-off-by: 's avatarZhigang Gong <zhigang.gong@intel.com>
      2e49ca49
  23. 03 Jul, 2014 2 commits
  24. 01 Jul, 2014 1 commit
  25. 23 Jun, 2014 1 commit
  26. 19 Jun, 2014 1 commit
  27. 17 Jun, 2014 1 commit
    • Hans Johnson's avatar
      COMP: Fix problem with narrowing in c++11 · 4c7ed03b
      Hans Johnson authored
      modules/core/src/arithm.cpp:345:51:
      error: constant expression evaluates to 4294967295 which cannot be narrowed to type 'int' [-Wc++11-narrowing]
      static int CV_DECL_ALIGNED(16) v64f_absmask[] = { 0xffffffff, 0x7fffffff, 0xffffffff, 0x7fffffff };
                                                        ^~~~~~~~~~
      
      Converted to unsigned int.  This variable is only used to initialize a bit pattern anywhy for a 128bit type.
      4c7ed03b
  28. 28 May, 2014 1 commit
  29. 23 May, 2014 1 commit
  30. 12 May, 2014 1 commit
  31. 06 May, 2014 1 commit
  32. 23 Apr, 2014 1 commit
  33. 14 Apr, 2014 1 commit