core(ocl): fix parameters for 'intelblas_gemm_buffer_NT' kernel

pull/9993/head
Alexander Alekhin 7 years ago
parent cc626a3b5a
commit 7db612a545
  1. 5
      modules/core/src/intel_gpu_gemm.inl.hpp

@ -108,9 +108,8 @@ static bool intel_gpu_gemm(
(float)beta,
(int)(A.step / sizeof(float)),
(int)(B.step / sizeof(float)),
(int)(D.step / sizeof(float)),
(int) 0, // 14 start_index
stride);
(int)(D.step / sizeof(float))
);
ret = k.run(2, global, local, false, q);
}

Loading…
Cancel
Save