- 23 Mar, 2016 2 commits
-
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
- 21 Mar, 2016 6 commits
-
-
Maksim Shabunin authored
-
Maksim Shabunin authored
-
Maksim Shabunin authored
-
Alexander Alekhin authored
-
Maksim Shabunin authored
-
Maksim Shabunin authored
-
- 19 Mar, 2016 2 commits
-
-
Leonid Volnitsky authored
-
berak authored
-
- 18 Mar, 2016 2 commits
-
-
Alexander Alekhin authored
-
Vladislav Sovrasov authored
-
- 17 Mar, 2016 5 commits
-
-
Dan authored
Fixed regression in cv::VideoCapture with gstreamer back end that prevented viewing of rtsp streams.
-
StevenPuttemans authored
-
Alexander Alekhin authored
-
Josh Lubawy authored
-
Josh Lubawy authored
-
- 16 Mar, 2016 7 commits
-
-
Alexander Alekhin authored
-
Bleach666 authored
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Bleach666 authored
-
Robbert Klarenbeek authored
-
Alexander Alekhin authored
-
- 15 Mar, 2016 9 commits
-
-
Robbert Klarenbeek authored
-
http://github.com/dtmoodie/opencvDan authored
-
Dan authored
-
Dan authored
-
Dan authored
-
Dan authored
-
Alexander Alekhin authored
-
Zhigang Gong authored
See the below code snippet: while(l_counter != 0) { int mod = l_counter % LOCAL_TOTAL; int pix_per_thr = l_counter / LOCAL_TOTAL + ((lid < mod) ? 1 : 0); for (int i = 0; i < pix_per_thr; ++i) { int index = atomic_dec(&l_counter) - 1; .... } .... barrier(CLK_LOCAL_MEM_FENCE); } If we don't put a barrier before the for loop, then there is a possiblity that some work item enter this loop but the others are not, the the l_counter will be reduced in the for loop and may be changed to zero, and the other work items may can't enter the while loop. If this happens, it breaks the barrier's rule which requires all the work items reach the same barrier. And it may hang the GPU depends on the implementation of opencl platform. This issue is raised at: https://github.com/Itseez/opencv/issues/5175Signed-off-by: Zhigang Gong <zhigang.gong@linux.intel.com>
-
Alexander Alekhin authored
-
- 14 Mar, 2016 7 commits
-
-
Dan authored
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Прун Виктор authored
fixed incorrect behaviour of move semantics for cv::Ptr, cv::Mat, cv::UMat in case when rvalue-reference references to *this.
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-