Home
last modified time | relevance | path

Searched refs:CL_MAKE_VERSION (Results 1 - 16 of 16) sorted by relevance

/third_party/mesa3d/src/gallium/frontends/clover/core/
H A Ddevice.cpp56 cl_version version = CL_MAKE_VERSION(0, 0, 0); in get_highest_supported_version()
79 dev.clc_version < CL_MAKE_VERSION(1, 0, 0)) { in get_highest_supported_version()
82 version = CL_MAKE_VERSION(1, 0, 0); in get_highest_supported_version()
97 dev.clc_version < CL_MAKE_VERSION(1, 1, 0)) { in get_highest_supported_version()
100 version = CL_MAKE_VERSION(1, 1, 0); in get_highest_supported_version()
104 dev.clc_version < CL_MAKE_VERSION(1, 2, 0) || in get_highest_supported_version()
111 version = CL_MAKE_VERSION(1, 2, 0); in get_highest_supported_version()
127 dev.clc_version < CL_MAKE_VERSION(3, 0, 0) || in get_highest_supported_version()
133 version = CL_MAKE_VERSION(3, 0, 0); in get_highest_supported_version()
149 clc_version = CL_MAKE_VERSION(majo in device()
[all...]
H A Dplatform.cpp34 version = CL_MAKE_VERSION(major, minor, 0); in platform()
52 vec.push_back( cl_name_version{ CL_MAKE_VERSION(1, 0, 0), "cl_khr_icd" } ); in supported_extensions()
/third_party/mesa3d/src/gallium/frontends/clover/llvm/
H A Dinvocation.cpp78 static const cl_version ANY_VERSION = CL_MAKE_VERSION(9, 9, 9);
80 CL_MAKE_VERSION(1, 1, 0),
81 CL_MAKE_VERSION(1, 2, 0),
82 CL_MAKE_VERSION(2, 0, 0),
83 CL_MAKE_VERSION(2, 1, 0),
84 CL_MAKE_VERSION(2, 2, 0),
85 CL_MAKE_VERSION(3, 0, 0),
94 { CL_MAKE_VERSION(1, 0, 0), clang::LangStandard::lang_opencl10},
95 { CL_MAKE_VERSION(1, 1, 0), clang::LangStandard::lang_opencl11},
96 { CL_MAKE_VERSION(
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A Dcl_utils.cpp113 if (extensions.version < CL_MAKE_VERSION(1, 1, 0)) in IsValidImageFormat()
124 if (extensions.version < CL_MAKE_VERSION(2, 0, 0)) in IsValidImageFormat()
173 if (extensions.version < CL_MAKE_VERSION(2, 1, 0) || in IsValidImageFormat()
H A DCLDevice.h98 return mInfo.version >= CL_MAKE_VERSION(major, minor, 0u); in isVersionOrNewer()
H A DCLPlatform.h117 return mInfo.version >= CL_MAKE_VERSION(major, minor, 0u); in isVersionOrNewer()
H A DvalidationCL.cpp17 if (version < CL_MAKE_VERSION(major##u, minor##u, 0u)) \
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/
H A DCLPlatformCL.cpp177 if (version >= CL_MAKE_VERSION(2, 1, 0) && in createInfo()
186 if (version < CL_MAKE_VERSION(3, 0, 0)) in createInfo()
227 if (info.version >= CL_MAKE_VERSION(1, 1, 0) && in createInfo()
241 if (info.version >= CL_MAKE_VERSION(1, 2, 0) && in createInfo()
262 if (info.version >= CL_MAKE_VERSION(2, 0, 0) && in createInfo()
281 if (info.version >= CL_MAKE_VERSION(2, 1, 0) && in createInfo()
294 if (info.version >= CL_MAKE_VERSION(2, 2, 0) && in createInfo()
302 if (info.version >= CL_MAKE_VERSION(3, 0, 0) && in createInfo()
H A DCLDeviceCL.cpp133 if (info.version >= CL_MAKE_VERSION(1, 2, 0)) in createInfo()
150 if (info.version >= CL_MAKE_VERSION(2, 0, 0) && in createInfo()
159 if (info.version >= CL_MAKE_VERSION(2, 1, 0)) in createInfo()
168 if (info.version >= CL_MAKE_VERSION(3, 0, 0) && in createInfo()
H A Dcl_util.cpp34 return CL_MAKE_VERSION(static_cast<cl_uint>(major), static_cast<cl_uint>(minor), 0); in ExtractCLVersion()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DCLPlatformVk.cpp45 cl_name_version{CL_MAKE_VERSION(1, 0, 0), "cl_khr_icd"}, in createInfo()
46 cl_name_version{CL_MAKE_VERSION(1, 0, 0), "cl_khr_extended_versioning"}}; in createInfo()
H A DCLPlatformVk.h47 return CL_MAKE_VERSION(1, 2, 0); in GetVersion()
/third_party/mesa3d/src/gallium/frontends/clover/spirv/
H A Dinvocation.cpp732 if (opencl_version == CL_MAKE_VERSION(3, 0, 0)) { in convert_opencl_version_to_target_env()
734 } else if (opencl_version == CL_MAKE_VERSION(2, 2, 0)) { in convert_opencl_version_to_target_env()
736 } else if (opencl_version == CL_MAKE_VERSION(2, 1, 0)) { in convert_opencl_version_to_target_env()
738 } else if (opencl_version == CL_MAKE_VERSION(2, 0, 0)) { in convert_opencl_version_to_target_env()
740 } else if (opencl_version == CL_MAKE_VERSION(1, 2, 0) || in convert_opencl_version_to_target_env()
741 opencl_version == CL_MAKE_VERSION(1, 1, 0) || in convert_opencl_version_to_target_env()
742 opencl_version == CL_MAKE_VERSION(1, 0, 0)) { in convert_opencl_version_to_target_env()
943 return { cl_name_version { CL_MAKE_VERSION(1u, 0u, 0u), "SPIR-V" } }; in supported_versions()
948 return CL_MAKE_VERSION((version >> 16u) & 0xff, in to_opencl_version_encoding()
1011 return CL_MAKE_VERSION(
[all...]
/third_party/mesa3d/include/CL/
H A Dcl.h933 #define CL_MAKE_VERSION(major, minor, patch) \ macro
/third_party/opencl-headers/CL/
H A Dcl.h942 #define CL_MAKE_VERSION(major, minor, patch) \ macro
/third_party/skia/third_party/externals/angle2/include/CL/
H A Dcl.h935 #define CL_MAKE_VERSION(major, minor, patch) \ macro

Completed in 21 milliseconds