Skip to content

Commit 9cceccd

Browse files
committed
Merge pull request opencv#9993 from alalek:ocl_fix_gemm_9989
2 parents 18a4ced + 7db612a commit 9cceccd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

modules/core/src/intel_gpu_gemm.inl.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,8 @@ static bool intel_gpu_gemm(
108108
(float)beta,
109109
(int)(A.step / sizeof(float)),
110110
(int)(B.step / sizeof(float)),
111-
(int)(D.step / sizeof(float)),
112-
(int) 0, // 14 start_index
113-
stride);
111+
(int)(D.step / sizeof(float))
112+
);
114113

115114
ret = k.run(2, global, local, false, q);
116115
}

0 commit comments

Comments
 (0)