core/ocl: update dynamic runtime
authorAlexander Alekhin <alexander.alekhin@itseez.com>
Fri, 6 Dec 2013 14:41:23 +0000 (18:41 +0400)
committerAlexander Alekhin <alexander.alekhin@itseez.com>
Wed, 11 Dec 2013 11:56:54 +0000 (15:56 +0400)
commit5ecf7597428bbb8a7dfad98c309ef3f92d7d210f
treea21eb1e7328157c6c927dd1b11e37ba88d25c154
parent381d7851b7aeea72e71b588a4e3237061963fc1f
core/ocl: update dynamic runtime
32 files changed:
modules/core/CMakeLists.txt
modules/core/include/opencv2/core/opencl/runtime/opencl_clamdblas.hpp [new file with mode: 0644]
modules/core/include/opencv2/core/opencl/runtime/opencl_clamdfft.hpp [new file with mode: 0644]
modules/core/include/opencv2/core/opencl/runtime/opencl_core.hpp [new file with mode: 0644]
modules/core/include/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp [new file with mode: 0644]
modules/core/src/opencl/runtime/generator/common.py
modules/core/src/opencl/runtime/generator/filter/opencl_clamdblas_functions.list [new file with mode: 0644]
modules/core/src/opencl/runtime/generator/filter/opencl_clamdfft_functions.list [new file with mode: 0644]
modules/core/src/opencl/runtime/generator/filter/opencl_core_functions.list [new file with mode: 0644]
modules/core/src/opencl/runtime/generator/generate.sh
modules/core/src/opencl/runtime/generator/parser_cl.py
modules/core/src/opencl/runtime/generator/parser_clamdblas.py
modules/core/src/opencl/runtime/generator/parser_clamdfft.py
modules/core/src/opencl/runtime/generator/template/opencl_clamdblas.hpp.in [new file with mode: 0644]
modules/core/src/opencl/runtime/generator/template/opencl_clamdblas_impl.hpp.in [new file with mode: 0644]
modules/core/src/opencl/runtime/generator/template/opencl_clamdfft.hpp.in [new file with mode: 0644]
modules/core/src/opencl/runtime/generator/template/opencl_clamdfft_impl.hpp.in [new file with mode: 0644]
modules/core/src/opencl/runtime/generator/template/opencl_core.hpp.in [new file with mode: 0644]
modules/core/src/opencl/runtime/generator/template/opencl_core_impl.hpp.in [new file with mode: 0644]
modules/core/src/opencl/runtime/generator/template/opencl_core_wrappers.hpp.in [new file with mode: 0644]
modules/core/src/opencl/runtime/opencl_clamdblas.cpp [new file with mode: 0644]
modules/core/src/opencl/runtime/opencl_clamdfft.cpp [new file with mode: 0644]
modules/core/src/opencl/runtime/opencl_core.cpp [new file with mode: 0644]
modules/core/src/opencl/runtime/runtime_common.hpp [new file with mode: 0644]
modules/core/src/precomp.hpp
modules/ocl/include/opencv2/ocl/private/opencl_utils.hpp
modules/ocl/include/opencv2/ocl/private/util.hpp
modules/ocl/src/fft.cpp
modules/ocl/src/gemm.cpp
modules/ocl/src/precomp.hpp
modules/ocl/src/safe_call.hpp
modules/ocl/test/test_api.cpp