1. 23 10月, 2014 1 次提交
  2. 21 10月, 2014 1 次提交
  3. 15 10月, 2014 1 次提交
    • P
      Implementation detector and selector for IPP and OpenCL; · 45958eaa
      Pavel Vlasov 提交于
      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
  4. 09 10月, 2014 1 次提交
  5. 04 9月, 2014 1 次提交
  6. 03 9月, 2014 1 次提交
  7. 29 8月, 2014 2 次提交
  8. 25 8月, 2014 3 次提交
  9. 16 8月, 2014 1 次提交
  10. 13 8月, 2014 1 次提交
    • A
      Several type of formal refactoring: · 8a4a1bb0
      Adil Ibragimov 提交于
      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
  11. 10 8月, 2014 1 次提交
  12. 24 7月, 2014 1 次提交
  13. 22 7月, 2014 1 次提交
  14. 11 7月, 2014 1 次提交
  15. 09 7月, 2014 1 次提交
    • Z
      Avoid unmap an umat(ocl) which hasn't been mapped at all. · 2e49ca49
      Zhigang Gong 提交于
      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: NZhigang Gong <zhigang.gong@intel.com>
      2e49ca49
  16. 03 7月, 2014 2 次提交
  17. 01 7月, 2014 1 次提交
  18. 23 6月, 2014 1 次提交
  19. 19 6月, 2014 1 次提交
  20. 18 6月, 2014 1 次提交
    • H
      COMP: Fix problem with narrowing in c++11 · 4c7ed03b
      Hans Johnson 提交于
      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
  21. 28 5月, 2014 1 次提交
  22. 23 5月, 2014 1 次提交
  23. 12 5月, 2014 1 次提交
  24. 07 5月, 2014 1 次提交
  25. 24 4月, 2014 1 次提交
  26. 15 4月, 2014 1 次提交
  27. 11 4月, 2014 3 次提交
  28. 09 4月, 2014 1 次提交
  29. 24 3月, 2014 1 次提交
  30. 21 3月, 2014 1 次提交
  31. 20 3月, 2014 1 次提交
  32. 19 3月, 2014 2 次提交
  33. 18 3月, 2014 1 次提交