1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

use correct name for NVIDIA

* remove NVidia and Nvidia
  * replace Cuda with CUDA
  * keep the letters for API
This commit is contained in:
Tomoaki Teshima
2018-04-13 20:33:19 +09:00
parent fdd83e5027
commit a40354d16f
4 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -547,7 +547,7 @@ static bool ocl_Laplacian5(InputArray _src, OutputArray _dst,
size_t src_step = _src.step(), src_offset = _src.offset();
const size_t tileSizeYmax = wgs / tileSizeX;
// workaround for Nvidia: 3 channel vector type takes 4*elem_size in local memory
// workaround for NVIDIA: 3 channel vector type takes 4*elem_size in local memory
int loc_mem_cn = dev.vendorID() == ocl::Device::VENDOR_NVIDIA && cn == 3 ? 4 : cn;
if (((src_offset % src_step) % esz == 0) &&