├── CODE_OF_CONDUCT.adoc ├── README.adoc ├── extensions ├── Makefile ├── altera │ ├── cl_altera_compiler_mode.txt │ ├── cl_altera_device_temperature.txt │ └── cl_altera_live_object_tracking.txt ├── amd │ ├── cl_amd_bus_addressable_memory.txt │ ├── cl_amd_device_attribute_query.txt │ ├── cl_amd_fp64.txt │ ├── cl_amd_media_ops.txt │ ├── cl_amd_media_ops2.txt │ └── cl_amd_planar_yuv.txt ├── arm │ ├── cl_arm_controlled_kernel_termination.html │ ├── cl_arm_get_core_id.txt │ ├── cl_arm_import_memory.txt │ ├── cl_arm_integer_dot_product.txt │ ├── cl_arm_job_slot_selection.txt │ ├── cl_arm_non_uniform_work_group_size.txt │ ├── cl_arm_printf.html │ ├── cl_arm_printf.txt │ ├── cl_arm_protected_memory_allocation.html │ ├── cl_arm_scheduling_controls.html │ ├── cl_arm_shared_virtual_memory.txt │ └── cl_arm_thread_limit_hint.txt ├── clext.php ├── ext │ ├── cl_ext_atomic_counters_32.txt │ ├── cl_ext_atomic_counters_64.txt │ ├── cl_ext_cxx_for_opencl.html │ ├── cl_ext_device_fission.txt │ ├── cl_ext_float_atomics.html │ ├── cl_ext_image_from_buffer.html │ ├── cl_ext_image_raw10_raw12.html │ ├── cl_ext_image_requirements_info.html │ └── cl_ext_migrate_memobject.txt ├── img │ ├── cl_img_cached_allocations.html │ ├── cl_img_cached_allocations.txt │ ├── cl_img_generate_mipmap.html │ ├── cl_img_mem_properties.html │ ├── cl_img_use_gralloc_ptr.html │ ├── cl_img_use_gralloc_ptr.txt │ ├── cl_img_yuv_image.html │ └── cl_img_yuv_image.txt ├── intel │ ├── cl_intel_accelerator.txt │ ├── cl_intel_advanced_motion_estimation.txt │ ├── cl_intel_bfloat16_conversions.html │ ├── cl_intel_command_queue_families.html │ ├── cl_intel_create_buffer_with_properties.html │ ├── cl_intel_d3d11_nv12_media_sharing.txt │ ├── cl_intel_device_attribute_query.html │ ├── cl_intel_device_partition_by_names.txt │ ├── cl_intel_device_side_avc_motion_estimation.txt │ ├── cl_intel_driver_diagnostics.txt │ ├── cl_intel_dx9_media_sharing.txt │ ├── cl_intel_egl_image_yuv.txt │ ├── cl_intel_exec_by_local_thread.txt │ ├── cl_intel_media_block_io.txt │ ├── cl_intel_mem_alloc_buffer_location.html │ ├── cl_intel_mem_channel_property.html │ ├── cl_intel_mem_force_host_memory.html │ ├── cl_intel_motion_estimation.txt │ ├── cl_intel_packed_yuv.html │ ├── cl_intel_packed_yuv.txt │ ├── cl_intel_planar_yuv.html │ ├── cl_intel_planar_yuv.txt │ ├── cl_intel_required_subgroup_size.html │ ├── cl_intel_required_subgroup_size.txt │ ├── cl_intel_sharing_format_query.html │ ├── cl_intel_simultaneous_sharing.txt │ ├── cl_intel_spirv_device_side_avc_motion_estimation.html │ ├── cl_intel_spirv_media_block_io.html │ ├── cl_intel_spirv_subgroups.html │ ├── cl_intel_split_work_group_barrier.html │ ├── cl_intel_subgroup_2d_block_io.html │ ├── cl_intel_subgroup_buffer_prefetch.html │ ├── cl_intel_subgroup_local_block_io.html │ ├── cl_intel_subgroup_matrix_multiply_accumulate.html │ ├── cl_intel_subgroup_split_matrix_multiply_accumulate.html │ ├── cl_intel_subgroups.html │ ├── cl_intel_subgroups.txt │ ├── cl_intel_subgroups_char.html │ ├── cl_intel_subgroups_long.html │ ├── cl_intel_subgroups_short.html │ ├── cl_intel_subgroups_short.txt │ ├── cl_intel_unified_shared_memory.html │ └── cl_intel_va_api_media_sharing.txt ├── khr │ ├── cl_khr_d3d10_sharing.txt │ ├── cl_khr_gl_sharing.txt │ └── cl_khr_icd.txt ├── khrext.php ├── loader │ └── cl_loader_info.html ├── makeindex.py ├── nextfree.py ├── nv │ ├── cl_nv_compiler_options.txt │ ├── cl_nv_d3d10_sharing.txt │ ├── cl_nv_d3d11_sharing.txt │ ├── cl_nv_d3d9_sharing.txt │ ├── cl_nv_device_attribute_query.txt │ └── cl_nv_pragma_unroll.txt ├── pocl │ └── cl_pocl_content_size.html ├── printreg.py ├── qcom │ ├── cl_qcom_android_native_buffer_host_ptr.txt │ ├── cl_qcom_ext_host_ptr.txt │ ├── cl_qcom_ext_host_ptr_iocoherent.txt │ ├── cl_qcom_ion_host_ptr.txt │ └── cl_qcom_perf_hint.html ├── registry.py ├── sortreg.py └── template.txt ├── index.php ├── sdk ├── 1.0 │ └── docs │ │ ├── OpenCL-1.0-refcard.pdf │ │ └── man │ │ ├── EXTENSION.xml │ │ ├── FP_CONTRACT.xml │ │ ├── SELECT_ROUNDING_MODE.xml │ │ ├── abs.xml │ │ ├── abstractDataTypes.xml │ │ ├── acos.xml │ │ ├── add_sat.xml │ │ ├── any.xml │ │ ├── as_typen.xml │ │ ├── asin.xml │ │ ├── asyncCopyFunctions.xml │ │ ├── asyncCopyFunctionsBAK.xml │ │ ├── async_work_group_copy.xml │ │ ├── atan.xml │ │ ├── atomicFunctions.xml │ │ ├── attribute.xml │ │ ├── attributes-blocksAndControlFlow.xml │ │ ├── attributes-types.xml │ │ ├── attributes-variables.xml │ │ ├── barrier.xml │ │ ├── bitselect.xml │ │ ├── cbrt.xml │ │ ├── ceil.xml │ │ ├── clBuildProgram.xml │ │ ├── clCreateBuffer.xml │ │ ├── clCreateCommandQueue.xml │ │ ├── clCreateContext.xml │ │ ├── clCreateContextFromType.xml │ │ ├── clCreateFromGLBuffer.xml │ │ ├── clCreateFromGLRenderbuffer.xml │ │ ├── clCreateFromGLTexture2D.xml │ │ ├── clCreateFromGLTexture3D.xml │ │ ├── clCreateImage2D.xml │ │ ├── clCreateImage3D.xml │ │ ├── clCreateKernel.xml │ │ ├── clCreateKernelsInProgram.xml │ │ ├── clCreateProgramWithBinary.xml │ │ ├── clCreateProgramWithSource.xml │ │ ├── clCreateSampler.xml │ │ ├── clEnqueueAcquireGLObjects.xml │ │ ├── clEnqueueBarrier.xml │ │ ├── clEnqueueCopyBuffer.xml │ │ ├── clEnqueueCopyBufferToImage.xml │ │ ├── clEnqueueCopyImage.xml │ │ ├── clEnqueueCopyImageToBuffer.xml │ │ ├── clEnqueueMapBuffer.xml │ │ ├── clEnqueueMapImage.xml │ │ ├── clEnqueueMarker.xml │ │ ├── clEnqueueNDRangeKernel.xml │ │ ├── clEnqueueNativeKernel.xml │ │ ├── clEnqueueReadBuffer.xml │ │ ├── clEnqueueReadImage.xml │ │ ├── clEnqueueReleaseGLObjects.xml │ │ ├── clEnqueueTask.xml │ │ ├── clEnqueueUnmapMemObject.xml │ │ ├── clEnqueueWaitForEvents.xml │ │ ├── clEnqueueWriteBuffer.xml │ │ ├── clEnqueueWriteImage.xml │ │ ├── clFinish.xml │ │ ├── clFlush.xml │ │ ├── clGetCommandQueueInfo.xml │ │ ├── clGetContextInfo.xml │ │ ├── clGetDeviceIDs.xml │ │ ├── clGetDeviceInfo.xml │ │ ├── clGetEventInfo.xml │ │ ├── clGetEventProfilingInfo.xml │ │ ├── clGetExtensionFunctionAddress.xml │ │ ├── clGetGLContextInfoKHR.xml │ │ ├── clGetGLObjectInfo.xml │ │ ├── clGetGLTextureInfo.xml │ │ ├── clGetImageInfo.xml │ │ ├── clGetKernelInfo.xml │ │ ├── clGetKernelWorkGroupInfo.xml │ │ ├── clGetMemObjectInfo.xml │ │ ├── clGetPlatformIDs.xml │ │ ├── clGetPlatformInfo.xml │ │ ├── clGetProgramBuildInfo.xml │ │ ├── clGetProgramInfo.xml │ │ ├── clGetSamplerInfo.xml │ │ ├── clGetSupportedImageFormats.xml │ │ ├── clReleaseCommandQueue.xml │ │ ├── clReleaseContext.xml │ │ ├── clReleaseEvent.xml │ │ ├── clReleaseKernel.xml │ │ ├── clReleaseMemObject.xml │ │ ├── clReleaseProgram.xml │ │ ├── clReleaseSampler.xml │ │ ├── clRetainCommandQueue.xml │ │ ├── clRetainContext.xml │ │ ├── clRetainEvent.xml │ │ ├── clRetainKernel.xml │ │ ├── clRetainMemObject.xml │ │ ├── clRetainProgram.xml │ │ ├── clRetainSampler.xml │ │ ├── clSetCommandQueueProperty.xml │ │ ├── clSetKernelArg.xml │ │ ├── clUnloadCompiler.xml │ │ ├── clWaitForEvents.xml │ │ ├── cl_image_format.xml │ │ ├── cl_khr_3d_image_writes.xml │ │ ├── cl_khr_byte_addressable_store.xml │ │ ├── cl_khr_fp16.xml │ │ ├── cl_khr_fp64.xml │ │ ├── cl_khr_global_int32_base_atomics.xml │ │ ├── cl_khr_global_int32_extended_atomics.xml │ │ ├── cl_khr_int64_base_atomics.xml │ │ ├── cl_khr_int64_extended_atomics.xml │ │ ├── cl_khr_local_int32_base_atomics.xml │ │ ├── cl_khr_local_int32_extended_atomics.xml │ │ ├── cl_khr_select_fprounding_mode.xml │ │ ├── clamp.xml │ │ ├── clz.xml │ │ ├── commonFunctions.xml │ │ ├── commonMax.xml │ │ ├── commonMin.xml │ │ ├── constant.xml │ │ ├── convert_T.xml │ │ ├── copysign.xml │ │ ├── cos.xml │ │ ├── cross.xml │ │ ├── degrees.xml │ │ ├── distance.xml │ │ ├── divide.xml │ │ ├── dot.xml │ │ ├── enums.xml │ │ ├── erf.xml │ │ ├── errors.xml │ │ ├── exp.xml │ │ ├── explicitMemoryFenceFunctions.xml │ │ ├── fabs.xml │ │ ├── fast_distance.xml │ │ ├── fast_length.xml │ │ ├── fast_normalize.xml │ │ ├── fdim.xml │ │ ├── floor.xml │ │ ├── fma.xml │ │ ├── fmax.xml │ │ ├── fmin.xml │ │ ├── fmod.xml │ │ ├── fract.xml │ │ ├── frexp.xml │ │ ├── functionQualifiers.xml │ │ ├── geometricFunctions.xml │ │ ├── get_global_id.xml │ │ ├── get_global_size.xml │ │ ├── get_group_id.xml │ │ ├── get_image_channel_data_type.xml │ │ ├── get_image_channel_order.xml │ │ ├── get_image_depth.xml │ │ ├── get_image_dim.xml │ │ ├── get_image_height.xml │ │ ├── get_image_width.xml │ │ ├── get_local_id.xml │ │ ├── get_local_size.xml │ │ ├── get_num_groups.xml │ │ ├── get_work_dim.xml │ │ ├── gl_sharing.xml │ │ ├── global.xml │ │ ├── hadd.xml │ │ ├── hypot.xml │ │ ├── ilogb.xml │ │ ├── imageAccessQualifiers.xml │ │ ├── imageFunctions.xml │ │ ├── integerFunctions.xml │ │ ├── integerMax.xml │ │ ├── isequal.xml │ │ ├── isfinite.xml │ │ ├── isgreater.xml │ │ ├── isgreaterequal.xml │ │ ├── isinf.xml │ │ ├── isless.xml │ │ ├── islessequal.xml │ │ ├── islessgreater.xml │ │ ├── isnan.xml │ │ ├── isnormal.xml │ │ ├── isnotequal.xml │ │ ├── isordered.xml │ │ ├── isunordered.xml │ │ ├── ldexp.xml │ │ ├── length.xml │ │ ├── lgamma.xml │ │ ├── local.xml │ │ ├── log.xml │ │ ├── lookup.xml │ │ ├── macroLimits.xml │ │ ├── mad.xml │ │ ├── mad24.xml │ │ ├── mad_hi.xml │ │ ├── mad_sat.xml │ │ ├── mathConstants.xml │ │ ├── mathFunctions.xml │ │ ├── mem_fence.xml │ │ ├── mix.xml │ │ ├── modf.xml │ │ ├── mul24.xml │ │ ├── mul_hi.xml │ │ ├── nan.xml │ │ ├── nextafter.xml │ │ ├── normalize.xml │ │ ├── operators.xml │ │ ├── otherDataTypes.xml │ │ ├── pow.xml │ │ ├── prefetch.xml │ │ ├── preprocessorDirectives.xml │ │ ├── private.xml │ │ ├── radians.xml │ │ ├── read_imagef2d.xml │ │ ├── read_imagef3d.xml │ │ ├── read_imageh2d.xml │ │ ├── read_imageh3d.xml │ │ ├── read_imagei2d.xml │ │ ├── read_imagei3d.xml │ │ ├── read_mem_fence.xml │ │ ├── recip.xml │ │ ├── relationalFunctions.xml │ │ ├── remainder.xml │ │ ├── remquo.xml │ │ ├── reservedDataTypes.xml │ │ ├── restrictions.xml │ │ ├── rint.xml │ │ ├── rootn.xml │ │ ├── rotate.xml │ │ ├── round.xml │ │ ├── sampler_t.xml │ │ ├── scalarDataTypes.xml │ │ ├── scratchn.xml │ │ ├── select.xml │ │ ├── sign.xml │ │ ├── signbit.xml │ │ ├── sin.xml │ │ ├── smoothstep.xml │ │ ├── sqrt.xml │ │ ├── step.xml │ │ ├── sub_sat.xml │ │ ├── supportedImageFormats.xml │ │ ├── tan.xml │ │ ├── tgamma.xml │ │ ├── trunc.xml │ │ ├── upsample.xml │ │ ├── vectorDataLoadandStoreFunctions.xml │ │ ├── vectorDataTypes.xml │ │ ├── vload_half.xml │ │ ├── vload_halfn.xml │ │ ├── vloada_halfn.xml │ │ ├── vloadn.xml │ │ ├── vstore_half.xml │ │ ├── vstore_halfn.xml │ │ ├── vstorea_halfn.xml │ │ ├── vstoren.xml │ │ ├── wait_group_events.xml │ │ ├── workItemFunctions.xml │ │ ├── write_image.xml │ │ ├── write_imageh2d.xml │ │ ├── write_imageh3d.xml │ │ ├── write_mem_fence.xml │ │ └── xhtml │ │ ├── EXTENSION.html │ │ ├── FP_CONTRACT.html │ │ ├── KhronosLogo.jpg │ │ ├── Makefile │ │ ├── OpenCL_Logo.jpg │ │ ├── OpenCL_Logo120.jpg │ │ ├── Opencl_header.html │ │ ├── Opencl_tofc.html │ │ ├── SELECT_ROUNDING_MODE.html │ │ ├── abs.html │ │ ├── abstractDataTypes.html │ │ ├── acos.html │ │ ├── add_sat.html │ │ ├── any.html │ │ ├── as_typen.html │ │ ├── asin.html │ │ ├── asyncCopyFunctions.html │ │ ├── async_work_group_copy.html │ │ ├── atan.html │ │ ├── atomicFunctions.html │ │ ├── attribute.html │ │ ├── attributes-blocksAndControlFlow.html │ │ ├── attributes-types.html │ │ ├── attributes-variables.html │ │ ├── barrier.html │ │ ├── bitselect.html │ │ ├── bullets-contract.gif │ │ ├── bullets-end.gif │ │ ├── bullets-expand.gif │ │ ├── cbrt.html │ │ ├── ceil.html │ │ ├── clBuildProgram.html │ │ ├── clCreateBuffer.html │ │ ├── clCreateCommandQueue.html │ │ ├── clCreateContext.html │ │ ├── clCreateContextFromType.html │ │ ├── clCreateFromGLBuffer.html │ │ ├── clCreateFromGLRenderbuffer.html │ │ ├── clCreateFromGLTexture2D.html │ │ ├── clCreateFromGLTexture3D.html │ │ ├── clCreateImage2D.html │ │ ├── clCreateImage3D.html │ │ ├── clCreateKernel.html │ │ ├── clCreateKernelsInProgram.html │ │ ├── clCreateProgramWithBinary.html │ │ ├── clCreateProgramWithSource.html │ │ ├── clCreateSampler.html │ │ ├── clEnqueueAcquireGLObjects.html │ │ ├── clEnqueueBarrier.html │ │ ├── clEnqueueCopyBuffer.html │ │ ├── clEnqueueCopyBufferToImage.html │ │ ├── clEnqueueCopyImage.html │ │ ├── clEnqueueCopyImageToBuffer.html │ │ ├── clEnqueueMapBuffer.html │ │ ├── clEnqueueMapImage.html │ │ ├── clEnqueueMarker.html │ │ ├── clEnqueueNDRangeKernel.html │ │ ├── clEnqueueNativeKernel.html │ │ ├── clEnqueueReadBuffer.html │ │ ├── clEnqueueReadImage.html │ │ ├── clEnqueueReleaseGLObjects.html │ │ ├── clEnqueueTask.html │ │ ├── clEnqueueUnmapMemObject.html │ │ ├── clEnqueueWaitForEvents.html │ │ ├── clEnqueueWriteBuffer.html │ │ ├── clEnqueueWriteImage.html │ │ ├── clFinish.html │ │ ├── clFlush.html │ │ ├── clGetCommandQueueInfo.html │ │ ├── clGetContextInfo.html │ │ ├── clGetDeviceIDs.html │ │ ├── clGetDeviceInfo.html │ │ ├── clGetEventInfo.html │ │ ├── clGetEventProfilingInfo.html │ │ ├── clGetExtensionFunctionAddress.html │ │ ├── clGetGLObjectInfo.html │ │ ├── clGetGLTextureInfo.html │ │ ├── clGetImageInfo.html │ │ ├── clGetKernelInfo.html │ │ ├── clGetKernelWorkGroupInfo.html │ │ ├── clGetMemObjectInfo.html │ │ ├── clGetPlatformIDs.html │ │ ├── clGetPlatformInfo.html │ │ ├── clGetProgramBuildInfo.html │ │ ├── clGetProgramInfo.html │ │ ├── clGetSamplerInfo.html │ │ ├── clGetSupportedImageFormats.html │ │ ├── clReleaseCommandQueue.html │ │ ├── clReleaseContext.html │ │ ├── clReleaseEvent.html │ │ ├── clReleaseKernel.html │ │ ├── clReleaseMemObject.html │ │ ├── clReleaseProgram.html │ │ ├── clReleaseSampler.html │ │ ├── clRetainCommandQueue.html │ │ ├── clRetainContext.html │ │ ├── clRetainEvent.html │ │ ├── clRetainKernel.html │ │ ├── clRetainMemObject.html │ │ ├── clRetainProgram.html │ │ ├── clRetainSampler.html │ │ ├── clSetCommandQueueProperty.html │ │ ├── clSetKernelArg.html │ │ ├── clUnloadCompiler.html │ │ ├── clWaitForEvents.html │ │ ├── cl_image_format.html │ │ ├── cl_khr_3d_image_writes.html │ │ ├── cl_khr_byte_addressable_store.html │ │ ├── cl_khr_fp16.html │ │ ├── cl_khr_fp64.html │ │ ├── cl_khr_global_int32_base_atomics.html │ │ ├── cl_khr_global_int32_extended_atomics.html │ │ ├── cl_khr_int64_base_atomics.html │ │ ├── cl_khr_int64_extended_atomics.html │ │ ├── cl_khr_local_int32_base_atomics.html │ │ ├── cl_khr_local_int32_extended_atomics.html │ │ ├── cl_khr_select_fprounding_mode.html │ │ ├── clamp.html │ │ ├── clz.html │ │ ├── commonFunctions.html │ │ ├── commonMax.html │ │ ├── commonMin.html │ │ ├── constant.html │ │ ├── convert_T.html │ │ ├── copyright.inc.xsl │ │ ├── copysign.html │ │ ├── cos.html │ │ ├── cross.html │ │ ├── degrees.html │ │ ├── distance.html │ │ ├── divide.html │ │ ├── dot.html │ │ ├── enums.html │ │ ├── erf.html │ │ ├── errors.html │ │ ├── exp.html │ │ ├── explicitMemoryFenceFunctions.html │ │ ├── fabs.html │ │ ├── fast_distance.html │ │ ├── fast_length.html │ │ ├── fast_normalize.html │ │ ├── fdim.html │ │ ├── floor.html │ │ ├── fma.html │ │ ├── fmax.html │ │ ├── fmin.html │ │ ├── fmod.html │ │ ├── fract.html │ │ ├── frexp.html │ │ ├── functionQualifiers.html │ │ ├── geometricFunctions.html │ │ ├── get_global_id.html │ │ ├── get_global_size.html │ │ ├── get_group_id.html │ │ ├── get_image_channel_data_type.html │ │ ├── get_image_channel_order.html │ │ ├── get_image_depth.html │ │ ├── get_image_dim.html │ │ ├── get_image_height.html │ │ ├── get_image_width.html │ │ ├── get_local_id.html │ │ ├── get_local_size.html │ │ ├── get_num_groups.html │ │ ├── get_work_dim.html │ │ ├── gl_sharing.html │ │ ├── global.html │ │ ├── hadd.html │ │ ├── headBackground-bigger.jpg │ │ ├── headBackground.jpg │ │ ├── hypot.html │ │ ├── ilogb.html │ │ ├── imageAccessQualifiers.html │ │ ├── imageFunctions.html │ │ ├── index.html │ │ ├── integerFunctions.html │ │ ├── integerMax.html │ │ ├── isequal.html │ │ ├── isfinite.html │ │ ├── isgreater.html │ │ ├── isgreaterequal.html │ │ ├── isinf.html │ │ ├── isless.html │ │ ├── islessequal.html │ │ ├── islessgreater.html │ │ ├── isnan.html │ │ ├── isnormal.html │ │ ├── isnotequal.html │ │ ├── isordered.html │ │ ├── isunordered.html │ │ ├── ldexp.html │ │ ├── length.html │ │ ├── lgamma.html │ │ ├── local.html │ │ ├── log.html │ │ ├── macroLimits.html │ │ ├── mad.html │ │ ├── mad24.html │ │ ├── mad_hi.html │ │ ├── mad_sat.html │ │ ├── mathConstants.html │ │ ├── mathFunctions.html │ │ ├── mem_fence.html │ │ ├── mix.html │ │ ├── modf.html │ │ ├── mul24.html │ │ ├── mul_hi.html │ │ ├── nan.html │ │ ├── nextafter.html │ │ ├── normalize.html │ │ ├── oclRefPages-Title.html │ │ ├── opencl-man.xsl │ │ ├── operators.html │ │ ├── otherDataTypes.html │ │ ├── pageNumberLookup.rb │ │ ├── pdficon_small1.gif │ │ ├── pow.html │ │ ├── prefetch.html │ │ ├── preprocessorDirectives.html │ │ ├── present.css │ │ ├── private.html │ │ ├── radians.html │ │ ├── read_imagef2d.html │ │ ├── read_imagef3d.html │ │ ├── read_imageh2d.html │ │ ├── read_imageh3d.html │ │ ├── read_imagei2d.html │ │ ├── read_imagei3d.html │ │ ├── read_mem_fence.html │ │ ├── recip.html │ │ ├── relationalFunctions.html │ │ ├── remainder.html │ │ ├── remquo.html │ │ ├── reservedDataTypes.html │ │ ├── restrictions.html │ │ ├── rint.html │ │ ├── rootn.html │ │ ├── rotate.html │ │ ├── round.html │ │ ├── sampler_t.html │ │ ├── scalarDataTypes.html │ │ ├── select.html │ │ ├── sign.html │ │ ├── signbit.html │ │ ├── sin.html │ │ ├── smoothstep.html │ │ ├── sqrt.html │ │ ├── step.html │ │ ├── style.css │ │ ├── styles-css.xsl │ │ ├── sub_sat.html │ │ ├── tan.html │ │ ├── tgamma.html │ │ ├── trunc.html │ │ ├── undohtml.css │ │ ├── upsample.html │ │ ├── vectorDataLoadandStoreFunctions.html │ │ ├── vectorDataTypes.html │ │ ├── vload_half.html │ │ ├── vload_halfn.html │ │ ├── vloada_halfn.html │ │ ├── vloadn.html │ │ ├── vstore_half.html │ │ ├── vstore_halfn.html │ │ ├── vstorea_halfn.html │ │ ├── vstoren.html │ │ ├── wait_group_events.html │ │ ├── workItemFunctions.html │ │ ├── write_image.html │ │ ├── write_imageh2d.html │ │ ├── write_imageh3d.html │ │ └── write_mem_fence.html ├── 1.1 │ └── docs │ │ ├── OpenCL-1.1-refcard.pdf │ │ └── man │ │ ├── EXTENSION.xml │ │ ├── FP_CONTRACT.xml │ │ ├── abs.xml │ │ ├── abstractDataTypes.xml │ │ ├── accessQualifiers.xml │ │ ├── acos.xml │ │ ├── add_sat.xml │ │ ├── any.xml │ │ ├── as_typen.xml │ │ ├── asin.xml │ │ ├── asyncCopyFunctions.xml │ │ ├── async_work_group_copy.xml │ │ ├── async_work_group_strided_copy.xml │ │ ├── atan.xml │ │ ├── atomicFunctions.xml │ │ ├── atomicFunctionsInc.xml │ │ ├── atomic_add.xml │ │ ├── atomic_and.xml │ │ ├── atomic_cmpxchg.xml │ │ ├── atomic_dec.xml │ │ ├── atomic_inc.xml │ │ ├── atomic_max.xml │ │ ├── atomic_min.xml │ │ ├── atomic_or.xml │ │ ├── atomic_sub.xml │ │ ├── atomic_xchg.xml │ │ ├── atomic_xor.xml │ │ ├── attribute.xml │ │ ├── attributes-blocksAndControlFlow.xml │ │ ├── attributes-types.xml │ │ ├── attributes-variables.xml │ │ ├── barrier.xml │ │ ├── bitselect.xml │ │ ├── cbrt.xml │ │ ├── ceil.xml │ │ ├── clBuildProgram.xml │ │ ├── clCreateBuffer.xml │ │ ├── clCreateCommandQueue.xml │ │ ├── clCreateContext.xml │ │ ├── clCreateContextFromType.xml │ │ ├── clCreateEventFromGLsyncKHR.xml │ │ ├── clCreateFromD3D10BufferKHR.xml │ │ ├── clCreateFromD3D10Texture2DKHR.xml │ │ ├── clCreateFromD3D10Texture3DKHR.xml │ │ ├── clCreateFromGLBuffer.xml │ │ ├── clCreateFromGLRenderbuffer.xml │ │ ├── clCreateFromGLTexture2D.xml │ │ ├── clCreateFromGLTexture3D.xml │ │ ├── clCreateImage2D.xml │ │ ├── clCreateImage3D.xml │ │ ├── clCreateKernel.xml │ │ ├── clCreateKernelsInProgram.xml │ │ ├── clCreateProgramWithBinary.xml │ │ ├── clCreateProgramWithSource.xml │ │ ├── clCreateSampler.xml │ │ ├── clCreateSubBuffer.xml │ │ ├── clCreateUserEvent.xml │ │ ├── clEnqueueAcquireD3D10ObjectsKHR.xml │ │ ├── clEnqueueAcquireGLObjects.xml │ │ ├── clEnqueueBarrier.xml │ │ ├── clEnqueueCopyBuffer.xml │ │ ├── clEnqueueCopyBufferRect.xml │ │ ├── clEnqueueCopyBufferToImage.xml │ │ ├── clEnqueueCopyImage.xml │ │ ├── clEnqueueCopyImageToBuffer.xml │ │ ├── clEnqueueMapBuffer.xml │ │ ├── clEnqueueMapImage.xml │ │ ├── clEnqueueMarker.xml │ │ ├── clEnqueueNDRangeKernel.xml │ │ ├── clEnqueueNativeKernel.xml │ │ ├── clEnqueueReadBuffer.xml │ │ ├── clEnqueueReadBufferRect.xml │ │ ├── clEnqueueReadImage.xml │ │ ├── clEnqueueReleaseD3D10ObjectsKHR.xml │ │ ├── clEnqueueReleaseGLObjects.xml │ │ ├── clEnqueueTask.xml │ │ ├── clEnqueueUnmapMemObject.xml │ │ ├── clEnqueueWaitForEvents.xml │ │ ├── clEnqueueWriteBuffer.xml │ │ ├── clEnqueueWriteBufferRect.xml │ │ ├── clEnqueueWriteImage.xml │ │ ├── clFinish.xml │ │ ├── clFlush.xml │ │ ├── clGetCommandQueueInfo.xml │ │ ├── clGetContextInfo.xml │ │ ├── clGetDeviceIDs.xml │ │ ├── clGetDeviceIDsFromD3D10KHR.xml │ │ ├── clGetDeviceInfo.xml │ │ ├── clGetEventInfo.xml │ │ ├── clGetEventProfilingInfo.xml │ │ ├── clGetExtensionFunctionAddress.xml │ │ ├── clGetGLContextInfoKHR.xml │ │ ├── clGetGLObjectInfo.xml │ │ ├── clGetGLTextureInfo.xml │ │ ├── clGetImageInfo.xml │ │ ├── clGetKernelInfo.xml │ │ ├── clGetKernelWorkGroupInfo.xml │ │ ├── clGetMemObjectInfo.xml │ │ ├── clGetPlatformIDs.xml │ │ ├── clGetPlatformInfo.xml │ │ ├── clGetProgramBuildInfo.xml │ │ ├── clGetProgramInfo.xml │ │ ├── clGetSamplerInfo.xml │ │ ├── clGetSupportedImageFormats.xml │ │ ├── clReleaseCommandQueue.xml │ │ ├── clReleaseContext.xml │ │ ├── clReleaseEvent.xml │ │ ├── clReleaseKernel.xml │ │ ├── clReleaseMemObject.xml │ │ ├── clReleaseProgram.xml │ │ ├── clReleaseSampler.xml │ │ ├── clRetainCommandQueue.xml │ │ ├── clRetainContext.xml │ │ ├── clRetainEvent.xml │ │ ├── clRetainKernel.xml │ │ ├── clRetainMemObject.xml │ │ ├── clRetainProgram.xml │ │ ├── clRetainSampler.xml │ │ ├── clSetCommandQueueProperty.xml │ │ ├── clSetEventCallback.xml │ │ ├── clSetKernelArg.xml │ │ ├── clSetMemObjectDestructorCallback.xml │ │ ├── clSetUserEventStatus.xml │ │ ├── clUnloadCompiler.xml │ │ ├── clWaitForEvents.xml │ │ ├── cl_image_format.xml │ │ ├── cl_khr_3d_image_writes.xml │ │ ├── cl_khr_d3d10_sharing.xml │ │ ├── cl_khr_fp16.xml │ │ ├── cl_khr_fp64.xml │ │ ├── cl_khr_int64_base_atomics.xml │ │ ├── cl_khr_int64_extended_atomics.xml │ │ ├── clamp.xml │ │ ├── classDiagram.xml │ │ ├── clz.xml │ │ ├── commonFunctions.xml │ │ ├── commonFunctionsInc.xml │ │ ├── commonMax.xml │ │ ├── commonMin.xml │ │ ├── constant.xml │ │ ├── convert_T.xml │ │ ├── copysign.xml │ │ ├── cos.xml │ │ ├── cross.xml │ │ ├── d3d10_sharing.xml │ │ ├── dataTypes.xml │ │ ├── degrees.xml │ │ ├── distance.xml │ │ ├── divide.xml │ │ ├── dot.xml │ │ ├── enums.xml │ │ ├── erf.xml │ │ ├── exp.xml │ │ ├── explicitMemoryFenceFunctions.xml │ │ ├── fabs.xml │ │ ├── fast_distance.xml │ │ ├── fast_length.xml │ │ ├── fast_normalize.xml │ │ ├── fdim.xml │ │ ├── floor.xml │ │ ├── fma.xml │ │ ├── fmax.xml │ │ ├── fmin.xml │ │ ├── fmod.xml │ │ ├── fract.xml │ │ ├── frexp.xml │ │ ├── functionQualifiers.xml │ │ ├── geometricFunctions.xml │ │ ├── geometricFunctionsInc.xml │ │ ├── get_global_id.xml │ │ ├── get_global_offset.xml │ │ ├── get_global_size.xml │ │ ├── get_group_id.xml │ │ ├── get_image_channel_data_type.xml │ │ ├── get_image_channel_order.xml │ │ ├── get_image_depth.xml │ │ ├── get_image_dim.xml │ │ ├── get_image_height.xml │ │ ├── get_image_width.xml │ │ ├── get_local_id.xml │ │ ├── get_local_size.xml │ │ ├── get_num_groups.xml │ │ ├── get_work_dim.xml │ │ ├── gl_event.xml │ │ ├── gl_sharing.xml │ │ ├── global.xml │ │ ├── hadd.xml │ │ ├── hypot.xml │ │ ├── ilogb.xml │ │ ├── imageFunctions.xml │ │ ├── imageFunctionsInc.xml │ │ ├── integerClamp.xml │ │ ├── integerFunctions.xml │ │ ├── integerFunctionsInc.xml │ │ ├── integerMax.xml │ │ ├── isequal.xml │ │ ├── isfinite.xml │ │ ├── isgreater.xml │ │ ├── isgreaterequal.xml │ │ ├── isinf.xml │ │ ├── isless.xml │ │ ├── islessequal.xml │ │ ├── islessgreater.xml │ │ ├── isnan.xml │ │ ├── isnormal.xml │ │ ├── isnotequal.xml │ │ ├── isordered.xml │ │ ├── isunordered.xml │ │ ├── ldexp.xml │ │ ├── length.xml │ │ ├── lgamma.xml │ │ ├── local.xml │ │ ├── log.xml │ │ ├── macroLimits.xml │ │ ├── mad.xml │ │ ├── mad24.xml │ │ ├── mad_hi.xml │ │ ├── mad_sat.xml │ │ ├── mag.xml │ │ ├── mathConstants.xml │ │ ├── mathFunctions.xml │ │ ├── mathFunctionsInc.xml │ │ ├── mem_fence.xml │ │ ├── miscVectorFunctions.xml │ │ ├── mix.xml │ │ ├── modf.xml │ │ ├── mul24.xml │ │ ├── mul_hi.xml │ │ ├── nan.xml │ │ ├── nextafter.xml │ │ ├── normalize.xml │ │ ├── operators.xml │ │ ├── otherDataTypes.xml │ │ ├── pow.xml │ │ ├── prefetch.xml │ │ ├── preprocessorDirectives.xml │ │ ├── private.xml │ │ ├── qualifiers.xml │ │ ├── radians.xml │ │ ├── read_imagef2d.xml │ │ ├── read_imagef3d.xml │ │ ├── read_imageh2d.xml │ │ ├── read_imageh3d.xml │ │ ├── read_imagei2d.xml │ │ ├── read_imagei3d.xml │ │ ├── read_mem_fence.xml │ │ ├── recip.xml │ │ ├── relationalFunctions.xml │ │ ├── relationalFunctionsGEN.xml │ │ ├── relationalFunctionsIGEN.xml │ │ ├── relationalFunctionsInc1.xml │ │ ├── relationalFunctionsInc2.xml │ │ ├── relationalFunctionsInc3.xml │ │ ├── relationalFunctionsUGEN.xml │ │ ├── remainder.xml │ │ ├── remquo.xml │ │ ├── reservedDataTypes.xml │ │ ├── restrictions.xml │ │ ├── rint.xml │ │ ├── rootn.xml │ │ ├── rotate.xml │ │ ├── round.xml │ │ ├── sampler_t.xml │ │ ├── scalarDataTypes.xml │ │ ├── select.xml │ │ ├── shuffle.xml │ │ ├── sign.xml │ │ ├── signbit.xml │ │ ├── sin.xml │ │ ├── smoothstep.xml │ │ ├── sqrt.xml │ │ ├── step.xml │ │ ├── sub_sat.xml │ │ ├── supportedImageFormats.xml │ │ ├── tan.xml │ │ ├── tgamma.xml │ │ ├── trunc.xml │ │ ├── upsample.xml │ │ ├── vec_step.xml │ │ ├── vectorDataLoadandStoreFunctions.xml │ │ ├── vectorDataTypes.xml │ │ ├── vectorDoubleFunctionsInc.xml │ │ ├── vectorFunctionsInc.xml │ │ ├── vectorHalfFunctionsInc.xml │ │ ├── vload_half.xml │ │ ├── vload_halfn.xml │ │ ├── vloada_halfn.xml │ │ ├── vloadn.xml │ │ ├── vstore_half.xml │ │ ├── vstore_halfn.xml │ │ ├── vstorea_halfn.xml │ │ ├── vstoren.xml │ │ ├── wait_group_events.xml │ │ ├── workItemFunctions.xml │ │ ├── write_image.xml │ │ ├── write_imageh2d.xml │ │ ├── write_imageh3d.xml │ │ ├── write_mem_fence.xml │ │ └── xhtml │ │ ├── EXTENSION.html │ │ ├── FP_CONTRACT.html │ │ ├── KhronosLogo.jpg │ │ ├── Makefile │ │ ├── OpenCL_Logo.jpg │ │ ├── OpenCL_Logo120.jpg │ │ ├── Opencl_header.html │ │ ├── Opencl_tofc.html │ │ ├── abs.html │ │ ├── abstractDataTypes.html │ │ ├── accessQualifiers.html │ │ ├── acos.html │ │ ├── add_sat.html │ │ ├── any.html │ │ ├── as_typen.html │ │ ├── asin.html │ │ ├── asyncCopyFunctions.html │ │ ├── async_work_group_copy.html │ │ ├── async_work_group_strided_copy.html │ │ ├── atan.html │ │ ├── atomicFunctions.html │ │ ├── atomic_add.html │ │ ├── atomic_and.html │ │ ├── atomic_cmpxchg.html │ │ ├── atomic_dec.html │ │ ├── atomic_inc.html │ │ ├── atomic_max.html │ │ ├── atomic_min.html │ │ ├── atomic_or.html │ │ ├── atomic_sub.html │ │ ├── atomic_xchg.html │ │ ├── atomic_xor.html │ │ ├── attribute.html │ │ ├── attributes-blocksAndControlFlow.html │ │ ├── attributes-types.html │ │ ├── attributes-variables.html │ │ ├── barrier.html │ │ ├── bitselect.html │ │ ├── bullets-contract.gif │ │ ├── bullets-end.gif │ │ ├── bullets-expand.gif │ │ ├── cbrt.html │ │ ├── ceil.html │ │ ├── clBuildProgram.html │ │ ├── clCreateBuffer.html │ │ ├── clCreateCommandQueue.html │ │ ├── clCreateContext.html │ │ ├── clCreateContextFromType.html │ │ ├── clCreateEventFromGLsyncKHR.html │ │ ├── clCreateFromD3D10BufferKHR.html │ │ ├── clCreateFromD3D10Texture2DKHR.html │ │ ├── clCreateFromD3D10Texture3DKHR.html │ │ ├── clCreateFromGLBuffer.html │ │ ├── clCreateFromGLRenderbuffer.html │ │ ├── clCreateFromGLTexture2D.html │ │ ├── clCreateFromGLTexture3D.html │ │ ├── clCreateImage2D.html │ │ ├── clCreateImage3D.html │ │ ├── clCreateKernel.html │ │ ├── clCreateKernelsInProgram.html │ │ ├── clCreateProgramWithBinary.html │ │ ├── clCreateProgramWithSource.html │ │ ├── clCreateSampler.html │ │ ├── clCreateSubBuffer.html │ │ ├── clCreateUserEvent.html │ │ ├── clEnqueueAcquireD3D10ObjectsKHR.html │ │ ├── clEnqueueAcquireGLObjects.html │ │ ├── clEnqueueBarrier.html │ │ ├── clEnqueueCopyBuffer.html │ │ ├── clEnqueueCopyBufferRect.html │ │ ├── clEnqueueCopyBufferToImage.html │ │ ├── clEnqueueCopyImage.html │ │ ├── clEnqueueCopyImageToBuffer.html │ │ ├── clEnqueueMapBuffer.html │ │ ├── clEnqueueMapImage.html │ │ ├── clEnqueueMarker.html │ │ ├── clEnqueueNDRangeKernel.html │ │ ├── clEnqueueNativeKernel.html │ │ ├── clEnqueueReadBuffer.html │ │ ├── clEnqueueReadBufferRect.html │ │ ├── clEnqueueReadImage.html │ │ ├── clEnqueueReleaseD3D10ObjectsKHR.html │ │ ├── clEnqueueReleaseGLObjects.html │ │ ├── clEnqueueTask.html │ │ ├── clEnqueueUnmapMemObject.html │ │ ├── clEnqueueWaitForEvents.html │ │ ├── clEnqueueWriteBuffer.html │ │ ├── clEnqueueWriteBufferRect.html │ │ ├── clEnqueueWriteImage.html │ │ ├── clFinish.html │ │ ├── clFlush.html │ │ ├── clGetCommandQueueInfo.html │ │ ├── clGetContextInfo.html │ │ ├── clGetDeviceIDs.html │ │ ├── clGetDeviceIDsFromD3D10KHR.html │ │ ├── clGetDeviceInfo.html │ │ ├── clGetEventInfo.html │ │ ├── clGetEventProfilingInfo.html │ │ ├── clGetExtensionFunctionAddress.html │ │ ├── clGetGLContextInfoKHR.html │ │ ├── clGetGLObjectInfo.html │ │ ├── clGetGLTextureInfo.html │ │ ├── clGetImageInfo.html │ │ ├── clGetKernelInfo.html │ │ ├── clGetKernelWorkGroupInfo.html │ │ ├── clGetMemObjectInfo.html │ │ ├── clGetPlatformIDs.html │ │ ├── clGetPlatformInfo.html │ │ ├── clGetProgramBuildInfo.html │ │ ├── clGetProgramInfo.html │ │ ├── clGetSamplerInfo.html │ │ ├── clGetSupportedImageFormats.html │ │ ├── clReleaseCommandQueue.html │ │ ├── clReleaseContext.html │ │ ├── clReleaseEvent.html │ │ ├── clReleaseKernel.html │ │ ├── clReleaseMemObject.html │ │ ├── clReleaseProgram.html │ │ ├── clReleaseSampler.html │ │ ├── clRetainCommandQueue.html │ │ ├── clRetainContext.html │ │ ├── clRetainEvent.html │ │ ├── clRetainKernel.html │ │ ├── clRetainMemObject.html │ │ ├── clRetainProgram.html │ │ ├── clRetainSampler.html │ │ ├── clSetCommandQueueProperty.html │ │ ├── clSetEventCallback.html │ │ ├── clSetKernelArg.html │ │ ├── clSetMemObjectDestructorCallback.html │ │ ├── clSetUserEventStatus.html │ │ ├── clUnloadCompiler.html │ │ ├── clWaitForEvents.html │ │ ├── cl_image_format.html │ │ ├── cl_khr_3d_image_writes.html │ │ ├── cl_khr_d3d10_sharing.html │ │ ├── cl_khr_fp16.html │ │ ├── cl_khr_fp64.html │ │ ├── cl_khr_int64_base_atomics.html │ │ ├── cl_khr_int64_extended_atomics.html │ │ ├── clamp.html │ │ ├── classDiagram.html │ │ ├── classDiagram.jpg │ │ ├── clz.html │ │ ├── commonFunctions.html │ │ ├── commonMax.html │ │ ├── commonMin.html │ │ ├── constant.html │ │ ├── convert_T.html │ │ ├── copyright.inc.xsl │ │ ├── copysign.html │ │ ├── cos.html │ │ ├── cross.html │ │ ├── d3d10_sharing.html │ │ ├── dataTypes.html │ │ ├── degrees.html │ │ ├── distance.html │ │ ├── divide.html │ │ ├── dot.html │ │ ├── enums.html │ │ ├── erf.html │ │ ├── exp.html │ │ ├── explicitMemoryFenceFunctions.html │ │ ├── fabs.html │ │ ├── fast_distance.html │ │ ├── fast_length.html │ │ ├── fast_normalize.html │ │ ├── fdim.html │ │ ├── floor.html │ │ ├── fma.html │ │ ├── fmax.html │ │ ├── fmin.html │ │ ├── fmod.html │ │ ├── fract.html │ │ ├── frexp.html │ │ ├── functionQualifiers.html │ │ ├── geometricFunctions.html │ │ ├── get_global_id.html │ │ ├── get_global_offset.html │ │ ├── get_global_size.html │ │ ├── get_group_id.html │ │ ├── get_image_channel_data_type.html │ │ ├── get_image_channel_order.html │ │ ├── get_image_depth.html │ │ ├── get_image_dim.html │ │ ├── get_image_height.html │ │ ├── get_image_width.html │ │ ├── get_local_id.html │ │ ├── get_local_size.html │ │ ├── get_num_groups.html │ │ ├── get_work_dim.html │ │ ├── gl_event.html │ │ ├── gl_sharing.html │ │ ├── global.html │ │ ├── hadd.html │ │ ├── headBackground-bigger.jpg │ │ ├── headBackground.jpg │ │ ├── hypot.html │ │ ├── ilogb.html │ │ ├── imageFunctions.html │ │ ├── index.html │ │ ├── integerClamp.html │ │ ├── integerFunctions.html │ │ ├── integerMax.html │ │ ├── isequal.html │ │ ├── isfinite.html │ │ ├── isgreater.html │ │ ├── isgreaterequal.html │ │ ├── isinf.html │ │ ├── isless.html │ │ ├── islessequal.html │ │ ├── islessgreater.html │ │ ├── isnan.html │ │ ├── isnormal.html │ │ ├── isnotequal.html │ │ ├── isordered.html │ │ ├── isunordered.html │ │ ├── ldexp.html │ │ ├── length.html │ │ ├── lgamma.html │ │ ├── local.html │ │ ├── log.html │ │ ├── macroLimits.html │ │ ├── mad.html │ │ ├── mad24.html │ │ ├── mad_hi.html │ │ ├── mad_sat.html │ │ ├── mag.html │ │ ├── mathConstants.html │ │ ├── mathFunctions.html │ │ ├── mem_fence.html │ │ ├── miscVectorFunctions.html │ │ ├── mix.html │ │ ├── modf.html │ │ ├── mul24.html │ │ ├── mul_hi.html │ │ ├── nan.html │ │ ├── nextafter.html │ │ ├── normalize.html │ │ ├── oclRefPages-Title.html │ │ ├── opencl-man.xsl │ │ ├── operators.html │ │ ├── otherDataTypes.html │ │ ├── pageNumberLookup.rb │ │ ├── pdficon_small1.gif │ │ ├── pow.html │ │ ├── prefetch.html │ │ ├── preprocessorDirectives.html │ │ ├── present.css │ │ ├── private.html │ │ ├── qualifiers.html │ │ ├── radians.html │ │ ├── read_imagef2d.html │ │ ├── read_imagef3d.html │ │ ├── read_imageh2d.html │ │ ├── read_imageh3d.html │ │ ├── read_imagei2d.html │ │ ├── read_imagei3d.html │ │ ├── read_mem_fence.html │ │ ├── recip.html │ │ ├── relationalFunctions.html │ │ ├── remainder.html │ │ ├── remquo.html │ │ ├── reservedDataTypes.html │ │ ├── restrictions.html │ │ ├── rint.html │ │ ├── rootn.html │ │ ├── rotate.html │ │ ├── round.html │ │ ├── sampler_t.html │ │ ├── scalarDataTypes.html │ │ ├── select.html │ │ ├── shuffle.html │ │ ├── sign.html │ │ ├── signbit.html │ │ ├── sin.html │ │ ├── smoothstep.html │ │ ├── sqrt.html │ │ ├── step.html │ │ ├── style.css │ │ ├── styles-css.xsl │ │ ├── sub_sat.html │ │ ├── supportedImageFormats.html │ │ ├── tan.html │ │ ├── tgamma.html │ │ ├── trunc.html │ │ ├── undohtml.css │ │ ├── upsample.html │ │ ├── vec_step.html │ │ ├── vectorDataLoadandStoreFunctions.html │ │ ├── vectorDataTypes.html │ │ ├── vload_half.html │ │ ├── vload_halfn.html │ │ ├── vloada_halfn.html │ │ ├── vloadn.html │ │ ├── vstore_half.html │ │ ├── vstore_halfn.html │ │ ├── vstorea_halfn.html │ │ ├── vstoren.html │ │ ├── wait_group_events.html │ │ ├── workItemFunctions.html │ │ ├── write_image.html │ │ ├── write_imageh2d.html │ │ ├── write_imageh3d.html │ │ └── write_mem_fence.html ├── 1.2 │ └── docs │ │ ├── OpenCL-1.2-refcard.pdf │ │ └── man │ │ ├── EXTENSION.xml │ │ ├── FP_CONTRACT.xml │ │ ├── README │ │ ├── abs.xml │ │ ├── abstractDataTypes.xml │ │ ├── accessMappedInc.xml │ │ ├── accessQualifiers.xml │ │ ├── acos.xml │ │ ├── add_sat.xml │ │ ├── any.xml │ │ ├── as_typen.xml │ │ ├── asin.xml │ │ ├── asyncCopyFunctions.xml │ │ ├── async_work_group_copy.xml │ │ ├── async_work_group_strided_copy.xml │ │ ├── atan.xml │ │ ├── atom_add.xml │ │ ├── atom_and.xml │ │ ├── atom_cmpxchg.xml │ │ ├── atom_dec.xml │ │ ├── atom_inc.xml │ │ ├── atom_max.xml │ │ ├── atom_min.xml │ │ ├── atom_or.xml │ │ ├── atom_sub.xml │ │ ├── atom_xchg.xml │ │ ├── atom_xor.xml │ │ ├── atomicFunctions.xml │ │ ├── atomic_add.xml │ │ ├── atomic_and.xml │ │ ├── atomic_cmpxchg.xml │ │ ├── atomic_dec.xml │ │ ├── atomic_inc.xml │ │ ├── atomic_max.xml │ │ ├── atomic_min.xml │ │ ├── atomic_or.xml │ │ ├── atomic_sub.xml │ │ ├── atomic_xchg.xml │ │ ├── atomic_xor.xml │ │ ├── attribute.xml │ │ ├── attributes-blocksAndControlFlow.xml │ │ ├── attributes-types.xml │ │ ├── attributes-variables.xml │ │ ├── barrier.xml │ │ ├── bitselect.xml │ │ ├── buildOptionsInc.xml │ │ ├── cbrt.xml │ │ ├── ceil.xml │ │ ├── clBuildProgram.xml │ │ ├── clCompileProgram.xml │ │ ├── clCreateBuffer.xml │ │ ├── clCreateCommandQueue.xml │ │ ├── clCreateContext.xml │ │ ├── clCreateContextFromType.xml │ │ ├── clCreateEventFromGLsyncKHR.xml │ │ ├── clCreateFromD3D10BufferKHR.xml │ │ ├── clCreateFromD3D10Texture2DKHR.xml │ │ ├── clCreateFromD3D10Texture3DKHR.xml │ │ ├── clCreateFromD3D11BufferKHR.xml │ │ ├── clCreateFromD3D11Texture2DKHR.xml │ │ ├── clCreateFromD3D11Texture3DKHR.xml │ │ ├── clCreateFromDX9MediaSurfaceKHR.xml │ │ ├── clCreateFromGLBuffer.xml │ │ ├── clCreateFromGLRenderbuffer.xml │ │ ├── clCreateFromGLTexture.xml │ │ ├── clCreateImage.xml │ │ ├── clCreateKernel.xml │ │ ├── clCreateKernelsInProgram.xml │ │ ├── clCreateProgramWithBinary.xml │ │ ├── clCreateProgramWithBuiltInKernels.xml │ │ ├── clCreateProgramWithSource.xml │ │ ├── clCreateSampler.xml │ │ ├── clCreateSubBuffer.xml │ │ ├── clCreateSubDevices.xml │ │ ├── clCreateUserEvent.xml │ │ ├── clCreate_memflagsInc.xml │ │ ├── clEnqueueAcquireD3D10ObjectsKHR.xml │ │ ├── clEnqueueAcquireD3D11ObjectsKHR.xml │ │ ├── clEnqueueAcquireDX9MediaSurfacesKHR.xml │ │ ├── clEnqueueAcquireGLObjects.xml │ │ ├── clEnqueueBarrierWithWaitList.xml │ │ ├── clEnqueueCopyBuffer.xml │ │ ├── clEnqueueCopyBufferRect.xml │ │ ├── clEnqueueCopyBufferToImage.xml │ │ ├── clEnqueueCopyImage.xml │ │ ├── clEnqueueCopyImageToBuffer.xml │ │ ├── clEnqueueFillBuffer.xml │ │ ├── clEnqueueFillImage.xml │ │ ├── clEnqueueMapBuffer.xml │ │ ├── clEnqueueMapImage.xml │ │ ├── clEnqueueMarkerWithWaitList.xml │ │ ├── clEnqueueMigrateMemObjects.xml │ │ ├── clEnqueueNDRangeKernel.xml │ │ ├── clEnqueueNativeKernel.xml │ │ ├── clEnqueueReadBuffer.xml │ │ ├── clEnqueueReadBufferRect.xml │ │ ├── clEnqueueReadImage.xml │ │ ├── clEnqueueReleaseD3D10ObjectsKHR.xml │ │ ├── clEnqueueReleaseD3D11ObjectsKHR.xml │ │ ├── clEnqueueReleaseDX9MediaSurfacesKHR.xml │ │ ├── clEnqueueReleaseGLObjects.xml │ │ ├── clEnqueueTask.xml │ │ ├── clEnqueueUnmapMemObject.xml │ │ ├── clEnqueueWriteBuffer.xml │ │ ├── clEnqueueWriteBufferRect.xml │ │ ├── clEnqueueWriteImage.xml │ │ ├── clFinish.xml │ │ ├── clFlush.xml │ │ ├── clGetCommandQueueInfo.xml │ │ ├── clGetContextInfo.xml │ │ ├── clGetDeviceIDs.xml │ │ ├── clGetDeviceIDsFromD3D10KHR.xml │ │ ├── clGetDeviceIDsFromD3D11KHR.xml │ │ ├── clGetDeviceIDsFromDX9MediaAdapterKHR.xml │ │ ├── clGetDeviceInfo.xml │ │ ├── clGetEventInfo.xml │ │ ├── clGetEventProfilingInfo.xml │ │ ├── clGetExtensionFunctionAddressForPlatform.xml │ │ ├── clGetGLContextInfoKHR.xml │ │ ├── clGetGLObjectInfo.xml │ │ ├── clGetGLTextureInfo.xml │ │ ├── clGetImageInfo.xml │ │ ├── clGetKernelArgInfo.xml │ │ ├── clGetKernelInfo.xml │ │ ├── clGetKernelWorkGroupInfo.xml │ │ ├── clGetMemObjectInfo.xml │ │ ├── clGetPlatformIDs.xml │ │ ├── clGetPlatformInfo.xml │ │ ├── clGetProgramBuildInfo.xml │ │ ├── clGetProgramInfo.xml │ │ ├── clGetSamplerInfo.xml │ │ ├── clGetSupportedImageFormats.xml │ │ ├── clIcdGetPlatformIDsKHR.xml │ │ ├── clLinkProgram.xml │ │ ├── clReleaseCommandQueue.xml │ │ ├── clReleaseContext.xml │ │ ├── clReleaseDevice.xml │ │ ├── clReleaseEvent.xml │ │ ├── clReleaseKernel.xml │ │ ├── clReleaseMemObject.xml │ │ ├── clReleaseProgram.xml │ │ ├── clReleaseSampler.xml │ │ ├── clRetainCommandQueue.xml │ │ ├── clRetainContext.xml │ │ ├── clRetainDevice.xml │ │ ├── clRetainEvent.xml │ │ ├── clRetainKernel.xml │ │ ├── clRetainMemObject.xml │ │ ├── clRetainProgram.xml │ │ ├── clRetainSampler.xml │ │ ├── clSetEventCallback.xml │ │ ├── clSetKernelArg.xml │ │ ├── clSetMemObjectDestructorCallback.xml │ │ ├── clSetUserEventStatus.xml │ │ ├── clUnloadPlatformCompiler.xml │ │ ├── clWaitForEvents.xml │ │ ├── cl_image_desc.xml │ │ ├── cl_image_format.xml │ │ ├── cl_khr_3d_image_writes.xml │ │ ├── cl_khr_d3d10_sharing.xml │ │ ├── cl_khr_d3d11_sharing.xml │ │ ├── cl_khr_dx9_media_sharing.xml │ │ ├── cl_khr_fp16.xml │ │ ├── cl_khr_fp64.xml │ │ ├── cl_khr_gl_event.xml │ │ ├── cl_khr_gl_sharing.xml │ │ ├── cl_khr_icd.xml │ │ ├── cl_khr_int64_base_atomics.xml │ │ ├── cl_khr_int64_extended_atomics.xml │ │ ├── clamp.xml │ │ ├── classDiagram.xml │ │ ├── clz.xml │ │ ├── commonFunctions.xml │ │ ├── commonFunctionsInc.xml │ │ ├── commonMax.xml │ │ ├── commonMin.xml │ │ ├── constant.xml │ │ ├── convert_T.xml │ │ ├── copysign.xml │ │ ├── cos.xml │ │ ├── cross.xml │ │ ├── dataTypes.xml │ │ ├── degrees.xml │ │ ├── deprecated.xml │ │ ├── distance.xml │ │ ├── divide.xml │ │ ├── dot.xml │ │ ├── enums.xml │ │ ├── erf.xml │ │ ├── exp.xml │ │ ├── explicitMemoryFenceFunctions.xml │ │ ├── fabs.xml │ │ ├── fast_distance.xml │ │ ├── fast_length.xml │ │ ├── fast_normalize.xml │ │ ├── fdim.xml │ │ ├── floor.xml │ │ ├── fma.xml │ │ ├── fmax.xml │ │ ├── fmin.xml │ │ ├── fmod.xml │ │ ├── fract.xml │ │ ├── frexp.xml │ │ ├── functionQualifiers.xml │ │ ├── geometricFunctions.xml │ │ ├── geometricFunctionsInc.xml │ │ ├── get_global_id.xml │ │ ├── get_global_offset.xml │ │ ├── get_global_size.xml │ │ ├── get_group_id.xml │ │ ├── get_image_array_size.xml │ │ ├── get_image_channel_data_type.xml │ │ ├── get_image_channel_order.xml │ │ ├── get_image_depth.xml │ │ ├── get_image_dim.xml │ │ ├── get_image_height.xml │ │ ├── get_image_width.xml │ │ ├── get_local_id.xml │ │ ├── get_local_size.xml │ │ ├── get_num_groups.xml │ │ ├── get_work_dim.xml │ │ ├── gl_formatsInc.xml │ │ ├── gl_lifetimeInc.xml │ │ ├── gl_syncInc.xml │ │ ├── global.xml │ │ ├── hadd.xml │ │ ├── hypot.xml │ │ ├── ilogb.xml │ │ ├── imageFunctions.xml │ │ ├── imageFunctionsInc.xml │ │ ├── imageMappingInc.xml │ │ ├── integerClamp.xml │ │ ├── integerFunctions.xml │ │ ├── integerFunctionsInc.xml │ │ ├── integerMax.xml │ │ ├── isequal.xml │ │ ├── isfinite.xml │ │ ├── isgreater.xml │ │ ├── isgreaterequal.xml │ │ ├── isinf.xml │ │ ├── isless.xml │ │ ├── islessequal.xml │ │ ├── islessgreater.xml │ │ ├── isnan.xml │ │ ├── isnormal.xml │ │ ├── isnotequal.xml │ │ ├── isordered.xml │ │ ├── isunordered.xml │ │ ├── ldexp.xml │ │ ├── length.xml │ │ ├── lgamma.xml │ │ ├── local.xml │ │ ├── log.xml │ │ ├── macroLimits.xml │ │ ├── mad.xml │ │ ├── mad24.xml │ │ ├── mad_hi.xml │ │ ├── mad_sat.xml │ │ ├── mag.xml │ │ ├── mathConstants.xml │ │ ├── mathFunctions.xml │ │ ├── mathFunctionsInc.xml │ │ ├── mediaSurfaceFormatsInc.xml │ │ ├── mem_fence.xml │ │ ├── miscVectorFunctions.xml │ │ ├── mix.xml │ │ ├── modf.xml │ │ ├── mul24.xml │ │ ├── mul_hi.xml │ │ ├── nan.xml │ │ ├── nextafter.xml │ │ ├── normalize.xml │ │ ├── operators.xml │ │ ├── otherDataTypes.xml │ │ ├── popcount.xml │ │ ├── pow.xml │ │ ├── prefetch.xml │ │ ├── preprocessorDirectives.xml │ │ ├── printfFunction.xml │ │ ├── private.xml │ │ ├── qualifierExampleInc.xml │ │ ├── qualifierInc.xml │ │ ├── qualifiers.xml │ │ ├── radians.xml │ │ ├── read_imagef1d.xml │ │ ├── read_imagef2d.xml │ │ ├── read_imagef3d.xml │ │ ├── read_imageh1d.xml │ │ ├── read_imageh2d.xml │ │ ├── read_imageh3d.xml │ │ ├── read_imagei1d.xml │ │ ├── read_imagei2d.xml │ │ ├── read_imagei3d.xml │ │ ├── read_mem_fence.xml │ │ ├── recip.xml │ │ ├── relationalFunctions.xml │ │ ├── relationalFunctionsGEN.xml │ │ ├── relationalFunctionsIGEN.xml │ │ ├── relationalFunctionsInc1.xml │ │ ├── relationalFunctionsInc2.xml │ │ ├── relationalFunctionsInc3.xml │ │ ├── relationalFunctionsUGEN.xml │ │ ├── remainder.xml │ │ ├── remquo.xml │ │ ├── reservedDataTypes.xml │ │ ├── restrictions.xml │ │ ├── rint.xml │ │ ├── rootn.xml │ │ ├── rotate.xml │ │ ├── round.xml │ │ ├── sampler_t.xml │ │ ├── scalarDataTypes.xml │ │ ├── select.xml │ │ ├── sharingD3D10Inc.xml │ │ ├── sharingD3D11Inc.xml │ │ ├── shuffle.xml │ │ ├── sign.xml │ │ ├── signbit.xml │ │ ├── sin.xml │ │ ├── smoothstep.xml │ │ ├── sqrt.xml │ │ ├── step.xml │ │ ├── storageQualifiers.xml │ │ ├── sub_sat.xml │ │ ├── supportedImageFormats.xml │ │ ├── tan.xml │ │ ├── tgamma.xml │ │ ├── trunc.xml │ │ ├── upsample.xml │ │ ├── vec_step.xml │ │ ├── vectorDataLoadandStoreFunctions.xml │ │ ├── vectorDataTypes.xml │ │ ├── vectorFunctionsInc.xml │ │ ├── vectorHalfFunctionsInc.xml │ │ ├── vload_half.xml │ │ ├── vload_halfn.xml │ │ ├── vloada_halfn.xml │ │ ├── vloadn.xml │ │ ├── vstore_half.xml │ │ ├── vstore_halfn.xml │ │ ├── vstorea_halfn.xml │ │ ├── vstoren.xml │ │ ├── wait_group_events.xml │ │ ├── workItemFunctions.xml │ │ ├── write_image1d.xml │ │ ├── write_image2d.xml │ │ ├── write_image3d.xml │ │ ├── write_mem_fence.xml │ │ └── xhtml │ │ ├── EXTENSION.html │ │ ├── FP_CONTRACT.html │ │ ├── KhronosLogo.jpg │ │ ├── Makefile │ │ ├── OpenCL_Logo.jpg │ │ ├── OpenCL_Logo120.jpg │ │ ├── Opencl_header.html │ │ ├── Opencl_tofc.html │ │ ├── abs.html │ │ ├── abstractDataTypes.html │ │ ├── accessQualifiers.html │ │ ├── acos.html │ │ ├── add_sat.html │ │ ├── any.html │ │ ├── as_typen.html │ │ ├── asin.html │ │ ├── asyncCopyFunctions.html │ │ ├── async_work_group_copy.html │ │ ├── async_work_group_strided_copy.html │ │ ├── atan.html │ │ ├── atom_add.html │ │ ├── atom_and.html │ │ ├── atom_cmpxchg.html │ │ ├── atom_dec.html │ │ ├── atom_inc.html │ │ ├── atom_max.html │ │ ├── atom_min.html │ │ ├── atom_or.html │ │ ├── atom_sub.html │ │ ├── atom_xchg.html │ │ ├── atom_xor.html │ │ ├── atomicFunctions.html │ │ ├── atomic_add.html │ │ ├── atomic_and.html │ │ ├── atomic_cmpxchg.html │ │ ├── atomic_dec.html │ │ ├── atomic_inc.html │ │ ├── atomic_max.html │ │ ├── atomic_min.html │ │ ├── atomic_or.html │ │ ├── atomic_sub.html │ │ ├── atomic_xchg.html │ │ ├── atomic_xor.html │ │ ├── attribute.html │ │ ├── attributes-blocksAndControlFlow.html │ │ ├── attributes-types.html │ │ ├── attributes-variables.html │ │ ├── barrier.html │ │ ├── bitselect.html │ │ ├── bullets-contract.gif │ │ ├── bullets-end.gif │ │ ├── bullets-expand.gif │ │ ├── cbrt.html │ │ ├── ceil.html │ │ ├── clBuildProgram.html │ │ ├── clCompileProgram.html │ │ ├── clCreateBuffer.html │ │ ├── clCreateCommandQueue.html │ │ ├── clCreateContext.html │ │ ├── clCreateContextFromType.html │ │ ├── clCreateEventFromGLsyncKHR.html │ │ ├── clCreateFromD3D10BufferKHR.html │ │ ├── clCreateFromD3D10Texture2DKHR.html │ │ ├── clCreateFromD3D10Texture3DKHR.html │ │ ├── clCreateFromD3D11BufferKHR.html │ │ ├── clCreateFromD3D11Texture2DKHR.html │ │ ├── clCreateFromD3D11Texture3DKHR.html │ │ ├── clCreateFromDX9MediaSurfaceKHR.html │ │ ├── clCreateFromGLBuffer.html │ │ ├── clCreateFromGLRenderbuffer.html │ │ ├── clCreateFromGLTexture.html │ │ ├── clCreateImage.html │ │ ├── clCreateKernel.html │ │ ├── clCreateKernelsInProgram.html │ │ ├── clCreateProgramWithBinary.html │ │ ├── clCreateProgramWithBuiltInKernels.html │ │ ├── clCreateProgramWithSource.html │ │ ├── clCreateSampler.html │ │ ├── clCreateSubBuffer.html │ │ ├── clCreateSubDevices.html │ │ ├── clCreateUserEvent.html │ │ ├── clEnqueueAcquireD3D10ObjectsKHR.html │ │ ├── clEnqueueAcquireD3D11ObjectsKHR.html │ │ ├── clEnqueueAcquireDX9MediaSurfacesKHR.html │ │ ├── clEnqueueAcquireGLObjects.html │ │ ├── clEnqueueBarrierWithWaitList.html │ │ ├── clEnqueueCopyBuffer.html │ │ ├── clEnqueueCopyBufferRect.html │ │ ├── clEnqueueCopyBufferToImage.html │ │ ├── clEnqueueCopyImage.html │ │ ├── clEnqueueCopyImageToBuffer.html │ │ ├── clEnqueueFillBuffer.html │ │ ├── clEnqueueFillImage.html │ │ ├── clEnqueueMapBuffer.html │ │ ├── clEnqueueMapImage.html │ │ ├── clEnqueueMarkerWithWaitList.html │ │ ├── clEnqueueMigrateMemObjects.html │ │ ├── clEnqueueNDRangeKernel.html │ │ ├── clEnqueueNativeKernel.html │ │ ├── clEnqueueReadBuffer.html │ │ ├── clEnqueueReadBufferRect.html │ │ ├── clEnqueueReadImage.html │ │ ├── clEnqueueReleaseD3D10ObjectsKHR.html │ │ ├── clEnqueueReleaseD3D11ObjectsKHR.html │ │ ├── clEnqueueReleaseDX9MediaSurfacesKHR.html │ │ ├── clEnqueueReleaseGLObjects.html │ │ ├── clEnqueueTask.html │ │ ├── clEnqueueUnmapMemObject.html │ │ ├── clEnqueueWriteBuffer.html │ │ ├── clEnqueueWriteBufferRect.html │ │ ├── clEnqueueWriteImage.html │ │ ├── clFinish.html │ │ ├── clFlush.html │ │ ├── clGetCommandQueueInfo.html │ │ ├── clGetContextInfo.html │ │ ├── clGetDeviceIDs.html │ │ ├── clGetDeviceIDsFromD3D10KHR.html │ │ ├── clGetDeviceIDsFromD3D11KHR.html │ │ ├── clGetDeviceIDsFromDX9MediaAdapterKHR.html │ │ ├── clGetDeviceInfo.html │ │ ├── clGetEventInfo.html │ │ ├── clGetEventProfilingInfo.html │ │ ├── clGetExtensionFunctionAddressForPlatform.html │ │ ├── clGetGLContextInfoKHR.html │ │ ├── clGetGLObjectInfo.html │ │ ├── clGetGLTextureInfo.html │ │ ├── clGetImageInfo.html │ │ ├── clGetKernelArgInfo.html │ │ ├── clGetKernelInfo.html │ │ ├── clGetKernelWorkGroupInfo.html │ │ ├── clGetMemObjectInfo.html │ │ ├── clGetPlatformIDs.html │ │ ├── clGetPlatformInfo.html │ │ ├── clGetProgramBuildInfo.html │ │ ├── clGetProgramInfo.html │ │ ├── clGetSamplerInfo.html │ │ ├── clGetSupportedImageFormats.html │ │ ├── clIcdGetPlatformIDsKHR.html │ │ ├── clLinkProgram.html │ │ ├── clReleaseCommandQueue.html │ │ ├── clReleaseContext.html │ │ ├── clReleaseDevice.html │ │ ├── clReleaseEvent.html │ │ ├── clReleaseKernel.html │ │ ├── clReleaseMemObject.html │ │ ├── clReleaseProgram.html │ │ ├── clReleaseSampler.html │ │ ├── clRetainCommandQueue.html │ │ ├── clRetainContext.html │ │ ├── clRetainDevice.html │ │ ├── clRetainEvent.html │ │ ├── clRetainKernel.html │ │ ├── clRetainMemObject.html │ │ ├── clRetainProgram.html │ │ ├── clRetainSampler.html │ │ ├── clSetEventCallback.html │ │ ├── clSetKernelArg.html │ │ ├── clSetMemObjectDestructorCallback.html │ │ ├── clSetUserEventStatus.html │ │ ├── clUnloadPlatformCompiler.html │ │ ├── clWaitForEvents.html │ │ ├── cl_image_desc.html │ │ ├── cl_image_format.html │ │ ├── cl_khr_3d_image_writes.html │ │ ├── cl_khr_d3d10_sharing.html │ │ ├── cl_khr_d3d11_sharing.html │ │ ├── cl_khr_dx9_media_sharing.html │ │ ├── cl_khr_fp16.html │ │ ├── cl_khr_fp64.html │ │ ├── cl_khr_gl_event.html │ │ ├── cl_khr_gl_sharing.html │ │ ├── cl_khr_icd.html │ │ ├── cl_khr_int64_base_atomics.html │ │ ├── cl_khr_int64_extended_atomics.html │ │ ├── clamp.html │ │ ├── classDiagram.html │ │ ├── classDiagram.jpg │ │ ├── clz.html │ │ ├── commonFunctions.html │ │ ├── commonMax.html │ │ ├── commonMin.html │ │ ├── constant.html │ │ ├── convert_T.html │ │ ├── copyright.inc.xsl │ │ ├── copysign.html │ │ ├── cos.html │ │ ├── cross.html │ │ ├── dataTypes.html │ │ ├── degrees.html │ │ ├── deprecated.html │ │ ├── distance.html │ │ ├── divide.html │ │ ├── dot.html │ │ ├── enums.html │ │ ├── erf.html │ │ ├── exp.html │ │ ├── explicitMemoryFenceFunctions.html │ │ ├── fabs.html │ │ ├── fast_distance.html │ │ ├── fast_length.html │ │ ├── fast_normalize.html │ │ ├── fdim.html │ │ ├── floor.html │ │ ├── fma.html │ │ ├── fmax.html │ │ ├── fmin.html │ │ ├── fmod.html │ │ ├── fract.html │ │ ├── frexp.html │ │ ├── functionQualifiers.html │ │ ├── geometricFunctions.html │ │ ├── get_global_id.html │ │ ├── get_global_offset.html │ │ ├── get_global_size.html │ │ ├── get_group_id.html │ │ ├── get_image_array_size.html │ │ ├── get_image_channel_data_type.html │ │ ├── get_image_channel_order.html │ │ ├── get_image_depth.html │ │ ├── get_image_dim.html │ │ ├── get_image_height.html │ │ ├── get_image_width.html │ │ ├── get_local_id.html │ │ ├── get_local_size.html │ │ ├── get_num_groups.html │ │ ├── get_work_dim.html │ │ ├── global.html │ │ ├── hadd.html │ │ ├── headBackground-bigger.jpg │ │ ├── headBackground.jpg │ │ ├── hypot.html │ │ ├── ilogb.html │ │ ├── imageDescriptor.html │ │ ├── imageFunctions.html │ │ ├── index.html │ │ ├── integerClamp.html │ │ ├── integerFunctions.html │ │ ├── integerMax.html │ │ ├── isequal.html │ │ ├── isfinite.html │ │ ├── isgreater.html │ │ ├── isgreaterequal.html │ │ ├── isinf.html │ │ ├── isless.html │ │ ├── islessequal.html │ │ ├── islessgreater.html │ │ ├── isnan.html │ │ ├── isnormal.html │ │ ├── isnotequal.html │ │ ├── isordered.html │ │ ├── isunordered.html │ │ ├── ldexp.html │ │ ├── length.html │ │ ├── lgamma.html │ │ ├── local.html │ │ ├── log.html │ │ ├── macroLimits.html │ │ ├── mad.html │ │ ├── mad24.html │ │ ├── mad_hi.html │ │ ├── mad_sat.html │ │ ├── mag.html │ │ ├── mathConstants.html │ │ ├── mathFunctions.html │ │ ├── mem_fence.html │ │ ├── miscVectorFunctions.html │ │ ├── mix.html │ │ ├── modf.html │ │ ├── mul24.html │ │ ├── mul_hi.html │ │ ├── nan.html │ │ ├── nextafter.html │ │ ├── normalize.html │ │ ├── oclRefPages-Title.html │ │ ├── opencl-man.xsl │ │ ├── operators.html │ │ ├── otherDataTypes.html │ │ ├── pageNumberLookup.rb │ │ ├── pdficon_small1.gif │ │ ├── popcount.html │ │ ├── pow.html │ │ ├── prefetch.html │ │ ├── preprocessorDirectives.html │ │ ├── present.css │ │ ├── printfFunction.html │ │ ├── private.html │ │ ├── qualifiers.html │ │ ├── radians.html │ │ ├── read_imagef1d.html │ │ ├── read_imagef2d.html │ │ ├── read_imagef3d.html │ │ ├── read_imageh1d.html │ │ ├── read_imageh2d.html │ │ ├── read_imageh3d.html │ │ ├── read_imagei1d.html │ │ ├── read_imagei2d.html │ │ ├── read_imagei3d.html │ │ ├── read_mem_fence.html │ │ ├── recip.html │ │ ├── relationalFunctions.html │ │ ├── remainder.html │ │ ├── remquo.html │ │ ├── reservedDataTypes.html │ │ ├── restrictions.html │ │ ├── rint.html │ │ ├── rootn.html │ │ ├── rotate.html │ │ ├── round.html │ │ ├── sampler_t.html │ │ ├── scalarDataTypes.html │ │ ├── select.html │ │ ├── shuffle.html │ │ ├── sign.html │ │ ├── signbit.html │ │ ├── sin.html │ │ ├── smoothstep.html │ │ ├── sqrt.html │ │ ├── step.html │ │ ├── storageQualifiers.html │ │ ├── style.css │ │ ├── styles-css.xsl │ │ ├── sub_sat.html │ │ ├── supportedImageFormats.html │ │ ├── tan.html │ │ ├── tgamma.html │ │ ├── trunc.html │ │ ├── undohtml.css │ │ ├── upsample.html │ │ ├── vec_step.html │ │ ├── vectorDataLoadandStoreFunctions.html │ │ ├── vectorDataTypes.html │ │ ├── vload_half.html │ │ ├── vload_halfn.html │ │ ├── vloada_halfn.html │ │ ├── vloadn.html │ │ ├── vstore_half.html │ │ ├── vstore_halfn.html │ │ ├── vstorea_halfn.html │ │ ├── vstoren.html │ │ ├── wait_group_events.html │ │ ├── workItemFunctions.html │ │ ├── write_image1d.html │ │ ├── write_image2d.html │ │ ├── write_image3d.html │ │ └── write_mem_fence.html ├── 2.0 │ └── docs │ │ ├── OpenCL-2.0-refcard.pdf │ │ └── man │ │ ├── ATOMIC_VAR_INIT.xml │ │ ├── EXTENSION.xml │ │ ├── FP_CONTRACT.xml │ │ ├── README │ │ ├── abs.xml │ │ ├── abstractDataTypes.xml │ │ ├── accessMappedInc.xml │ │ ├── accessQualifiers.xml │ │ ├── acos.xml │ │ ├── add_sat.xml │ │ ├── addressSpaceQualifierFuncs.xml │ │ ├── any.xml │ │ ├── as_typen.xml │ │ ├── asin.xml │ │ ├── asyncCopyFunctions.xml │ │ ├── asyncCopyInc.xml │ │ ├── async_work_group_copy.xml │ │ ├── async_work_group_strided_copy.xml │ │ ├── atan.xml │ │ ├── atom_add.xml │ │ ├── atom_and.xml │ │ ├── atom_cmpxchg.xml │ │ ├── atom_dec.xml │ │ ├── atom_inc.xml │ │ ├── atom_max.xml │ │ ├── atom_min.xml │ │ ├── atom_or.xml │ │ ├── atom_sub.xml │ │ ├── atom_xchg.xml │ │ ├── atom_xor.xml │ │ ├── atomicFunctions.xml │ │ ├── atomicFunctionsInc.xml │ │ ├── atomic_add.xml │ │ ├── atomic_and.xml │ │ ├── atomic_cmpxchg.xml │ │ ├── atomic_compare_exchange.xml │ │ ├── atomic_dec.xml │ │ ├── atomic_exchange.xml │ │ ├── atomic_fetch_key.xml │ │ ├── atomic_flag.xml │ │ ├── atomic_flag_clear.xml │ │ ├── atomic_flag_test_and_set.xml │ │ ├── atomic_inc.xml │ │ ├── atomic_init.xml │ │ ├── atomic_load.xml │ │ ├── atomic_max.xml │ │ ├── atomic_min.xml │ │ ├── atomic_or.xml │ │ ├── atomic_store.xml │ │ ├── atomic_sub.xml │ │ ├── atomic_work_item_fence.xml │ │ ├── atomic_xchg.xml │ │ ├── atomic_xor.xml │ │ ├── attribute.xml │ │ ├── attributes-blocksAndControlFlow.xml │ │ ├── attributes-loopUnroll.xml │ │ ├── attributes-types.xml │ │ ├── attributes-variables.xml │ │ ├── barrier.xml │ │ ├── bitselect.xml │ │ ├── blocks.xml │ │ ├── buildOptionsInc.xml │ │ ├── capture_event_profiling_info.xml │ │ ├── cbrt.xml │ │ ├── ceil.xml │ │ ├── clBuildProgram.xml │ │ ├── clCompileProgram.xml │ │ ├── clCreateBuffer.xml │ │ ├── clCreateCommandQueueWithProperties.xml │ │ ├── clCreateContext.xml │ │ ├── clCreateContextFromType.xml │ │ ├── clCreateEventFromEGLsyncKHR.xml │ │ ├── clCreateEventFromGLsyncKHR.xml │ │ ├── clCreateFromD3D10BufferKHR.xml │ │ ├── clCreateFromD3D10Texture2DKHR.xml │ │ ├── clCreateFromD3D10Texture3DKHR.xml │ │ ├── clCreateFromD3D11BufferKHR.xml │ │ ├── clCreateFromD3D11Texture2DKHR.xml │ │ ├── clCreateFromD3D11Texture3DKHR.xml │ │ ├── clCreateFromDX9MediaSurfaceKHR.xml │ │ ├── clCreateFromEGLImageKHR.xml │ │ ├── clCreateFromGLBuffer.xml │ │ ├── clCreateFromGLRenderbuffer.xml │ │ ├── clCreateFromGLTexture.xml │ │ ├── clCreateImage.xml │ │ ├── clCreateKernel.xml │ │ ├── clCreateKernelsInProgram.xml │ │ ├── clCreatePipe.xml │ │ ├── clCreateProgramWithBinary.xml │ │ ├── clCreateProgramWithBuiltInKernels.xml │ │ ├── clCreateProgramWithSource.xml │ │ ├── clCreateSamplerWithProperties.xml │ │ ├── clCreateSubBuffer.xml │ │ ├── clCreateSubDevices.xml │ │ ├── clCreateUserEvent.xml │ │ ├── clCreate_memflagsInc.xml │ │ ├── clEnqueueAcquireD3D10ObjectsKHR.xml │ │ ├── clEnqueueAcquireD3D11ObjectsKHR.xml │ │ ├── clEnqueueAcquireDX9MediaSurfacesKHR.xml │ │ ├── clEnqueueAcquireEGLObjectsKHR.xml │ │ ├── clEnqueueAcquireGLObjects.xml │ │ ├── clEnqueueBarrierWithWaitList.xml │ │ ├── clEnqueueCopyBuffer.xml │ │ ├── clEnqueueCopyBufferRect.xml │ │ ├── clEnqueueCopyBufferToImage.xml │ │ ├── clEnqueueCopyImage.xml │ │ ├── clEnqueueCopyImageToBuffer.xml │ │ ├── clEnqueueFillBuffer.xml │ │ ├── clEnqueueFillImage.xml │ │ ├── clEnqueueMapBuffer.xml │ │ ├── clEnqueueMapImage.xml │ │ ├── clEnqueueMarkerWithWaitList.xml │ │ ├── clEnqueueMigrateMemObjects.xml │ │ ├── clEnqueueNDRangeKernel.xml │ │ ├── clEnqueueNativeKernel.xml │ │ ├── clEnqueueReadBuffer.xml │ │ ├── clEnqueueReadBufferRect.xml │ │ ├── clEnqueueReadImage.xml │ │ ├── clEnqueueReleaseD3D10ObjectsKHR.xml │ │ ├── clEnqueueReleaseD3D11ObjectsKHR.xml │ │ ├── clEnqueueReleaseDX9MediaSurfacesKHR.xml │ │ ├── clEnqueueReleaseEGLObjectsKHR.xml │ │ ├── clEnqueueReleaseGLObjects.xml │ │ ├── clEnqueueSVMFree.xml │ │ ├── clEnqueueSVMMap.xml │ │ ├── clEnqueueSVMMemFill.xml │ │ ├── clEnqueueSVMMemcpy.xml │ │ ├── clEnqueueSVMUnmap.xml │ │ ├── clEnqueueUnmapMemObject.xml │ │ ├── clEnqueueWriteBuffer.xml │ │ ├── clEnqueueWriteBufferRect.xml │ │ ├── clEnqueueWriteImage.xml │ │ ├── clFinish.xml │ │ ├── clFlush.xml │ │ ├── clGetCommandQueueInfo.xml │ │ ├── clGetContextInfo.xml │ │ ├── clGetDeviceIDs.xml │ │ ├── clGetDeviceIDsFromD3D10KHR.xml │ │ ├── clGetDeviceIDsFromD3D11KHR.xml │ │ ├── clGetDeviceIDsFromDX9MediaAdapterKHR.xml │ │ ├── clGetDeviceInfo.xml │ │ ├── clGetEventInfo.xml │ │ ├── clGetEventProfilingInfo.xml │ │ ├── clGetExtensionFunctionAddressForPlatform.xml │ │ ├── clGetGLContextInfoKHR.xml │ │ ├── clGetGLObjectInfo.xml │ │ ├── clGetGLTextureInfo.xml │ │ ├── clGetImageInfo.xml │ │ ├── clGetKernelArgInfo.xml │ │ ├── clGetKernelInfo.xml │ │ ├── clGetKernelSubGroupInfoKHR.xml │ │ ├── clGetKernelWorkGroupInfo.xml │ │ ├── clGetMemObjectInfo.xml │ │ ├── clGetPipeInfo.xml │ │ ├── clGetPlatformIDs.xml │ │ ├── clGetPlatformInfo.xml │ │ ├── clGetProgramBuildInfo.xml │ │ ├── clGetProgramInfo.xml │ │ ├── clGetSamplerInfo.xml │ │ ├── clGetSupportedImageFormats.xml │ │ ├── clIcdGetPlatformIDsKHR.xml │ │ ├── clLinkProgram.xml │ │ ├── clReleaseCommandQueue.xml │ │ ├── clReleaseContext.xml │ │ ├── clReleaseDevice.xml │ │ ├── clReleaseEvent.xml │ │ ├── clReleaseKernel.xml │ │ ├── clReleaseMemObject.xml │ │ ├── clReleaseProgram.xml │ │ ├── clReleaseSampler.xml │ │ ├── clRetainCommandQueue.xml │ │ ├── clRetainContext.xml │ │ ├── clRetainDevice.xml │ │ ├── clRetainEvent.xml │ │ ├── clRetainKernel.xml │ │ ├── clRetainMemObject.xml │ │ ├── clRetainProgram.xml │ │ ├── clRetainSampler.xml │ │ ├── clSVMAlloc.xml │ │ ├── clSVMFree.xml │ │ ├── clSetEventCallback.xml │ │ ├── clSetKernelArg.xml │ │ ├── clSetKernelArgSVMPointer.xml │ │ ├── clSetKernelExecInfo.xml │ │ ├── clSetMemObjectDestructorCallback.xml │ │ ├── clSetUserEventStatus.xml │ │ ├── clTerminateContextKHR.xml │ │ ├── clUnloadPlatformCompiler.xml │ │ ├── clWaitForEvents.xml │ │ ├── cl_context_properties_Inc.xml │ │ ├── cl_device_type_Inc.xml │ │ ├── cl_image_desc.xml │ │ ├── cl_image_format.xml │ │ ├── cl_khr_3d_image_writes.xml │ │ ├── cl_khr_d3d10_sharing.xml │ │ ├── cl_khr_d3d11_sharing.xml │ │ ├── cl_khr_dx9_media_sharing.xml │ │ ├── cl_khr_egl_event.xml │ │ ├── cl_khr_egl_image.xml │ │ ├── cl_khr_fp16.xml │ │ ├── cl_khr_fp64.xml │ │ ├── cl_khr_gl_depth_images.xml │ │ ├── cl_khr_gl_event.xml │ │ ├── cl_khr_gl_msaa_sharing.xml │ │ ├── cl_khr_gl_sharing.xml │ │ ├── cl_khr_icd.xml │ │ ├── cl_khr_initialize_memory.xml │ │ ├── cl_khr_int64_base_atomics.xml │ │ ├── cl_khr_int64_extended_atomics.xml │ │ ├── cl_khr_mipmap_image.xml │ │ ├── cl_khr_spir.xml │ │ ├── cl_khr_srgb_image_writes.xml │ │ ├── cl_khr_subgroups.xml │ │ ├── cl_khr_terminate_context.xml │ │ ├── cl_queue_properties_Inc.xml │ │ ├── clamp_common.xml │ │ ├── clamp_integer.xml │ │ ├── classDiagram.xml │ │ ├── clz.xml │ │ ├── commit_read_pipe.xml │ │ ├── commit_write_pipe.xml │ │ ├── commonFunctions.xml │ │ ├── commonFunctionsInc.xml │ │ ├── commonMax.xml │ │ ├── commonMin.xml │ │ ├── constant.xml │ │ ├── convert_T.xml │ │ ├── copysign.xml │ │ ├── cos.xml │ │ ├── create_user_event.xml │ │ ├── cross.xml │ │ ├── ctz.xml │ │ ├── dataTypes.xml │ │ ├── degrees.xml │ │ ├── deprecated.xml │ │ ├── distance.xml │ │ ├── divide.xml │ │ ├── dot.xml │ │ ├── enqueue_kernel.xml │ │ ├── enqueue_marker.xml │ │ ├── enums.xml │ │ ├── erf.xml │ │ ├── eventFunctions.xml │ │ ├── eventFunctionsInc.xml │ │ ├── exp.xml │ │ ├── fabs.xml │ │ ├── fast_distance.xml │ │ ├── fast_length.xml │ │ ├── fast_normalize.xml │ │ ├── fdim.xml │ │ ├── floor.xml │ │ ├── fma.xml │ │ ├── fmax.xml │ │ ├── fmin.xml │ │ ├── fmod.xml │ │ ├── fract.xml │ │ ├── frexp.xml │ │ ├── functionQualifiers.xml │ │ ├── genericAddressSpace.xml │ │ ├── geometricFunctions.xml │ │ ├── geometricFunctionsInc.xml │ │ ├── get_default_queue.xml │ │ ├── get_enqueued_local_size.xml │ │ ├── get_enqueued_num_sub_groups.xml │ │ ├── get_global_id.xml │ │ ├── get_global_linear_id.xml │ │ ├── get_global_offset.xml │ │ ├── get_global_size.xml │ │ ├── get_group_id.xml │ │ ├── get_image_array_size.xml │ │ ├── get_image_channel_data_type.xml │ │ ├── get_image_channel_order.xml │ │ ├── get_image_depth.xml │ │ ├── get_image_dim.xml │ │ ├── get_image_height.xml │ │ ├── get_image_num_mip_levels.xml │ │ ├── get_image_num_samples.xml │ │ ├── get_image_width.xml │ │ ├── get_kernel_max_sub_group_size_for_ndrange.xml │ │ ├── get_kernel_preferred_work_group_size_multiple.xml │ │ ├── get_kernel_sub_group_count_for_ndrange.xml │ │ ├── get_kernel_work_group_size.xml │ │ ├── get_local_id.xml │ │ ├── get_local_linear_id.xml │ │ ├── get_local_size.xml │ │ ├── get_max_sub_group_size.xml │ │ ├── get_num_groups.xml │ │ ├── get_num_sub_groups.xml │ │ ├── get_pipe_max_packets.xml │ │ ├── get_pipe_num_packets.xml │ │ ├── get_sub_group_id.xml │ │ ├── get_sub_group_local_id.xml │ │ ├── get_sub_group_size.xml │ │ ├── get_work_dim.xml │ │ ├── gl_formatsInc.xml │ │ ├── gl_lifetimeInc.xml │ │ ├── gl_sharingInc.xml │ │ ├── gl_syncInc.xml │ │ ├── global.xml │ │ ├── hadd.xml │ │ ├── halfNativeMathInc.xml │ │ ├── helperFunctions.xml │ │ ├── hypot.xml │ │ ├── ilogb.xml │ │ ├── imageFunctions.xml │ │ ├── imageFunctionsInc.xml │ │ ├── imageMappingInc.xml │ │ ├── imageMipmapFunctions1DInc.xml │ │ ├── imageMipmapFunctions2DInc.xml │ │ ├── imageMipmapFunctions3DInc.xml │ │ ├── imageWriteMipmap2DInc.xml │ │ ├── integerFunctions.xml │ │ ├── integerFunctionsInc.xml │ │ ├── integerMax.xml │ │ ├── is_valid_event.xml │ │ ├── is_valid_reserve_id.xml │ │ ├── isequal.xml │ │ ├── isfinite.xml │ │ ├── isgreater.xml │ │ ├── isgreaterequal.xml │ │ ├── isinf.xml │ │ ├── isless.xml │ │ ├── islessequal.xml │ │ ├── islessgreater.xml │ │ ├── isnan.xml │ │ ├── isnormal.xml │ │ ├── isnotequal.xml │ │ ├── isordered.xml │ │ ├── isunordered.xml │ │ ├── ldexp.xml │ │ ├── length.xml │ │ ├── lgamma.xml │ │ ├── local.xml │ │ ├── log.xml │ │ ├── macroLimits.xml │ │ ├── mad.xml │ │ ├── mad24.xml │ │ ├── mad_hi.xml │ │ ├── mad_sat.xml │ │ ├── mag.xml │ │ ├── map_flags_Inc.xml │ │ ├── mathConstants.xml │ │ ├── mathFunctions.xml │ │ ├── mathFunctionsInc.xml │ │ ├── mediaSurfaceFormatsInc.xml │ │ ├── memory_order.xml │ │ ├── memory_scope.xml │ │ ├── miscVectorFunctions.xml │ │ ├── mix.xml │ │ ├── modf.xml │ │ ├── mul24.xml │ │ ├── mul_hi.xml │ │ ├── nan.xml │ │ ├── ndrange.xml │ │ ├── nextafter.xml │ │ ├── normalize.xml │ │ ├── operators.xml │ │ ├── otherDataTypes.xml │ │ ├── out_of_order_exec_Inc.xml │ │ ├── pipeFunctions.xml │ │ ├── pipeFunctionsInc.xml │ │ ├── popcount.xml │ │ ├── pow.xml │ │ ├── prefetch.xml │ │ ├── preprocessorDirectives.xml │ │ ├── printfFunction.xml │ │ ├── private.xml │ │ ├── qualifierExampleInc.xml │ │ ├── qualifierInc.xml │ │ ├── qualifiers.xml │ │ ├── radians.xml │ │ ├── read_imagef1d.xml │ │ ├── read_imagef2d.xml │ │ ├── read_imagef3d.xml │ │ ├── read_imageh1d.xml │ │ ├── read_imageh2d.xml │ │ ├── read_imageh3d.xml │ │ ├── read_imagei1d.xml │ │ ├── read_imagei2d.xml │ │ ├── read_imagei3d.xml │ │ ├── read_pipe.xml │ │ ├── recip.xml │ │ ├── relationalFunctions.xml │ │ ├── relationalFunctionsGEN.xml │ │ ├── relationalFunctionsIGEN.xml │ │ ├── relationalFunctionsInc1.xml │ │ ├── relationalFunctionsInc2.xml │ │ ├── relationalFunctionsInc3.xml │ │ ├── relationalFunctionsUGEN.xml │ │ ├── release_event.xml │ │ ├── remainder.xml │ │ ├── remquo.xml │ │ ├── reserve_read_pipe.xml │ │ ├── reserve_write_pipe.xml │ │ ├── reservedDataTypes.xml │ │ ├── restrictions.xml │ │ ├── retain_event.xml │ │ ├── rint.xml │ │ ├── rootn.xml │ │ ├── rotate.xml │ │ ├── round.xml │ │ ├── sampler_t.xml │ │ ├── scalarDataTypes.xml │ │ ├── select.xml │ │ ├── set_user_event_status.xml │ │ ├── sharedVirtualMemory.xml │ │ ├── sharingD3D10Inc.xml │ │ ├── sharingD3D11Inc.xml │ │ ├── shuffle.xml │ │ ├── sign.xml │ │ ├── signbit.xml │ │ ├── sin.xml │ │ ├── smoothstep.xml │ │ ├── sqrt.xml │ │ ├── step.xml │ │ ├── storageQualifiers.xml │ │ ├── sub_group_all.xml │ │ ├── sub_group_any.xml │ │ ├── sub_group_barrier.xml │ │ ├── sub_group_broadcast.xml │ │ ├── sub_group_commit_read_pipe.xml │ │ ├── sub_group_commit_write_pipe.xml │ │ ├── sub_group_reduce.xml │ │ ├── sub_group_reserve_read_pipe.xml │ │ ├── sub_group_reserve_write_pipe.xml │ │ ├── sub_group_scan_exclusive.xml │ │ ├── sub_group_scan_inclusive.xml │ │ ├── sub_sat.xml │ │ ├── supportedImageFormats.xml │ │ ├── syncFunctions.xml │ │ ├── tan.xml │ │ ├── tgamma.xml │ │ ├── trunc.xml │ │ ├── upsample.xml │ │ ├── vec_step.xml │ │ ├── vectorDataLoadandStoreFunctions.xml │ │ ├── vectorDataTypes.xml │ │ ├── vectorFunctionsInc.xml │ │ ├── vectorHalfFunctionsInc.xml │ │ ├── vload_half.xml │ │ ├── vload_halfn.xml │ │ ├── vloada_halfn.xml │ │ ├── vloadn.xml │ │ ├── vstore_half.xml │ │ ├── vstore_halfn.xml │ │ ├── vstorea_halfn.xml │ │ ├── vstoren.xml │ │ ├── wait_group_events.xml │ │ ├── workGroupOpInc.xml │ │ ├── workItemFunctions.xml │ │ ├── work_group_all.xml │ │ ├── work_group_any.xml │ │ ├── work_group_barrier.xml │ │ ├── work_group_broadcast.xml │ │ ├── work_group_commit_read_pipe.xml │ │ ├── work_group_commit_write_pipe.xml │ │ ├── work_group_reduce.xml │ │ ├── work_group_reserve_read_pipe.xml │ │ ├── work_group_reserve_write_pipe.xml │ │ ├── work_group_scan_exclusive.xml │ │ ├── work_group_scan_inclusive.xml │ │ ├── write_image1d.xml │ │ ├── write_image2d.xml │ │ ├── write_image3d.xml │ │ ├── write_pipe.xml │ │ └── xhtml │ │ ├── ATOMIC_VAR_INIT.html │ │ ├── EXTENSION.html │ │ ├── FP_CONTRACT.html │ │ ├── KhronosLogo.jpg │ │ ├── Makefile │ │ ├── OpenCL_Logo.jpg │ │ ├── OpenCL_Logo120.jpg │ │ ├── Opencl_header.html │ │ ├── Opencl_tofc.html │ │ ├── abs.html │ │ ├── abstractDataTypes.html │ │ ├── accessQualifiers.html │ │ ├── acos.html │ │ ├── add_sat.html │ │ ├── addressSpaceQualifierFuncs.html │ │ ├── any.html │ │ ├── as_typen.html │ │ ├── asin.html │ │ ├── asyncCopyFunctions.html │ │ ├── async_work_group_copy.html │ │ ├── async_work_group_strided_copy.html │ │ ├── atan.html │ │ ├── atom_add.html │ │ ├── atom_and.html │ │ ├── atom_cmpxchg.html │ │ ├── atom_dec.html │ │ ├── atom_inc.html │ │ ├── atom_max.html │ │ ├── atom_min.html │ │ ├── atom_or.html │ │ ├── atom_sub.html │ │ ├── atom_xchg.html │ │ ├── atom_xor.html │ │ ├── atomicFunctions.html │ │ ├── atomic_add.html │ │ ├── atomic_and.html │ │ ├── atomic_cmpxchg.html │ │ ├── atomic_compare_exchange.html │ │ ├── atomic_dec.html │ │ ├── atomic_exchange.html │ │ ├── atomic_fetch_key.html │ │ ├── atomic_flag.html │ │ ├── atomic_flag_clear.html │ │ ├── atomic_flag_test_and_set.html │ │ ├── atomic_inc.html │ │ ├── atomic_init.html │ │ ├── atomic_load.html │ │ ├── atomic_max.html │ │ ├── atomic_min.html │ │ ├── atomic_or.html │ │ ├── atomic_store.html │ │ ├── atomic_sub.html │ │ ├── atomic_work_item_fence.html │ │ ├── atomic_xchg.html │ │ ├── atomic_xor.html │ │ ├── attribute.html │ │ ├── attributes-blocksAndControlFlow.html │ │ ├── attributes-loopUnroll.html │ │ ├── attributes-types.html │ │ ├── attributes-variables.html │ │ ├── barrier.html │ │ ├── bitselect.html │ │ ├── blocks.html │ │ ├── bullets-contract.gif │ │ ├── bullets-end.gif │ │ ├── bullets-expand.gif │ │ ├── capture_event_profiling_info.html │ │ ├── cbrt.html │ │ ├── ceil.html │ │ ├── clBuildProgram.html │ │ ├── clCompileProgram.html │ │ ├── clCreateBuffer.html │ │ ├── clCreateCommandQueueWithProperties.html │ │ ├── clCreateContext.html │ │ ├── clCreateContextFromType.html │ │ ├── clCreateEventFromEGLsyncKHR.html │ │ ├── clCreateEventFromGLsyncKHR.html │ │ ├── clCreateFromD3D10BufferKHR.html │ │ ├── clCreateFromD3D10Texture2DKHR.html │ │ ├── clCreateFromD3D10Texture3DKHR.html │ │ ├── clCreateFromD3D11BufferKHR.html │ │ ├── clCreateFromD3D11Texture2DKHR.html │ │ ├── clCreateFromD3D11Texture3DKHR.html │ │ ├── clCreateFromDX9MediaSurfaceKHR.html │ │ ├── clCreateFromEGLImageKHR.html │ │ ├── clCreateFromGLBuffer.html │ │ ├── clCreateFromGLRenderbuffer.html │ │ ├── clCreateFromGLTexture.html │ │ ├── clCreateImage.html │ │ ├── clCreateKernel.html │ │ ├── clCreateKernelsInProgram.html │ │ ├── clCreatePipe.html │ │ ├── clCreateProgramWithBinary.html │ │ ├── clCreateProgramWithBuiltInKernels.html │ │ ├── clCreateProgramWithSource.html │ │ ├── clCreateSamplerWithProperties.html │ │ ├── clCreateSubBuffer.html │ │ ├── clCreateSubDevices.html │ │ ├── clCreateUserEvent.html │ │ ├── clEnqueueAcquireD3D10ObjectsKHR.html │ │ ├── clEnqueueAcquireD3D11ObjectsKHR.html │ │ ├── clEnqueueAcquireDX9MediaSurfacesKHR.html │ │ ├── clEnqueueAcquireEGLObjectsKHR.html │ │ ├── clEnqueueAcquireGLObjects.html │ │ ├── clEnqueueBarrierWithWaitList.html │ │ ├── clEnqueueCopyBuffer.html │ │ ├── clEnqueueCopyBufferRect.html │ │ ├── clEnqueueCopyBufferToImage.html │ │ ├── clEnqueueCopyImage.html │ │ ├── clEnqueueCopyImageToBuffer.html │ │ ├── clEnqueueFillBuffer.html │ │ ├── clEnqueueFillImage.html │ │ ├── clEnqueueMapBuffer.html │ │ ├── clEnqueueMapImage.html │ │ ├── clEnqueueMarkerWithWaitList.html │ │ ├── clEnqueueMigrateMemObjects.html │ │ ├── clEnqueueNDRangeKernel.html │ │ ├── clEnqueueNativeKernel.html │ │ ├── clEnqueueReadBuffer.html │ │ ├── clEnqueueReadBufferRect.html │ │ ├── clEnqueueReadImage.html │ │ ├── clEnqueueReleaseD3D10ObjectsKHR.html │ │ ├── clEnqueueReleaseD3D11ObjectsKHR.html │ │ ├── clEnqueueReleaseDX9MediaSurfacesKHR.html │ │ ├── clEnqueueReleaseEGLObjectsKHR.html │ │ ├── clEnqueueReleaseGLObjects.html │ │ ├── clEnqueueSVMFree.html │ │ ├── clEnqueueSVMMap.html │ │ ├── clEnqueueSVMMemFill.html │ │ ├── clEnqueueSVMMemcpy.html │ │ ├── clEnqueueSVMUnmap.html │ │ ├── clEnqueueUnmapMemObject.html │ │ ├── clEnqueueWriteBuffer.html │ │ ├── clEnqueueWriteBufferRect.html │ │ ├── clEnqueueWriteImage.html │ │ ├── clFinish.html │ │ ├── clFlush.html │ │ ├── clGetCommandQueueInfo.html │ │ ├── clGetContextInfo.html │ │ ├── clGetDeviceIDs.html │ │ ├── clGetDeviceIDsFromD3D10KHR.html │ │ ├── clGetDeviceIDsFromD3D11KHR.html │ │ ├── clGetDeviceIDsFromDX9MediaAdapterKHR.html │ │ ├── clGetDeviceInfo.html │ │ ├── clGetEventInfo.html │ │ ├── clGetEventProfilingInfo.html │ │ ├── clGetExtensionFunctionAddressForPlatform.html │ │ ├── clGetGLContextInfoKHR.html │ │ ├── clGetGLObjectInfo.html │ │ ├── clGetGLTextureInfo.html │ │ ├── clGetImageInfo.html │ │ ├── clGetKernelArgInfo.html │ │ ├── clGetKernelInfo.html │ │ ├── clGetKernelSubGroupInfoKHR.html │ │ ├── clGetKernelWorkGroupInfo.html │ │ ├── clGetMemObjectInfo.html │ │ ├── clGetPipeInfo.html │ │ ├── clGetPlatformIDs.html │ │ ├── clGetPlatformInfo.html │ │ ├── clGetProgramBuildInfo.html │ │ ├── clGetProgramInfo.html │ │ ├── clGetSamplerInfo.html │ │ ├── clGetSupportedImageFormats.html │ │ ├── clIcdGetPlatformIDsKHR.html │ │ ├── clLinkProgram.html │ │ ├── clReleaseCommandQueue.html │ │ ├── clReleaseContext.html │ │ ├── clReleaseDevice.html │ │ ├── clReleaseEvent.html │ │ ├── clReleaseKernel.html │ │ ├── clReleaseMemObject.html │ │ ├── clReleaseProgram.html │ │ ├── clReleaseSampler.html │ │ ├── clRetainCommandQueue.html │ │ ├── clRetainContext.html │ │ ├── clRetainDevice.html │ │ ├── clRetainEvent.html │ │ ├── clRetainKernel.html │ │ ├── clRetainMemObject.html │ │ ├── clRetainProgram.html │ │ ├── clRetainSampler.html │ │ ├── clSVMAlloc.html │ │ ├── clSVMFree.html │ │ ├── clSetEventCallback.html │ │ ├── clSetKernelArg.html │ │ ├── clSetKernelArgSVMPointer.html │ │ ├── clSetKernelExecInfo.html │ │ ├── clSetMemObjectDestructorCallback.html │ │ ├── clSetUserEventStatus.html │ │ ├── clTerminateContextKHR.html │ │ ├── clUnloadPlatformCompiler.html │ │ ├── clWaitForEvents.html │ │ ├── cl_image_desc.html │ │ ├── cl_image_format.html │ │ ├── cl_khr_3d_image_writes.html │ │ ├── cl_khr_d3d10_sharing.html │ │ ├── cl_khr_d3d11_sharing.html │ │ ├── cl_khr_dx9_media_sharing.html │ │ ├── cl_khr_egl_event.html │ │ ├── cl_khr_egl_image.html │ │ ├── cl_khr_fp16.html │ │ ├── cl_khr_fp64.html │ │ ├── cl_khr_gl_depth_images.html │ │ ├── cl_khr_gl_event.html │ │ ├── cl_khr_gl_msaa_sharing.html │ │ ├── cl_khr_gl_sharing.html │ │ ├── cl_khr_icd.html │ │ ├── cl_khr_initialize_memory.html │ │ ├── cl_khr_int64_base_atomics.html │ │ ├── cl_khr_int64_extended_atomics.html │ │ ├── cl_khr_mipmap_image.html │ │ ├── cl_khr_spir.html │ │ ├── cl_khr_srgb_image_writes.html │ │ ├── cl_khr_subgroups.html │ │ ├── cl_khr_terminate_context.html │ │ ├── clamp_common.html │ │ ├── clamp_integer.html │ │ ├── classDiagram.html │ │ ├── classDiagram.jpg │ │ ├── clz.html │ │ ├── commit_read_pipe.html │ │ ├── commit_write_pipe.html │ │ ├── commonFunctions.html │ │ ├── commonMax.html │ │ ├── commonMin.html │ │ ├── constant.html │ │ ├── convert_T.html │ │ ├── copyright.inc.xsl │ │ ├── copysign.html │ │ ├── cos.html │ │ ├── create_user_event.html │ │ ├── cross.html │ │ ├── ctz.html │ │ ├── dataTypes.html │ │ ├── degrees.html │ │ ├── deprecated.html │ │ ├── distance.html │ │ ├── divide.html │ │ ├── dot.html │ │ ├── enqueue_kernel.html │ │ ├── enqueue_marker.html │ │ ├── enums.html │ │ ├── erf.html │ │ ├── eventFunctions.html │ │ ├── exp.html │ │ ├── fabs.html │ │ ├── fast_distance.html │ │ ├── fast_length.html │ │ ├── fast_normalize.html │ │ ├── fdim.html │ │ ├── floor.html │ │ ├── fma.html │ │ ├── fmax.html │ │ ├── fmin.html │ │ ├── fmod.html │ │ ├── fract.html │ │ ├── frexp.html │ │ ├── functionQualifiers.html │ │ ├── genericAddressSpace.html │ │ ├── geometricFunctions.html │ │ ├── get_default_queue.html │ │ ├── get_enqueued_local_size.html │ │ ├── get_enqueued_num_sub_groups.html │ │ ├── get_global_id.html │ │ ├── get_global_linear_id.html │ │ ├── get_global_offset.html │ │ ├── get_global_size.html │ │ ├── get_group_id.html │ │ ├── get_image_array_size.html │ │ ├── get_image_channel_data_type.html │ │ ├── get_image_channel_order.html │ │ ├── get_image_depth.html │ │ ├── get_image_dim.html │ │ ├── get_image_height.html │ │ ├── get_image_num_mip_levels.html │ │ ├── get_image_num_samples.html │ │ ├── get_image_width.html │ │ ├── get_kernel_max_sub_group_size_for_ndrange.html │ │ ├── get_kernel_preferred_work_group_size_multiple.html │ │ ├── get_kernel_sub_group_count_for_ndrange.html │ │ ├── get_kernel_work_group_size.html │ │ ├── get_local_id.html │ │ ├── get_local_linear_id.html │ │ ├── get_local_size.html │ │ ├── get_max_sub_group_size.html │ │ ├── get_num_groups.html │ │ ├── get_num_sub_groups.html │ │ ├── get_pipe_max_packets.html │ │ ├── get_pipe_num_packets.html │ │ ├── get_sub_group_id.html │ │ ├── get_sub_group_local_id.html │ │ ├── get_sub_group_size.html │ │ ├── get_work_dim.html │ │ ├── global.html │ │ ├── hadd.html │ │ ├── headBackground-bigger.jpg │ │ ├── headBackground.jpg │ │ ├── helperFunctions.html │ │ ├── hypot.html │ │ ├── ilogb.html │ │ ├── imageFunctions.html │ │ ├── index.html │ │ ├── integerFunctions.html │ │ ├── integerMax.html │ │ ├── is_valid_event.html │ │ ├── is_valid_reserve_id.html │ │ ├── isequal.html │ │ ├── isfinite.html │ │ ├── isgreater.html │ │ ├── isgreaterequal.html │ │ ├── isinf.html │ │ ├── isless.html │ │ ├── islessequal.html │ │ ├── islessgreater.html │ │ ├── isnan.html │ │ ├── isnormal.html │ │ ├── isnotequal.html │ │ ├── isordered.html │ │ ├── isunordered.html │ │ ├── ldexp.html │ │ ├── length.html │ │ ├── lgamma.html │ │ ├── local.html │ │ ├── log.html │ │ ├── macroLimits.html │ │ ├── mad.html │ │ ├── mad24.html │ │ ├── mad_hi.html │ │ ├── mad_sat.html │ │ ├── mag.html │ │ ├── mathConstants.html │ │ ├── mathFunctions.html │ │ ├── memory_order.html │ │ ├── memory_scope.html │ │ ├── miscVectorFunctions.html │ │ ├── mix.html │ │ ├── modf.html │ │ ├── mul24.html │ │ ├── mul_hi.html │ │ ├── nan.html │ │ ├── ndrange.html │ │ ├── nextafter.html │ │ ├── normalize.html │ │ ├── oclRefPages-Title.html │ │ ├── opencl-man.xsl │ │ ├── operators.html │ │ ├── otherDataTypes.html │ │ ├── pageNumberLookup.rb │ │ ├── pdficon_small1.gif │ │ ├── pipeFunctions.html │ │ ├── popcount.html │ │ ├── pow.html │ │ ├── prefetch.html │ │ ├── preprocessorDirectives.html │ │ ├── present.css │ │ ├── printfFunction.html │ │ ├── private.html │ │ ├── qualifiers.html │ │ ├── radians.html │ │ ├── read_imagef1d.html │ │ ├── read_imagef2d.html │ │ ├── read_imagef3d.html │ │ ├── read_imageh1d.html │ │ ├── read_imageh2d.html │ │ ├── read_imageh3d.html │ │ ├── read_imagei1d.html │ │ ├── read_imagei2d.html │ │ ├── read_imagei3d.html │ │ ├── read_pipe.html │ │ ├── recip.html │ │ ├── relationalFunctions.html │ │ ├── release_event.html │ │ ├── remainder.html │ │ ├── remquo.html │ │ ├── reserve_read_pipe.html │ │ ├── reserve_write_pipe.html │ │ ├── reservedDataTypes.html │ │ ├── restrictions.html │ │ ├── retain_event.html │ │ ├── rint.html │ │ ├── rootn.html │ │ ├── rotate.html │ │ ├── round.html │ │ ├── sampler_t.html │ │ ├── scalarDataTypes.html │ │ ├── select.html │ │ ├── set_user_event_status.html │ │ ├── sharedVirtualMemory.html │ │ ├── shuffle.html │ │ ├── sign.html │ │ ├── signbit.html │ │ ├── sin.html │ │ ├── smoothstep.html │ │ ├── sqrt.html │ │ ├── step.html │ │ ├── storageQualifiers.html │ │ ├── style.css │ │ ├── styles-css.xsl │ │ ├── sub_group_all.html │ │ ├── sub_group_any.html │ │ ├── sub_group_barrier.html │ │ ├── sub_group_broadcast.html │ │ ├── sub_group_commit_read_pipe.html │ │ ├── sub_group_commit_write_pipe.html │ │ ├── sub_group_reduce.html │ │ ├── sub_group_reserve_read_pipe.html │ │ ├── sub_group_reserve_write_pipe.html │ │ ├── sub_group_scan_exclusive.html │ │ ├── sub_group_scan_inclusive.html │ │ ├── sub_sat.html │ │ ├── supportedImageFormats.html │ │ ├── syncFunctions.html │ │ ├── tan.html │ │ ├── tgamma.html │ │ ├── trunc.html │ │ ├── undohtml.css │ │ ├── upsample.html │ │ ├── vec_step.html │ │ ├── vectorDataLoadandStoreFunctions.html │ │ ├── vectorDataTypes.html │ │ ├── vload_half.html │ │ ├── vload_halfn.html │ │ ├── vloada_halfn.html │ │ ├── vloadn.html │ │ ├── vstore_half.html │ │ ├── vstore_halfn.html │ │ ├── vstorea_halfn.html │ │ ├── vstoren.html │ │ ├── wait_group_events.html │ │ ├── workItemFunctions.html │ │ ├── work_group_all.html │ │ ├── work_group_any.html │ │ ├── work_group_barrier.html │ │ ├── work_group_broadcast.html │ │ ├── work_group_commit_read_pipe.html │ │ ├── work_group_commit_write_pipe.html │ │ ├── work_group_reduce.html │ │ ├── work_group_reserve_read_pipe.html │ │ ├── work_group_reserve_write_pipe.html │ │ ├── work_group_scan_exclusive.html │ │ ├── work_group_scan_inclusive.html │ │ ├── write_image1d.html │ │ ├── write_image2d.html │ │ ├── write_image3d.html │ │ └── write_pipe.html ├── 2.1 │ └── docs │ │ ├── OpenCL-2.1-refcard.pdf │ │ └── man │ │ ├── ATOMIC_VAR_INIT.xml │ │ ├── EXTENSION.xml │ │ ├── FP_CONTRACT.xml │ │ ├── README │ │ ├── abs.xml │ │ ├── abstractDataTypes.xml │ │ ├── accessMappedInc.xml │ │ ├── accessQualifiers.xml │ │ ├── acos.xml │ │ ├── add_sat.xml │ │ ├── addressSpaceQualifierFuncs.xml │ │ ├── addressSpaceQualifiersInc.xml │ │ ├── any.xml │ │ ├── as_typen.xml │ │ ├── asin.xml │ │ ├── asyncCopyFunctions.xml │ │ ├── asyncCopyInc.xml │ │ ├── async_work_group_copy.xml │ │ ├── async_work_group_strided_copy.xml │ │ ├── atan.xml │ │ ├── atomicFunctions.xml │ │ ├── atomicFunctionsInc.xml │ │ ├── atomic_compare_exchange.xml │ │ ├── atomic_exchange.xml │ │ ├── atomic_fetch_key.xml │ │ ├── atomic_flag.xml │ │ ├── atomic_flag_clear.xml │ │ ├── atomic_flag_test_and_set.xml │ │ ├── atomic_init.xml │ │ ├── atomic_load.xml │ │ ├── atomic_store.xml │ │ ├── atomic_work_item_fence.xml │ │ ├── attribute.xml │ │ ├── attributes-blocksAndControlFlow.xml │ │ ├── attributes-loopUnroll.xml │ │ ├── attributes-types.xml │ │ ├── attributes-variables.xml │ │ ├── barrier.xml │ │ ├── bitselect.xml │ │ ├── blocks.xml │ │ ├── buildOptionsInc.xml │ │ ├── capture_event_profiling_info.xml │ │ ├── cbrt.xml │ │ ├── ceil.xml │ │ ├── clBuildProgram.xml │ │ ├── clCloneKernel.xml │ │ ├── clCompileProgram.xml │ │ ├── clCreateBuffer.xml │ │ ├── clCreateCommandQueueWithProperties.xml │ │ ├── clCreateContext.xml │ │ ├── clCreateContextFromType.xml │ │ ├── clCreateEventFromEGLSyncKHR.xml │ │ ├── clCreateEventFromGLsyncKHR.xml │ │ ├── clCreateFromD3D10BufferKHR.xml │ │ ├── clCreateFromD3D10Texture2DKHR.xml │ │ ├── clCreateFromD3D10Texture3DKHR.xml │ │ ├── clCreateFromD3D11BufferKHR.xml │ │ ├── clCreateFromD3D11Texture2DKHR.xml │ │ ├── clCreateFromD3D11Texture3DKHR.xml │ │ ├── clCreateFromDX9MediaSurfaceKHR.xml │ │ ├── clCreateFromEGLImageKHR.xml │ │ ├── clCreateFromGLBuffer.xml │ │ ├── clCreateFromGLRenderbuffer.xml │ │ ├── clCreateFromGLTexture.xml │ │ ├── clCreateImage.xml │ │ ├── clCreateKernel.xml │ │ ├── clCreateKernelsInProgram.xml │ │ ├── clCreatePipe.xml │ │ ├── clCreateProgramWithBinary.xml │ │ ├── clCreateProgramWithBuiltInKernels.xml │ │ ├── clCreateProgramWithIL.xml │ │ ├── clCreateProgramWithSource.xml │ │ ├── clCreateSamplerWithProperties.xml │ │ ├── clCreateSubBuffer.xml │ │ ├── clCreateSubDevices.xml │ │ ├── clCreateUserEvent.xml │ │ ├── clCreate_memflagsInc.xml │ │ ├── clEnqueueAcquireD3D10ObjectsKHR.xml │ │ ├── clEnqueueAcquireD3D11ObjectsKHR.xml │ │ ├── clEnqueueAcquireDX9MediaSurfacesKHR.xml │ │ ├── clEnqueueAcquireEGLObjectsKHR.xml │ │ ├── clEnqueueAcquireGLObjects.xml │ │ ├── clEnqueueBarrierWithWaitList.xml │ │ ├── clEnqueueCopyBuffer.xml │ │ ├── clEnqueueCopyBufferRect.xml │ │ ├── clEnqueueCopyBufferToImage.xml │ │ ├── clEnqueueCopyImage.xml │ │ ├── clEnqueueCopyImageToBuffer.xml │ │ ├── clEnqueueFillBuffer.xml │ │ ├── clEnqueueFillImage.xml │ │ ├── clEnqueueMapBuffer.xml │ │ ├── clEnqueueMapImage.xml │ │ ├── clEnqueueMarkerWithWaitList.xml │ │ ├── clEnqueueMigrateMemObjects.xml │ │ ├── clEnqueueNDRangeKernel.xml │ │ ├── clEnqueueNativeKernel.xml │ │ ├── clEnqueueReadBuffer.xml │ │ ├── clEnqueueReadBufferRect.xml │ │ ├── clEnqueueReadImage.xml │ │ ├── clEnqueueReleaseD3D10ObjectsKHR.xml │ │ ├── clEnqueueReleaseD3D11ObjectsKHR.xml │ │ ├── clEnqueueReleaseDX9MediaSurfacesKHR.xml │ │ ├── clEnqueueReleaseEGLObjectsKHR.xml │ │ ├── clEnqueueReleaseGLObjects.xml │ │ ├── clEnqueueSVMFree.xml │ │ ├── clEnqueueSVMMap.xml │ │ ├── clEnqueueSVMMemFill.xml │ │ ├── clEnqueueSVMMemcpy.xml │ │ ├── clEnqueueSVMMigrateMem.xml │ │ ├── clEnqueueSVMUnmap.xml │ │ ├── clEnqueueUnmapMemObject.xml │ │ ├── clEnqueueWriteBuffer.xml │ │ ├── clEnqueueWriteBufferRect.xml │ │ ├── clEnqueueWriteImage.xml │ │ ├── clFinish.xml │ │ ├── clFlush.xml │ │ ├── clGetCommandQueueInfo.xml │ │ ├── clGetContextInfo.xml │ │ ├── clGetDeviceAndHostTimer.xml │ │ ├── clGetDeviceIDs.xml │ │ ├── clGetDeviceIDsFromD3D10KHR.xml │ │ ├── clGetDeviceIDsFromD3D11KHR.xml │ │ ├── clGetDeviceIDsFromDX9MediaAdapterKHR.xml │ │ ├── clGetDeviceInfo.xml │ │ ├── clGetEventInfo.xml │ │ ├── clGetEventProfilingInfo.xml │ │ ├── clGetExtensionFunctionAddressForPlatform.xml │ │ ├── clGetGLContextInfoKHR.xml │ │ ├── clGetGLObjectInfo.xml │ │ ├── clGetGLTextureInfo.xml │ │ ├── clGetHostTimer.xml │ │ ├── clGetImageInfo.xml │ │ ├── clGetKernelArgInfo.xml │ │ ├── clGetKernelInfo.xml │ │ ├── clGetKernelSubGroupInfo.xml │ │ ├── clGetKernelWorkGroupInfo.xml │ │ ├── clGetMemObjectInfo.xml │ │ ├── clGetPipeInfo.xml │ │ ├── clGetPlatformIDs.xml │ │ ├── clGetPlatformInfo.xml │ │ ├── clGetProgramBuildInfo.xml │ │ ├── clGetProgramInfo.xml │ │ ├── clGetSamplerInfo.xml │ │ ├── clGetSupportedImageFormats.xml │ │ ├── clIcdGetPlatformIDsKHR.xml │ │ ├── clLinkProgram.xml │ │ ├── clReleaseCommandQueue.xml │ │ ├── clReleaseContext.xml │ │ ├── clReleaseDevice.xml │ │ ├── clReleaseEvent.xml │ │ ├── clReleaseKernel.xml │ │ ├── clReleaseMemObject.xml │ │ ├── clReleaseProgram.xml │ │ ├── clReleaseSampler.xml │ │ ├── clRetainCommandQueue.xml │ │ ├── clRetainContext.xml │ │ ├── clRetainDevice.xml │ │ ├── clRetainEvent.xml │ │ ├── clRetainKernel.xml │ │ ├── clRetainMemObject.xml │ │ ├── clRetainProgram.xml │ │ ├── clRetainSampler.xml │ │ ├── clSVMAlloc.xml │ │ ├── clSVMFree.xml │ │ ├── clSetDefaultDeviceCommandQueue.xml │ │ ├── clSetEventCallback.xml │ │ ├── clSetKernelArg.xml │ │ ├── clSetKernelArgSVMPointer.xml │ │ ├── clSetKernelExecInfo.xml │ │ ├── clSetMemObjectDestructorCallback.xml │ │ ├── clSetUserEventStatus.xml │ │ ├── clTerminateContextKHR.xml │ │ ├── clUnloadPlatformCompiler.xml │ │ ├── clWaitForEvents.xml │ │ ├── cl_context_properties_Inc.xml │ │ ├── cl_device_type_Inc.xml │ │ ├── cl_image_desc.xml │ │ ├── cl_image_format.xml │ │ ├── cl_khr_3d_image_writes.xml │ │ ├── cl_khr_byte_addressable_store.xml │ │ ├── cl_khr_context_abort.xml │ │ ├── cl_khr_d3d10_sharing.xml │ │ ├── cl_khr_d3d11_sharing.xml │ │ ├── cl_khr_depth_images.xml │ │ ├── cl_khr_device_enqueue_local_arg_types.xml │ │ ├── cl_khr_dx9_media_sharing.xml │ │ ├── cl_khr_egl_event.xml │ │ ├── cl_khr_egl_image.xml │ │ ├── cl_khr_fp16.xml │ │ ├── cl_khr_fp64.xml │ │ ├── cl_khr_gl_depth_images.xml │ │ ├── cl_khr_gl_event.xml │ │ ├── cl_khr_gl_msaa_sharing.xml │ │ ├── cl_khr_gl_sharing.xml │ │ ├── cl_khr_global_int32_base_atomics.xml │ │ ├── cl_khr_global_int32_extended_atomics.xml │ │ ├── cl_khr_icd.xml │ │ ├── cl_khr_il_program.xml │ │ ├── cl_khr_image2d_from_buffer.xml │ │ ├── cl_khr_initialize_memory.xml │ │ ├── cl_khr_int64_base_atomics.xml │ │ ├── cl_khr_int64_extended_atomics.xml │ │ ├── cl_khr_local_int32_base_atomics.xml │ │ ├── cl_khr_local_int32_extended_atomics.xml │ │ ├── cl_khr_mipmap_image.xml │ │ ├── cl_khr_priority_hints.xml │ │ ├── cl_khr_spir.xml │ │ ├── cl_khr_srgb_image_writes.xml │ │ ├── cl_khr_subgroups.xml │ │ ├── cl_khr_terminate_context.xml │ │ ├── cl_khr_throttle_hints.xml │ │ ├── cl_queue_properties_Inc.xml │ │ ├── clamp_common.xml │ │ ├── clamp_integer.xml │ │ ├── classDiagram.xml │ │ ├── clz.xml │ │ ├── commit_read_pipe.xml │ │ ├── commit_write_pipe.xml │ │ ├── commonFunctions.xml │ │ ├── commonFunctionsInc.xml │ │ ├── commonMax.xml │ │ ├── commonMin.xml │ │ ├── constant.xml │ │ ├── convert_T.xml │ │ ├── copysign.xml │ │ ├── cos.xml │ │ ├── create_user_event.xml │ │ ├── cross.xml │ │ ├── ctz.xml │ │ ├── dataTypes.xml │ │ ├── degrees.xml │ │ ├── deprecated.xml │ │ ├── distance.xml │ │ ├── divide.xml │ │ ├── dot.xml │ │ ├── enqueue_kernel.xml │ │ ├── enqueue_marker.xml │ │ ├── enums.xml │ │ ├── erf.xml │ │ ├── eventFunctions.xml │ │ ├── eventFunctionsInc.xml │ │ ├── exp.xml │ │ ├── fabs.xml │ │ ├── fast_distance.xml │ │ ├── fast_length.xml │ │ ├── fast_normalize.xml │ │ ├── fdim.xml │ │ ├── floor.xml │ │ ├── fma.xml │ │ ├── fmax.xml │ │ ├── fmin.xml │ │ ├── fmod.xml │ │ ├── fract.xml │ │ ├── frexp.xml │ │ ├── functionQualifiers.xml │ │ ├── genericAddressSpace.xml │ │ ├── geometricFunctions.xml │ │ ├── geometricFunctionsInc.xml │ │ ├── get_default_queue.xml │ │ ├── get_enqueued_local_size.xml │ │ ├── get_global_id.xml │ │ ├── get_global_linear_id.xml │ │ ├── get_global_offset.xml │ │ ├── get_global_size.xml │ │ ├── get_group_id.xml │ │ ├── get_image_array_size.xml │ │ ├── get_image_channel_data_type.xml │ │ ├── get_image_channel_order.xml │ │ ├── get_image_depth.xml │ │ ├── get_image_dim.xml │ │ ├── get_image_height.xml │ │ ├── get_image_num_mip_levels.xml │ │ ├── get_image_num_samples.xml │ │ ├── get_image_width.xml │ │ ├── get_kernel_preferred_work_group_size_multiple.xml │ │ ├── get_kernel_work_group_size.xml │ │ ├── get_local_id.xml │ │ ├── get_local_linear_id.xml │ │ ├── get_local_size.xml │ │ ├── get_num_groups.xml │ │ ├── get_pipe_max_packets.xml │ │ ├── get_pipe_num_packets.xml │ │ ├── get_work_dim.xml │ │ ├── gl_formatsInc.xml │ │ ├── gl_lifetimeInc.xml │ │ ├── gl_sharingInc.xml │ │ ├── gl_syncInc.xml │ │ ├── global.xml │ │ ├── hadd.xml │ │ ├── halfNativeMathInc.xml │ │ ├── helperFunctions.xml │ │ ├── hypot.xml │ │ ├── ilogb.xml │ │ ├── imageFunctions.xml │ │ ├── imageFunctionsInc.xml │ │ ├── imageMappingInc.xml │ │ ├── imageMipmapFunctions1DInc.xml │ │ ├── imageMipmapFunctions2DInc.xml │ │ ├── imageMipmapFunctions3DInc.xml │ │ ├── imageQueryFunctionsInc.xml │ │ ├── imageWriteMipmap2DInc.xml │ │ ├── integerFunctions.xml │ │ ├── integerFunctionsInc.xml │ │ ├── integerMax.xml │ │ ├── is_valid_event.xml │ │ ├── is_valid_reserve_id.xml │ │ ├── isequal.xml │ │ ├── isfinite.xml │ │ ├── isgreater.xml │ │ ├── isgreaterequal.xml │ │ ├── isinf.xml │ │ ├── isless.xml │ │ ├── islessequal.xml │ │ ├── islessgreater.xml │ │ ├── isnan.xml │ │ ├── isnormal.xml │ │ ├── isnotequal.xml │ │ ├── isordered.xml │ │ ├── isunordered.xml │ │ ├── ldexp.xml │ │ ├── length.xml │ │ ├── lgamma.xml │ │ ├── local.xml │ │ ├── log.xml │ │ ├── macroLimits.xml │ │ ├── mad.xml │ │ ├── mad24.xml │ │ ├── mad_hi.xml │ │ ├── mad_sat.xml │ │ ├── mag.xml │ │ ├── map_flags_Inc.xml │ │ ├── mathConstants.xml │ │ ├── mathFunctions.xml │ │ ├── mathFunctionsInc.xml │ │ ├── mediaSurfaceFormatsInc.xml │ │ ├── memory_order.xml │ │ ├── memory_scope.xml │ │ ├── miscVectorFunctions.xml │ │ ├── miscVectorFunctionsInc.xml │ │ ├── mix.xml │ │ ├── modf.xml │ │ ├── mul24.xml │ │ ├── mul_hi.xml │ │ ├── multipleHostThreadsInc.xml │ │ ├── nan.xml │ │ ├── ndrange.xml │ │ ├── nextafter.xml │ │ ├── normalize.xml │ │ ├── operators.xml │ │ ├── otherDataTypes.xml │ │ ├── out_of_order_exec_Inc.xml │ │ ├── pipeFunctions.xml │ │ ├── pipeFunctionsInc.xml │ │ ├── popcount.xml │ │ ├── pow.xml │ │ ├── prefetch.xml │ │ ├── preprocessorDirectives.xml │ │ ├── printfFunction.xml │ │ ├── private.xml │ │ ├── qualifierExampleInc.xml │ │ ├── qualifiers.xml │ │ ├── radians.xml │ │ ├── read_imagef1d.xml │ │ ├── read_imagef2d.xml │ │ ├── read_imagef3d.xml │ │ ├── read_imageh1d.xml │ │ ├── read_imageh2d.xml │ │ ├── read_imageh3d.xml │ │ ├── read_imagei1d.xml │ │ ├── read_imagei2d.xml │ │ ├── read_imagei3d.xml │ │ ├── read_pipe.xml │ │ ├── recip.xml │ │ ├── relationalFunctions.xml │ │ ├── relationalFunctionsGEN.xml │ │ ├── relationalFunctionsIGEN.xml │ │ ├── relationalFunctionsInc1.xml │ │ ├── relationalFunctionsInc2.xml │ │ ├── relationalFunctionsInc3.xml │ │ ├── relationalFunctionsUGEN.xml │ │ ├── release_event.xml │ │ ├── remainder.xml │ │ ├── remquo.xml │ │ ├── reserve_read_pipe.xml │ │ ├── reserve_write_pipe.xml │ │ ├── reservedDataTypes.xml │ │ ├── restrictions.xml │ │ ├── retain_event.xml │ │ ├── rint.xml │ │ ├── rootn.xml │ │ ├── rotate.xml │ │ ├── round.xml │ │ ├── sampler_t.xml │ │ ├── scalarDataTypes.xml │ │ ├── select.xml │ │ ├── set_user_event_status.xml │ │ ├── sharedVirtualMemory.xml │ │ ├── sharingD3D10Inc.xml │ │ ├── sharingD3D11Inc.xml │ │ ├── sharingDX9Inc.xml │ │ ├── shuffle.xml │ │ ├── sign.xml │ │ ├── signbit.xml │ │ ├── sin.xml │ │ ├── smoothstep.xml │ │ ├── sqrt.xml │ │ ├── step.xml │ │ ├── storageSpecifiers.xml │ │ ├── sub_sat.xml │ │ ├── supportedImageFormats.xml │ │ ├── syncFunctions.xml │ │ ├── tan.xml │ │ ├── tgamma.xml │ │ ├── trunc.xml │ │ ├── upsample.xml │ │ ├── vec_step.xml │ │ ├── vectorDataLoadandStoreFunctions.xml │ │ ├── vectorDataTypes.xml │ │ ├── vectorFunctionsInc.xml │ │ ├── vectorHalfFunctionsInc.xml │ │ ├── vload_half.xml │ │ ├── vload_halfn.xml │ │ ├── vloada_halfn.xml │ │ ├── vloadn.xml │ │ ├── vstore_half.xml │ │ ├── vstore_halfn.xml │ │ ├── vstorea_halfn.xml │ │ ├── vstoren.xml │ │ ├── wait_group_events.xml │ │ ├── workGroupOpInc.xml │ │ ├── workItemFunctions.xml │ │ ├── work_group_all.xml │ │ ├── work_group_any.xml │ │ ├── work_group_barrier.xml │ │ ├── work_group_broadcast.xml │ │ ├── work_group_commit_read_pipe.xml │ │ ├── work_group_commit_write_pipe.xml │ │ ├── work_group_reduce.xml │ │ ├── work_group_reserve_read_pipe.xml │ │ ├── work_group_reserve_write_pipe.xml │ │ ├── work_group_scan_exclusive.xml │ │ ├── work_group_scan_inclusive.xml │ │ ├── write_image1d.xml │ │ ├── write_image2d.xml │ │ ├── write_image3d.xml │ │ ├── write_pipe.xml │ │ └── xhtml │ │ ├── .htaccess │ │ ├── ATOMIC_VAR_INIT.html │ │ ├── EXTENSION.html │ │ ├── FP_CONTRACT.html │ │ ├── KhronosLogo.jpg │ │ ├── Makefile │ │ ├── OpenCL_Logo.jpg │ │ ├── OpenCL_Logo120.jpg │ │ ├── Opencl_header.html │ │ ├── Opencl_tofc.html │ │ ├── abs.html │ │ ├── abstractDataTypes.html │ │ ├── accessQualifiers.html │ │ ├── acos.html │ │ ├── add_sat.html │ │ ├── addressSpaceQualifierFuncs.html │ │ ├── any.html │ │ ├── as_typen.html │ │ ├── asin.html │ │ ├── asyncCopyFunctions.html │ │ ├── async_work_group_copy.html │ │ ├── async_work_group_strided_copy.html │ │ ├── atan.html │ │ ├── atomicFunctions.html │ │ ├── atomic_compare_exchange.html │ │ ├── atomic_exchange.html │ │ ├── atomic_fetch_key.html │ │ ├── atomic_flag.html │ │ ├── atomic_flag_clear.html │ │ ├── atomic_flag_test_and_set.html │ │ ├── atomic_init.html │ │ ├── atomic_load.html │ │ ├── atomic_store.html │ │ ├── atomic_work_item_fence.html │ │ ├── attribute.html │ │ ├── attributes-blocksAndControlFlow.html │ │ ├── attributes-loopUnroll.html │ │ ├── attributes-types.html │ │ ├── attributes-variables.html │ │ ├── barrier.html │ │ ├── bitselect.html │ │ ├── blocks.html │ │ ├── bullets-contract.gif │ │ ├── bullets-end.gif │ │ ├── bullets-expand.gif │ │ ├── capture_event_profiling_info.html │ │ ├── cbrt.html │ │ ├── ceil.html │ │ ├── clBuildProgram.html │ │ ├── clCloneKernel.html │ │ ├── clCompileProgram.html │ │ ├── clCreateBuffer.html │ │ ├── clCreateCommandQueueWithProperties.html │ │ ├── clCreateContext.html │ │ ├── clCreateContextFromType.html │ │ ├── clCreateEventFromEGLSyncKHR.html │ │ ├── clCreateEventFromGLsyncKHR.html │ │ ├── clCreateFromD3D10BufferKHR.html │ │ ├── clCreateFromD3D10Texture2DKHR.html │ │ ├── clCreateFromD3D10Texture3DKHR.html │ │ ├── clCreateFromD3D11BufferKHR.html │ │ ├── clCreateFromD3D11Texture2DKHR.html │ │ ├── clCreateFromD3D11Texture3DKHR.html │ │ ├── clCreateFromDX9MediaSurfaceKHR.html │ │ ├── clCreateFromEGLImageKHR.html │ │ ├── clCreateFromGLBuffer.html │ │ ├── clCreateFromGLRenderbuffer.html │ │ ├── clCreateFromGLTexture.html │ │ ├── clCreateImage.html │ │ ├── clCreateKernel.html │ │ ├── clCreateKernelsInProgram.html │ │ ├── clCreatePipe.html │ │ ├── clCreateProgramWithBinary.html │ │ ├── clCreateProgramWithBuiltInKernels.html │ │ ├── clCreateProgramWithIL.html │ │ ├── clCreateProgramWithSource.html │ │ ├── clCreateSamplerWithProperties.html │ │ ├── clCreateSubBuffer.html │ │ ├── clCreateSubDevices.html │ │ ├── clCreateUserEvent.html │ │ ├── clEnqueueAcquireD3D10ObjectsKHR.html │ │ ├── clEnqueueAcquireD3D11ObjectsKHR.html │ │ ├── clEnqueueAcquireDX9MediaSurfacesKHR.html │ │ ├── clEnqueueAcquireEGLObjectsKHR.html │ │ ├── clEnqueueAcquireGLObjects.html │ │ ├── clEnqueueBarrierWithWaitList.html │ │ ├── clEnqueueCopyBuffer.html │ │ ├── clEnqueueCopyBufferRect.html │ │ ├── clEnqueueCopyBufferToImage.html │ │ ├── clEnqueueCopyImage.html │ │ ├── clEnqueueCopyImageToBuffer.html │ │ ├── clEnqueueFillBuffer.html │ │ ├── clEnqueueFillImage.html │ │ ├── clEnqueueMapBuffer.html │ │ ├── clEnqueueMapImage.html │ │ ├── clEnqueueMarkerWithWaitList.html │ │ ├── clEnqueueMigrateMemObjects.html │ │ ├── clEnqueueNDRangeKernel.html │ │ ├── clEnqueueNativeKernel.html │ │ ├── clEnqueueReadBuffer.html │ │ ├── clEnqueueReadBufferRect.html │ │ ├── clEnqueueReadImage.html │ │ ├── clEnqueueReleaseD3D10ObjectsKHR.html │ │ ├── clEnqueueReleaseD3D11ObjectsKHR.html │ │ ├── clEnqueueReleaseDX9MediaSurfacesKHR.html │ │ ├── clEnqueueReleaseEGLObjectsKHR.html │ │ ├── clEnqueueReleaseGLObjects.html │ │ ├── clEnqueueSVMFree.html │ │ ├── clEnqueueSVMMap.html │ │ ├── clEnqueueSVMMemFill.html │ │ ├── clEnqueueSVMMemcpy.html │ │ ├── clEnqueueSVMMigrateMem.html │ │ ├── clEnqueueSVMUnmap.html │ │ ├── clEnqueueUnmapMemObject.html │ │ ├── clEnqueueWriteBuffer.html │ │ ├── clEnqueueWriteBufferRect.html │ │ ├── clEnqueueWriteImage.html │ │ ├── clFinish.html │ │ ├── clFlush.html │ │ ├── clGetCommandQueueInfo.html │ │ ├── clGetContextInfo.html │ │ ├── clGetDeviceAndHostTimer.html │ │ ├── clGetDeviceIDs.html │ │ ├── clGetDeviceIDsFromD3D10KHR.html │ │ ├── clGetDeviceIDsFromD3D11KHR.html │ │ ├── clGetDeviceIDsFromDX9MediaAdapterKHR.html │ │ ├── clGetDeviceInfo.html │ │ ├── clGetEventInfo.html │ │ ├── clGetEventProfilingInfo.html │ │ ├── clGetExtensionFunctionAddressForPlatform.html │ │ ├── clGetGLContextInfoKHR.html │ │ ├── clGetGLObjectInfo.html │ │ ├── clGetGLTextureInfo.html │ │ ├── clGetHostTimer.html │ │ ├── clGetImageInfo.html │ │ ├── clGetKernelArgInfo.html │ │ ├── clGetKernelInfo.html │ │ ├── clGetKernelSubGroupInfo.html │ │ ├── clGetKernelWorkGroupInfo.html │ │ ├── clGetMemObjectInfo.html │ │ ├── clGetPipeInfo.html │ │ ├── clGetPlatformIDs.html │ │ ├── clGetPlatformInfo.html │ │ ├── clGetProgramBuildInfo.html │ │ ├── clGetProgramInfo.html │ │ ├── clGetSamplerInfo.html │ │ ├── clGetSupportedImageFormats.html │ │ ├── clIcdGetPlatformIDsKHR.html │ │ ├── clLinkProgram.html │ │ ├── clReleaseCommandQueue.html │ │ ├── clReleaseContext.html │ │ ├── clReleaseDevice.html │ │ ├── clReleaseEvent.html │ │ ├── clReleaseKernel.html │ │ ├── clReleaseMemObject.html │ │ ├── clReleaseProgram.html │ │ ├── clReleaseSampler.html │ │ ├── clRetainCommandQueue.html │ │ ├── clRetainContext.html │ │ ├── clRetainDevice.html │ │ ├── clRetainEvent.html │ │ ├── clRetainKernel.html │ │ ├── clRetainMemObject.html │ │ ├── clRetainProgram.html │ │ ├── clRetainSampler.html │ │ ├── clSVMAlloc.html │ │ ├── clSVMFree.html │ │ ├── clSetDefaultDeviceCommandQueue.html │ │ ├── clSetEventCallback.html │ │ ├── clSetKernelArg.html │ │ ├── clSetKernelArgSVMPointer.html │ │ ├── clSetKernelExecInfo.html │ │ ├── clSetMemObjectDestructorCallback.html │ │ ├── clSetUserEventStatus.html │ │ ├── clTerminateContextKHR.html │ │ ├── clUnloadPlatformCompiler.html │ │ ├── clWaitForEvents.html │ │ ├── cl_image_desc.html │ │ ├── cl_image_format.html │ │ ├── cl_khr_3d_image_writes.html │ │ ├── cl_khr_byte_addressable_store.html │ │ ├── cl_khr_context_abort.html │ │ ├── cl_khr_d3d10_sharing.html │ │ ├── cl_khr_d3d11_sharing.html │ │ ├── cl_khr_depth_images.html │ │ ├── cl_khr_device_enqueue_local_arg_types.html │ │ ├── cl_khr_dx9_media_sharing.html │ │ ├── cl_khr_egl_event.html │ │ ├── cl_khr_egl_image.html │ │ ├── cl_khr_fp16.html │ │ ├── cl_khr_fp64.html │ │ ├── cl_khr_gl_depth_images.html │ │ ├── cl_khr_gl_event.html │ │ ├── cl_khr_gl_msaa_sharing.html │ │ ├── cl_khr_gl_sharing.html │ │ ├── cl_khr_global_int32_base_atomics.html │ │ ├── cl_khr_global_int32_extended_atomics.html │ │ ├── cl_khr_icd.html │ │ ├── cl_khr_il_program.html │ │ ├── cl_khr_image2d_from_buffer.html │ │ ├── cl_khr_initialize_memory.html │ │ ├── cl_khr_int64_base_atomics.html │ │ ├── cl_khr_int64_extended_atomics.html │ │ ├── cl_khr_local_int32_base_atomics.html │ │ ├── cl_khr_local_int32_extended_atomics.html │ │ ├── cl_khr_mipmap_image.html │ │ ├── cl_khr_priority_hints.html │ │ ├── cl_khr_spir.html │ │ ├── cl_khr_srgb_image_writes.html │ │ ├── cl_khr_subgroups.html │ │ ├── cl_khr_terminate_context.html │ │ ├── cl_khr_throttle_hints.html │ │ ├── clamp_common.html │ │ ├── clamp_integer.html │ │ ├── classDiagram.html │ │ ├── classDiagram.jpg │ │ ├── clz.html │ │ ├── commit_read_pipe.html │ │ ├── commit_write_pipe.html │ │ ├── commonFunctions.html │ │ ├── commonMax.html │ │ ├── commonMin.html │ │ ├── constant.html │ │ ├── convert_T.html │ │ ├── copyright.inc.xsl │ │ ├── copysign.html │ │ ├── cos.html │ │ ├── create_user_event.html │ │ ├── cross.html │ │ ├── ctz.html │ │ ├── dataTypes.html │ │ ├── degrees.html │ │ ├── deprecated.html │ │ ├── distance.html │ │ ├── divide.html │ │ ├── dot.html │ │ ├── enqueue_kernel.html │ │ ├── enqueue_marker.html │ │ ├── enums.html │ │ ├── erf.html │ │ ├── eventFunctions.html │ │ ├── exp.html │ │ ├── fabs.html │ │ ├── fast_distance.html │ │ ├── fast_length.html │ │ ├── fast_normalize.html │ │ ├── fdim.html │ │ ├── floor.html │ │ ├── fma.html │ │ ├── fmax.html │ │ ├── fmin.html │ │ ├── fmod.html │ │ ├── fract.html │ │ ├── frexp.html │ │ ├── functionQualifiers.html │ │ ├── genericAddressSpace.html │ │ ├── geometricFunctions.html │ │ ├── get_default_queue.html │ │ ├── get_enqueued_local_size.html │ │ ├── get_global_id.html │ │ ├── get_global_linear_id.html │ │ ├── get_global_offset.html │ │ ├── get_global_size.html │ │ ├── get_group_id.html │ │ ├── get_image_array_size.html │ │ ├── get_image_channel_data_type.html │ │ ├── get_image_channel_order.html │ │ ├── get_image_depth.html │ │ ├── get_image_dim.html │ │ ├── get_image_height.html │ │ ├── get_image_num_mip_levels.html │ │ ├── get_image_num_samples.html │ │ ├── get_image_width.html │ │ ├── get_kernel_preferred_work_group_size_multiple.html │ │ ├── get_kernel_work_group_size.html │ │ ├── get_local_id.html │ │ ├── get_local_linear_id.html │ │ ├── get_local_size.html │ │ ├── get_num_groups.html │ │ ├── get_pipe_max_packets.html │ │ ├── get_pipe_num_packets.html │ │ ├── get_work_dim.html │ │ ├── global.html │ │ ├── hadd.html │ │ ├── headBackground-bigger.jpg │ │ ├── headBackground.jpg │ │ ├── helperFunctions.html │ │ ├── hypot.html │ │ ├── ilogb.html │ │ ├── imageFunctions.html │ │ ├── index.html │ │ ├── integerFunctions.html │ │ ├── integerMax.html │ │ ├── is_valid_event.html │ │ ├── is_valid_reserve_id.html │ │ ├── isequal.html │ │ ├── isfinite.html │ │ ├── isgreater.html │ │ ├── isgreaterequal.html │ │ ├── isinf.html │ │ ├── isless.html │ │ ├── islessequal.html │ │ ├── islessgreater.html │ │ ├── isnan.html │ │ ├── isnormal.html │ │ ├── isnotequal.html │ │ ├── isordered.html │ │ ├── isunordered.html │ │ ├── ldexp.html │ │ ├── length.html │ │ ├── lgamma.html │ │ ├── local.html │ │ ├── log.html │ │ ├── macroLimits.html │ │ ├── mad.html │ │ ├── mad24.html │ │ ├── mad_hi.html │ │ ├── mad_sat.html │ │ ├── mag.html │ │ ├── mathConstants.html │ │ ├── mathFunctions.html │ │ ├── memory_order.html │ │ ├── memory_scope.html │ │ ├── miscVectorFunctions.html │ │ ├── mix.html │ │ ├── modf.html │ │ ├── mul24.html │ │ ├── mul_hi.html │ │ ├── nan.html │ │ ├── ndrange.html │ │ ├── nextafter.html │ │ ├── normalize.html │ │ ├── oclRefPages-Title.html │ │ ├── opencl-man.xsl │ │ ├── operators.html │ │ ├── otherDataTypes.html │ │ ├── pageNumberLookup.rb │ │ ├── pdficon_small1.gif │ │ ├── pipeFunctions.html │ │ ├── popcount.html │ │ ├── pow.html │ │ ├── prefetch.html │ │ ├── preprocessorDirectives.html │ │ ├── present.css │ │ ├── printfFunction.html │ │ ├── private.html │ │ ├── qualifiers.html │ │ ├── radians.html │ │ ├── read_imagef1d.html │ │ ├── read_imagef2d.html │ │ ├── read_imagef3d.html │ │ ├── read_imageh1d.html │ │ ├── read_imageh2d.html │ │ ├── read_imageh3d.html │ │ ├── read_imagei1d.html │ │ ├── read_imagei2d.html │ │ ├── read_imagei3d.html │ │ ├── read_pipe.html │ │ ├── recip.html │ │ ├── relationalFunctions.html │ │ ├── release_event.html │ │ ├── remainder.html │ │ ├── remquo.html │ │ ├── reserve_read_pipe.html │ │ ├── reserve_write_pipe.html │ │ ├── reservedDataTypes.html │ │ ├── restrictions.html │ │ ├── retain_event.html │ │ ├── rint.html │ │ ├── rootn.html │ │ ├── rotate.html │ │ ├── round.html │ │ ├── sampler_t.html │ │ ├── scalarDataTypes.html │ │ ├── select.html │ │ ├── set_user_event_status.html │ │ ├── sharedVirtualMemory.html │ │ ├── shuffle.html │ │ ├── sign.html │ │ ├── signbit.html │ │ ├── sin.html │ │ ├── smoothstep.html │ │ ├── sqrt.html │ │ ├── step.html │ │ ├── storageSpecifiers.html │ │ ├── style.css │ │ ├── styles-css.xsl │ │ ├── sub_sat.html │ │ ├── supportedImageFormats.html │ │ ├── syncFunctions.html │ │ ├── tan.html │ │ ├── tgamma.html │ │ ├── trunc.html │ │ ├── undohtml.css │ │ ├── upsample.html │ │ ├── vec_step.html │ │ ├── vectorDataLoadandStoreFunctions.html │ │ ├── vectorDataTypes.html │ │ ├── vload_half.html │ │ ├── vload_halfn.html │ │ ├── vloada_halfn.html │ │ ├── vloadn.html │ │ ├── vstore_half.html │ │ ├── vstore_halfn.html │ │ ├── vstorea_halfn.html │ │ ├── vstoren.html │ │ ├── wait_group_events.html │ │ ├── workItemFunctions.html │ │ ├── work_group_all.html │ │ ├── work_group_any.html │ │ ├── work_group_barrier.html │ │ ├── work_group_broadcast.html │ │ ├── work_group_commit_read_pipe.html │ │ ├── work_group_commit_write_pipe.html │ │ ├── work_group_reduce.html │ │ ├── work_group_reserve_read_pipe.html │ │ ├── work_group_reserve_write_pipe.html │ │ ├── work_group_scan_exclusive.html │ │ ├── work_group_scan_inclusive.html │ │ ├── write_image1d.html │ │ ├── write_image2d.html │ │ ├── write_image3d.html │ │ └── write_pipe.html ├── 2.2 │ └── docs │ │ ├── katex │ │ ├── README.md │ │ ├── contrib │ │ │ └── auto-render.min.js │ │ ├── fonts │ │ │ ├── KaTeX_AMS-Regular.eot │ │ │ ├── KaTeX_AMS-Regular.ttf │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ ├── KaTeX_Caligraphic-Bold.eot │ │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ ├── KaTeX_Caligraphic-Regular.eot │ │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ ├── KaTeX_Fraktur-Bold.eot │ │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ ├── KaTeX_Fraktur-Regular.eot │ │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ ├── KaTeX_Main-Bold.eot │ │ │ ├── KaTeX_Main-Bold.ttf │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ ├── KaTeX_Main-Italic.eot │ │ │ ├── KaTeX_Main-Italic.ttf │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ ├── KaTeX_Main-Regular.eot │ │ │ ├── KaTeX_Main-Regular.ttf │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ ├── KaTeX_Math-BoldItalic.eot │ │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ ├── KaTeX_Math-Italic.eot │ │ │ ├── KaTeX_Math-Italic.ttf │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ ├── KaTeX_Math-Regular.eot │ │ │ ├── KaTeX_Math-Regular.ttf │ │ │ ├── KaTeX_Math-Regular.woff │ │ │ ├── KaTeX_Math-Regular.woff2 │ │ │ ├── KaTeX_SansSerif-Bold.eot │ │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ ├── KaTeX_SansSerif-Italic.eot │ │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Regular.eot │ │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ ├── KaTeX_Script-Regular.eot │ │ │ ├── KaTeX_Script-Regular.ttf │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ ├── KaTeX_Size1-Regular.eot │ │ │ ├── KaTeX_Size1-Regular.ttf │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ ├── KaTeX_Size2-Regular.eot │ │ │ ├── KaTeX_Size2-Regular.ttf │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ ├── KaTeX_Size3-Regular.eot │ │ │ ├── KaTeX_Size3-Regular.ttf │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ ├── KaTeX_Size4-Regular.eot │ │ │ ├── KaTeX_Size4-Regular.ttf │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ ├── KaTeX_Typewriter-Regular.eot │ │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ └── KaTeX_Typewriter-Regular.woff2 │ │ ├── katex.css │ │ ├── katex.js │ │ ├── katex.min.css │ │ └── katex.min.js │ │ └── man │ │ └── html │ │ ├── .htaccess │ │ ├── ATOMIC_VAR_INIT.html │ │ ├── EXTENSION.html │ │ ├── OpenCL_Logo120.jpg │ │ ├── abstractDataTypes.html │ │ ├── accessQualifiers.html │ │ ├── addressOperator.html │ │ ├── addressSpaceQualifierFuncs.html │ │ ├── addressSpaceQualifiers.html │ │ ├── alignmentOfDataTypes.html │ │ ├── appScalarTypes.html │ │ ├── appVectorTypes.html │ │ ├── arithmeticOperators.html │ │ ├── as_typen.html │ │ ├── assignmentOperator.html │ │ ├── asyncCopyFunctions.html │ │ ├── atomicFlagTestAndSet.html │ │ ├── atomicFunctions.html │ │ ├── atomicRestrictions.html │ │ ├── atomicTypes.html │ │ ├── atomic_compare_exchange.html │ │ ├── atomic_exchange.html │ │ ├── atomic_fetch_key.html │ │ ├── atomic_flag.html │ │ ├── atomic_flag_clear.html │ │ ├── atomic_init.html │ │ ├── atomic_load.html │ │ ├── atomic_store.html │ │ ├── atomic_work_item_fence.html │ │ ├── attributes-blocksAndControlFlow.html │ │ ├── attributes-loopUnroll.html │ │ ├── attributes-types.html │ │ ├── attributes-variables.html │ │ ├── bitwiseOperators.html │ │ ├── blocks.html │ │ ├── bullets-contract.gif │ │ ├── bullets-end.gif │ │ ├── bullets-expand.gif │ │ ├── clBuildProgram.html │ │ ├── clCloneKernel.html │ │ ├── clCompileProgram.html │ │ ├── clCreateBuffer.html │ │ ├── clCreateCommandQueue.html │ │ ├── clCreateCommandQueueWithProperties.html │ │ ├── clCreateContext.html │ │ ├── clCreateContextFromType.html │ │ ├── clCreateEventFromEGLSyncKHR.html │ │ ├── clCreateEventFromGLsyncKHR.html │ │ ├── clCreateFromD3D10BufferKHR.html │ │ ├── clCreateFromD3D10Texture2DKHR.html │ │ ├── clCreateFromD3D10Texture3DKHR.html │ │ ├── clCreateFromD3D11BufferKHR.html │ │ ├── clCreateFromD3D11Texture2DKHR.html │ │ ├── clCreateFromD3D11Texture3DKHR.html │ │ ├── clCreateFromDX9MediaSurfaceKHR.html │ │ ├── clCreateFromEGLImageKHR.html │ │ ├── clCreateFromGLBuffer.html │ │ ├── clCreateFromGLRenderbuffer.html │ │ ├── clCreateFromGLTexture.html │ │ ├── clCreateImage.html │ │ ├── clCreateImage2D.html │ │ ├── clCreateImage3D.html │ │ ├── clCreateKernel.html │ │ ├── clCreateKernelsInProgram.html │ │ ├── clCreatePipe.html │ │ ├── clCreateProgramWithBinary.html │ │ ├── clCreateProgramWithBuiltInKernels.html │ │ ├── clCreateProgramWithIL.html │ │ ├── clCreateProgramWithSource.html │ │ ├── clCreateSampler.html │ │ ├── clCreateSamplerWithProperties.html │ │ ├── clCreateSubBuffer.html │ │ ├── clCreateSubDevices.html │ │ ├── clCreateUserEvent.html │ │ ├── clEnqueueAcquireD3D10ObjectsKHR.html │ │ ├── clEnqueueAcquireD3D11ObjectsKHR.html │ │ ├── clEnqueueAcquireDX9MediaSurfacesKHR.html │ │ ├── clEnqueueAcquireEGLObjectsKHR.html │ │ ├── clEnqueueAcquireGLObjects.html │ │ ├── clEnqueueBarrier.html │ │ ├── clEnqueueBarrierWithWaitList.html │ │ ├── clEnqueueCopyBuffer.html │ │ ├── clEnqueueCopyBufferRect.html │ │ ├── clEnqueueCopyBufferToImage.html │ │ ├── clEnqueueCopyImage.html │ │ ├── clEnqueueCopyImageToBuffer.html │ │ ├── clEnqueueFillBuffer.html │ │ ├── clEnqueueFillImage.html │ │ ├── clEnqueueMapBuffer.html │ │ ├── clEnqueueMapImage.html │ │ ├── clEnqueueMarker.html │ │ ├── clEnqueueMarkerWithWaitList.html │ │ ├── clEnqueueMigrateMemObjects.html │ │ ├── clEnqueueNDRangeKernel.html │ │ ├── clEnqueueNativeKernel.html │ │ ├── clEnqueueReadBuffer.html │ │ ├── clEnqueueReadBufferRect.html │ │ ├── clEnqueueReadImage.html │ │ ├── clEnqueueReleaseD3D10ObjectsKHR.html │ │ ├── clEnqueueReleaseD3D11ObjectsKHR.html │ │ ├── clEnqueueReleaseDX9MediaSurfacesKHR.html │ │ ├── clEnqueueReleaseEGLObjectsKHR.html │ │ ├── clEnqueueReleaseGLObjects.html │ │ ├── clEnqueueSVMFree.html │ │ ├── clEnqueueSVMMap.html │ │ ├── clEnqueueSVMMemFill.html │ │ ├── clEnqueueSVMMemcpy.html │ │ ├── clEnqueueSVMMigrateMem.html │ │ ├── clEnqueueSVMUnmap.html │ │ ├── clEnqueueTask.html │ │ ├── clEnqueueUnmapMemObject.html │ │ ├── clEnqueueWaitForEvents.html │ │ ├── clFinish.html │ │ ├── clFlush.html │ │ ├── clGetCommandQueueInfo.html │ │ ├── clGetContextInfo.html │ │ ├── clGetDeviceAndHostTimer.html │ │ ├── clGetDeviceIDs.html │ │ ├── clGetDeviceIDsFromD3D10KHR.html │ │ ├── clGetDeviceIDsFromD3D11KHR.html │ │ ├── clGetDeviceIDsFromDX9MediaAdapterKHR.html │ │ ├── clGetDeviceInfo.html │ │ ├── clGetEventInfo.html │ │ ├── clGetEventProfilingInfo.html │ │ ├── clGetExtensionFunctionAddressForPlatform.html │ │ ├── clGetGLContextInfoKHR.html │ │ ├── clGetGLObjectInfo.html │ │ ├── clGetGLTextureInfo.html │ │ ├── clGetHostTimer.html │ │ ├── clGetImageInfo.html │ │ ├── clGetKernelArgInfo.html │ │ ├── clGetKernelInfo.html │ │ ├── clGetKernelSubGroupInfo.html │ │ ├── clGetKernelWorkGroupInfo.html │ │ ├── clGetMemObjectInfo.html │ │ ├── clGetPipeInfo.html │ │ ├── clGetPlatformIDs.html │ │ ├── clGetPlatformInfo.html │ │ ├── clGetProgramBuildInfo.html │ │ ├── clGetProgramInfo.html │ │ ├── clGetSamplerInfo.html │ │ ├── clGetSupportedImageFormats.html │ │ ├── clIcdGetPlatformIDsKHR.html │ │ ├── clLinkProgram.html │ │ ├── clReleaseCommandQueue.html │ │ ├── clReleaseContext.html │ │ ├── clReleaseDevice.html │ │ ├── clReleaseEvent.html │ │ ├── clReleaseKernel.html │ │ ├── clReleaseMemObject.html │ │ ├── clReleaseProgram.html │ │ ├── clReleaseSampler.html │ │ ├── clRetainCommandQueue.html │ │ ├── clRetainContext.html │ │ ├── clRetainDevice.html │ │ ├── clRetainEvent.html │ │ ├── clRetainKernel.html │ │ ├── clRetainMemObject.html │ │ ├── clRetainProgram.html │ │ ├── clRetainSampler.html │ │ ├── clSVMAlloc.html │ │ ├── clSVMFree.html │ │ ├── clSetCommandQueueProperty.html │ │ ├── clSetDefaultDeviceCommandQueue.html │ │ ├── clSetEventCallback.html │ │ ├── clSetKernelArg.html │ │ ├── clSetKernelArgSVMPointer.html │ │ ├── clSetKernelExecInfo.html │ │ ├── clSetMemObjectDestructorCallback.html │ │ ├── clSetProgramReleaseCallback.html │ │ ├── clSetProgramSpecializationConstant.html │ │ ├── clSetUserEventStatus.html │ │ ├── clTerminateContextKHR.html │ │ ├── clUnloadCompiler.html │ │ ├── clUnloadPlatformCompiler.html │ │ ├── clWaitForEvents.html │ │ ├── cl_buffer_region.html │ │ ├── cl_image_desc.html │ │ ├── cl_image_format.html │ │ ├── cl_khr_3d_image_writes.html │ │ ├── cl_khr_byte_addressable_store.html │ │ ├── cl_khr_d3d10_sharing.html │ │ ├── cl_khr_d3d11_sharing.html │ │ ├── cl_khr_depth_images.html │ │ ├── cl_khr_device_enqueue_local_arg_types.html │ │ ├── cl_khr_dx9_media_sharing.html │ │ ├── cl_khr_egl_event.html │ │ ├── cl_khr_egl_image.html │ │ ├── cl_khr_fp16.html │ │ ├── cl_khr_fp64.html │ │ ├── cl_khr_gl_depth_images.html │ │ ├── cl_khr_gl_event.html │ │ ├── cl_khr_gl_msaa_sharing.html │ │ ├── cl_khr_gl_sharing.html │ │ ├── cl_khr_global_int32_base_atomics.html │ │ ├── cl_khr_global_int32_extended_atomics.html │ │ ├── cl_khr_icd.html │ │ ├── cl_khr_il_program.html │ │ ├── cl_khr_image2d_from_buffer.html │ │ ├── cl_khr_initialize_memory.html │ │ ├── cl_khr_int64_base_atomics.html │ │ ├── cl_khr_int64_extended_atomics.html │ │ ├── cl_khr_local_int32_base_atomics.html │ │ ├── cl_khr_local_int32_extended_atomics.html │ │ ├── cl_khr_mipmap_image.html │ │ ├── cl_khr_priority_hints.html │ │ ├── cl_khr_spir.html │ │ ├── cl_khr_srgb_image_writes.html │ │ ├── cl_khr_subgroups.html │ │ ├── cl_khr_terminate_context.html │ │ ├── cl_khr_throttle_hints.html │ │ ├── commaOperator.html │ │ ├── commonFunctions.html │ │ ├── constant.html │ │ ├── convert_T.html │ │ ├── deadLinks.html │ │ ├── enqueue_kernel.html │ │ ├── enqueue_marker.html │ │ ├── enums.html │ │ ├── equalityOperators.html │ │ ├── eventFunctions.html │ │ ├── fpMacros.html │ │ ├── genericAddressSpace.html │ │ ├── geometricFunctions.html │ │ ├── global.html │ │ ├── halfDataType.html │ │ ├── helperFunctions.html │ │ ├── imageQueryFunctions.html │ │ ├── imageReadFunctions.html │ │ ├── imageSamplerlessReadFunctions.html │ │ ├── imageWriteFunctions.html │ │ ├── index.html │ │ ├── indirectionOperator.html │ │ ├── integerFunctions.html │ │ ├── integerMacros.html │ │ ├── intro.html │ │ ├── kernel.html │ │ ├── kernelQueryFunctions.html │ │ ├── local.html │ │ ├── logicalOperators.html │ │ ├── mathConstants.html │ │ ├── mathFunctions.html │ │ ├── memory_order.html │ │ ├── memory_scope.html │ │ ├── miscVectorFunctions.html │ │ ├── operators.html │ │ ├── optionalAttributeQualifiers.html │ │ ├── otherDataTypes.html │ │ ├── pipeFunctions.html │ │ ├── pipeQueryFunctions.html │ │ ├── pipeWorkgroupFunctions.html │ │ ├── prePostOperators.html │ │ ├── preprocessorDirectives.html │ │ ├── present.css │ │ ├── printfFunction.html │ │ ├── private.html │ │ ├── relationalFunctions.html │ │ ├── relationalOperators.html │ │ ├── reservedDataTypes.html │ │ ├── restrictions.html │ │ ├── samplers.html │ │ ├── scalarDataTypes.html │ │ ├── selectionOperator.html │ │ ├── shiftOperators.html │ │ ├── sizeofOperator.html │ │ ├── storageSpecifiers.html │ │ ├── style.css │ │ ├── supportedImageFormats.html │ │ ├── syncFunctions.html │ │ ├── toc.html │ │ ├── unaryLogicalOperator.html │ │ ├── unaryOperators.html │ │ ├── undohtml.css │ │ ├── vectorDataLoadandStoreFunctions.html │ │ ├── vectorDataTypes.html │ │ ├── workGroupFunctions.html │ │ └── workItemFunctions.html └── 3.0 │ └── docs │ ├── katex │ ├── README.md │ ├── contrib │ │ └── auto-render.min.js │ ├── fonts │ │ ├── KaTeX_AMS-Regular.eot │ │ ├── KaTeX_AMS-Regular.ttf │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.eot │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.eot │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.eot │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.eot │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.eot │ │ ├── KaTeX_Main-Bold.ttf │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-Italic.eot │ │ ├── KaTeX_Main-Italic.ttf │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.eot │ │ ├── KaTeX_Main-Regular.ttf │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.eot │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.eot │ │ ├── KaTeX_Math-Italic.ttf │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_Math-Regular.eot │ │ ├── KaTeX_Math-Regular.ttf │ │ ├── KaTeX_Math-Regular.woff │ │ ├── KaTeX_Math-Regular.woff2 │ │ ├── KaTeX_SansSerif-Bold.eot │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.eot │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.eot │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.eot │ │ ├── KaTeX_Script-Regular.ttf │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.eot │ │ ├── KaTeX_Size1-Regular.ttf │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.eot │ │ ├── KaTeX_Size2-Regular.ttf │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.eot │ │ ├── KaTeX_Size3-Regular.ttf │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.eot │ │ ├── KaTeX_Size4-Regular.ttf │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.eot │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ ├── KaTeX_Typewriter-Regular.woff │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── katex.css │ ├── katex.js │ ├── katex.min.css │ └── katex.min.js │ └── man │ └── html │ ├── .htaccess │ ├── ATOMIC_VAR_INIT.html │ ├── EXTENSION.html │ ├── SELECT_ROUNDING_MODE.html │ ├── abstractDataTypes.html │ ├── accessQualifiers.html │ ├── addressOperator.html │ ├── addressSpaceQualifierFuncs.html │ ├── addressSpaceQualifiers.html │ ├── alignmentOfDataTypes.html │ ├── appScalarTypes.html │ ├── appVectorTypes.html │ ├── arithmeticOperators.html │ ├── as_typen.html │ ├── assignmentOperator.html │ ├── asyncCopyFunctions.html │ ├── atomicFlagTestAndSet.html │ ├── atomicFunctions.html │ ├── atomicRestrictions.html │ ├── atomicTypes.html │ ├── atomic_compare_exchange.html │ ├── atomic_exchange.html │ ├── atomic_fetch_key.html │ ├── atomic_flag.html │ ├── atomic_flag_clear.html │ ├── atomic_init.html │ ├── atomic_load.html │ ├── atomic_store.html │ ├── atomic_work_item_fence.html │ ├── attributes-blocksAndControlFlow.html │ ├── attributes-loopUnroll.html │ ├── attributes-types.html │ ├── attributes-variables.html │ ├── bitwiseOperators.html │ ├── blocks.html │ ├── bullets-contract.gif │ ├── bullets-end.gif │ ├── bullets-expand.gif │ ├── clBuildProgram.html │ ├── clCloneKernel.html │ ├── clCommandBarrierWithWaitListKHR.html │ ├── clCommandCopyBufferKHR.html │ ├── clCommandCopyBufferRectKHR.html │ ├── clCommandCopyBufferToImageKHR.html │ ├── clCommandCopyImageKHR.html │ ├── clCommandCopyImageToBufferKHR.html │ ├── clCommandFillBufferKHR.html │ ├── clCommandFillImageKHR.html │ ├── clCommandNDRangeKernelKHR.html │ ├── clCommandSVMMemFillKHR.html │ ├── clCommandSVMMemcpyKHR.html │ ├── clCompileProgram.html │ ├── clCreateBuffer.html │ ├── clCreateCommandBufferKHR.html │ ├── clCreateCommandQueue.html │ ├── clCreateCommandQueueWithProperties.html │ ├── clCreateContext.html │ ├── clCreateContextFromType.html │ ├── clCreateEventFromEGLSyncKHR.html │ ├── clCreateEventFromGLsyncKHR.html │ ├── clCreateFromD3D10BufferKHR.html │ ├── clCreateFromD3D10Texture2DKHR.html │ ├── clCreateFromD3D10Texture3DKHR.html │ ├── clCreateFromD3D11BufferKHR.html │ ├── clCreateFromD3D11Texture2DKHR.html │ ├── clCreateFromD3D11Texture3DKHR.html │ ├── clCreateFromDX9MediaSurfaceKHR.html │ ├── clCreateFromEGLImageKHR.html │ ├── clCreateFromGLBuffer.html │ ├── clCreateFromGLRenderbuffer.html │ ├── clCreateFromGLTexture.html │ ├── clCreateImage.html │ ├── clCreateImage2D.html │ ├── clCreateImage3D.html │ ├── clCreateKernel.html │ ├── clCreateKernelsInProgram.html │ ├── clCreatePipe.html │ ├── clCreateProgramWithBinary.html │ ├── clCreateProgramWithBuiltInKernels.html │ ├── clCreateProgramWithIL.html │ ├── clCreateProgramWithSource.html │ ├── clCreateSampler.html │ ├── clCreateSamplerWithProperties.html │ ├── clCreateSemaphoreWithPropertiesKHR.html │ ├── clCreateSubBuffer.html │ ├── clCreateSubDevices.html │ ├── clCreateUserEvent.html │ ├── clEnqueueAcquireD3D10ObjectsKHR.html │ ├── clEnqueueAcquireD3D11ObjectsKHR.html │ ├── clEnqueueAcquireDX9MediaSurfacesKHR.html │ ├── clEnqueueAcquireEGLObjectsKHR.html │ ├── clEnqueueAcquireExternalMemObjectsKHR.html │ ├── clEnqueueAcquireGLObjects.html │ ├── clEnqueueBarrier.html │ ├── clEnqueueBarrierWithWaitList.html │ ├── clEnqueueCommandBufferKHR.html │ ├── clEnqueueCopyBuffer.html │ ├── clEnqueueCopyBufferRect.html │ ├── clEnqueueCopyBufferToImage.html │ ├── clEnqueueCopyImage.html │ ├── clEnqueueCopyImageToBuffer.html │ ├── clEnqueueFillBuffer.html │ ├── clEnqueueFillImage.html │ ├── clEnqueueMapBuffer.html │ ├── clEnqueueMapImage.html │ ├── clEnqueueMarker.html │ ├── clEnqueueMarkerWithWaitList.html │ ├── clEnqueueMigrateMemObjects.html │ ├── clEnqueueNDRangeKernel.html │ ├── clEnqueueNativeKernel.html │ ├── clEnqueueReadBuffer.html │ ├── clEnqueueReadBufferRect.html │ ├── clEnqueueReadImage.html │ ├── clEnqueueReleaseD3D10ObjectsKHR.html │ ├── clEnqueueReleaseD3D11ObjectsKHR.html │ ├── clEnqueueReleaseDX9MediaSurfacesKHR.html │ ├── clEnqueueReleaseEGLObjectsKHR.html │ ├── clEnqueueReleaseExternalMemObjectsKHR.html │ ├── clEnqueueReleaseGLObjects.html │ ├── clEnqueueSVMFree.html │ ├── clEnqueueSVMMap.html │ ├── clEnqueueSVMMemFill.html │ ├── clEnqueueSVMMemcpy.html │ ├── clEnqueueSVMMigrateMem.html │ ├── clEnqueueSVMUnmap.html │ ├── clEnqueueSignalSemaphoresKHR.html │ ├── clEnqueueTask.html │ ├── clEnqueueUnmapMemObject.html │ ├── clEnqueueWaitForEvents.html │ ├── clEnqueueWaitSemaphoresKHR.html │ ├── clFinalizeCommandBufferKHR.html │ ├── clFinish.html │ ├── clFlush.html │ ├── clGetCommandBufferInfoKHR.html │ ├── clGetCommandQueueInfo.html │ ├── clGetContextInfo.html │ ├── clGetDeviceAndHostTimer.html │ ├── clGetDeviceIDs.html │ ├── clGetDeviceIDsFromD3D10KHR.html │ ├── clGetDeviceIDsFromD3D11KHR.html │ ├── clGetDeviceIDsFromDX9MediaAdapterKHR.html │ ├── clGetDeviceInfo.html │ ├── clGetEventInfo.html │ ├── clGetEventProfilingInfo.html │ ├── clGetExtensionFunctionAddressForPlatform.html │ ├── clGetGLContextInfoKHR.html │ ├── clGetGLObjectInfo.html │ ├── clGetGLTextureInfo.html │ ├── clGetHostTimer.html │ ├── clGetImageInfo.html │ ├── clGetImageRequirementsInfoEXT.html │ ├── clGetKernelArgInfo.html │ ├── clGetKernelInfo.html │ ├── clGetKernelSubGroupInfo.html │ ├── clGetKernelSuggestedLocalWorkSizeKHR.html │ ├── clGetKernelWorkGroupInfo.html │ ├── clGetMemObjectInfo.html │ ├── clGetMutableCommandInfoKHR.html │ ├── clGetPipeInfo.html │ ├── clGetPlatformIDs.html │ ├── clGetPlatformInfo.html │ ├── clGetProgramBuildInfo.html │ ├── clGetProgramInfo.html │ ├── clGetSamplerInfo.html │ ├── clGetSemaphoreHandleForTypeKHR.html │ ├── clGetSemaphoreInfoKHR.html │ ├── clGetSupportedImageFormats.html │ ├── clIcdGetFunctionAddressForPlatformKHR.html │ ├── clIcdGetPlatformIDsKHR.html │ ├── clIcdSetPlatformDispatchDataKHR.html │ ├── clLinkProgram.html │ ├── clReImportSemaphoreSyncFdKHR.html │ ├── clReleaseCommandBufferKHR.html │ ├── clReleaseCommandQueue.html │ ├── clReleaseContext.html │ ├── clReleaseDevice.html │ ├── clReleaseEvent.html │ ├── clReleaseKernel.html │ ├── clReleaseMemObject.html │ ├── clReleaseProgram.html │ ├── clReleaseSampler.html │ ├── clReleaseSemaphoreKHR.html │ ├── clRemapCommandBufferKHR.html │ ├── clRetainCommandBufferKHR.html │ ├── clRetainCommandQueue.html │ ├── clRetainContext.html │ ├── clRetainDevice.html │ ├── clRetainEvent.html │ ├── clRetainKernel.html │ ├── clRetainMemObject.html │ ├── clRetainProgram.html │ ├── clRetainSampler.html │ ├── clRetainSemaphoreKHR.html │ ├── clSVMAlloc.html │ ├── clSVMFree.html │ ├── clSetCommandQueueProperty.html │ ├── clSetContextDestructorCallback.html │ ├── clSetDefaultDeviceCommandQueue.html │ ├── clSetEventCallback.html │ ├── clSetKernelArg.html │ ├── clSetKernelArgDevicePointerEXT.html │ ├── clSetKernelArgSVMPointer.html │ ├── clSetKernelExecInfo.html │ ├── clSetMemObjectDestructorCallback.html │ ├── clSetProgramReleaseCallback.html │ ├── clSetProgramSpecializationConstant.html │ ├── clSetUserEventStatus.html │ ├── clTerminateContextKHR.html │ ├── clUnloadCompiler.html │ ├── clUnloadPlatformCompiler.html │ ├── clUpdateMutableCommandsKHR.html │ ├── clWaitForEvents.html │ ├── cl_buffer_region.html │ ├── cl_device_integer_dot_product_acceleration_properties_khr.html │ ├── cl_device_pci_bus_info_khr.html │ ├── cl_dx9_surface_info_khr.html │ ├── cl_ext_buffer_device_address.html │ ├── cl_ext_cxx_for_opencl.html │ ├── cl_ext_device_fission.html │ ├── cl_ext_float_atomics.html │ ├── cl_ext_image_from_buffer.html │ ├── cl_ext_image_raw10_raw12.html │ ├── cl_ext_image_requirements_info.html │ ├── cl_ext_image_unorm_int_2_101010.html │ ├── cl_ext_image_unsigned_10x6_12x4_14x2.html │ ├── cl_ext_immutable_memory_objects.html │ ├── cl_ext_migrate_memobject.html │ ├── cl_image_desc.html │ ├── cl_image_format.html │ ├── cl_khr_3d_image_writes.html │ ├── cl_khr_async_work_group_copy_fence.html │ ├── cl_khr_byte_addressable_store.html │ ├── cl_khr_command_buffer.html │ ├── cl_khr_command_buffer_multi_device.html │ ├── cl_khr_command_buffer_mutable_dispatch.html │ ├── cl_khr_create_command_queue.html │ ├── cl_khr_d3d10_sharing.html │ ├── cl_khr_d3d11_sharing.html │ ├── cl_khr_depth_images.html │ ├── cl_khr_device_enqueue_local_arg_types.html │ ├── cl_khr_device_uuid.html │ ├── cl_khr_dx9_media_sharing.html │ ├── cl_khr_egl_event.html │ ├── cl_khr_egl_image.html │ ├── cl_khr_expect_assume.html │ ├── cl_khr_extended_async_copies.html │ ├── cl_khr_extended_bit_ops.html │ ├── cl_khr_extended_versioning.html │ ├── cl_khr_external_memory.html │ ├── cl_khr_external_memory_android_hardware_buffer.html │ ├── cl_khr_external_memory_dma_buf.html │ ├── cl_khr_external_memory_opaque_fd.html │ ├── cl_khr_external_memory_win32.html │ ├── cl_khr_external_semaphore.html │ ├── cl_khr_external_semaphore_dx_fence.html │ ├── cl_khr_external_semaphore_opaque_fd.html │ ├── cl_khr_external_semaphore_sync_fd.html │ ├── cl_khr_external_semaphore_win32.html │ ├── cl_khr_fp16.html │ ├── cl_khr_fp64.html │ ├── cl_khr_gl_depth_images.html │ ├── cl_khr_gl_event.html │ ├── cl_khr_gl_msaa_sharing.html │ ├── cl_khr_gl_sharing.html │ ├── cl_khr_global_int32_base_atomics.html │ ├── cl_khr_global_int32_extended_atomics.html │ ├── cl_khr_icd.html │ ├── cl_khr_il_program.html │ ├── cl_khr_image2d_from_buffer.html │ ├── cl_khr_initialize_memory.html │ ├── cl_khr_int64_base_atomics.html │ ├── cl_khr_int64_extended_atomics.html │ ├── cl_khr_integer_dot_product.html │ ├── cl_khr_kernel_clock.html │ ├── cl_khr_local_int32_base_atomics.html │ ├── cl_khr_local_int32_extended_atomics.html │ ├── cl_khr_mipmap_image.html │ ├── cl_khr_mipmap_image_writes.html │ ├── cl_khr_pci_bus_info.html │ ├── cl_khr_priority_hints.html │ ├── cl_khr_select_fprounding_mode.html │ ├── cl_khr_semaphore.html │ ├── cl_khr_spir.html │ ├── cl_khr_spirv_extended_debug_info.html │ ├── cl_khr_spirv_linkonce_odr.html │ ├── cl_khr_spirv_no_integer_wrap_decoration.html │ ├── cl_khr_spirv_queries.html │ ├── cl_khr_srgb_image_writes.html │ ├── cl_khr_subgroup_ballot.html │ ├── cl_khr_subgroup_clustered_reduce.html │ ├── cl_khr_subgroup_extended_types.html │ ├── cl_khr_subgroup_named_barrier.html │ ├── cl_khr_subgroup_non_uniform_arithmetic.html │ ├── cl_khr_subgroup_non_uniform_vote.html │ ├── cl_khr_subgroup_rotate.html │ ├── cl_khr_subgroup_shuffle.html │ ├── cl_khr_subgroup_shuffle_relative.html │ ├── cl_khr_subgroups.html │ ├── cl_khr_suggested_local_work_size.html │ ├── cl_khr_terminate_context.html │ ├── cl_khr_throttle_hints.html │ ├── cl_khr_work_group_uniform_arithmetic.html │ ├── cl_mutable_dispatch_arg_khr.html │ ├── cl_mutable_dispatch_config_khr.html │ ├── cl_mutable_dispatch_exec_info_khr.html │ ├── cl_name_version.html │ ├── commaOperator.html │ ├── commonFunctions.html │ ├── constant.html │ ├── convert_T.html │ ├── deadLinks.html │ ├── enqueue_kernel.html │ ├── enqueue_marker.html │ ├── enums.html │ ├── equalityOperators.html │ ├── eventFunctions.html │ ├── extendedAsyncCopyFunctions.html │ ├── extendedBitOperations.html │ ├── fpMacros.html │ ├── genericAddressSpace.html │ ├── geometricFunctions.html │ ├── global.html │ ├── halfDataType.html │ ├── helperFunctions.html │ ├── imageQueryFunctions.html │ ├── imageReadFunctions.html │ ├── imageSamplerlessReadFunctions.html │ ├── imageWriteFunctions.html │ ├── index.html │ ├── indirectionOperator.html │ ├── integerFunctions.html │ ├── integerMacros.html │ ├── intro.html │ ├── kernel.html │ ├── kernelQueryFunctions.html │ ├── legacyFenceFunctions.html │ ├── local.html │ ├── logicalOperators.html │ ├── mathConstants.html │ ├── mathFunctions.html │ ├── memory_order.html │ ├── memory_scope.html │ ├── miscVectorFunctions.html │ ├── operators.html │ ├── optionalAttributeQualifiers.html │ ├── otherDataTypes.html │ ├── pipeFunctions.html │ ├── pipeQueryFunctions.html │ ├── pipeWorkgroupFunctions.html │ ├── prePostOperators.html │ ├── preprocessorDirectives.html │ ├── present.css │ ├── printfFunction.html │ ├── private.html │ ├── relationalFunctions.html │ ├── relationalOperators.html │ ├── reservedDataTypes.html │ ├── restrictions.html │ ├── samplers.html │ ├── scalarDataTypes.html │ ├── selectionOperator.html │ ├── shiftOperators.html │ ├── sizeofOperator.html │ ├── storageSpecifiers.html │ ├── style.css │ ├── subGroupFunctions.html │ ├── supportedImageFormats.html │ ├── syncFunctions.html │ ├── toc.html │ ├── unaryLogicalOperator.html │ ├── unaryOperators.html │ ├── undohtml.css │ ├── vectorDataLoadandStoreFunctions.html │ ├── vectorDataTypes.html │ ├── workGroupFunctions.html │ ├── workGroupUniformArithmeticFunctions.html │ └── workItemFunctions.html └── specs ├── 2.2 ├── html │ ├── OpenCL_API.html │ ├── OpenCL_C.html │ ├── OpenCL_Cxx.html │ ├── OpenCL_Env.html │ ├── OpenCL_Ext.html │ └── OpenCL_ICD_Installation.html ├── katex │ ├── README.md │ ├── contrib │ │ └── auto-render.min.js │ ├── fonts │ │ ├── KaTeX_AMS-Regular.eot │ │ ├── KaTeX_AMS-Regular.ttf │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.eot │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.eot │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.eot │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.eot │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.eot │ │ ├── KaTeX_Main-Bold.ttf │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-Italic.eot │ │ ├── KaTeX_Main-Italic.ttf │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.eot │ │ ├── KaTeX_Main-Regular.ttf │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.eot │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.eot │ │ ├── KaTeX_Math-Italic.ttf │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_Math-Regular.eot │ │ ├── KaTeX_Math-Regular.ttf │ │ ├── KaTeX_Math-Regular.woff │ │ ├── KaTeX_Math-Regular.woff2 │ │ ├── KaTeX_SansSerif-Bold.eot │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.eot │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.eot │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.eot │ │ ├── KaTeX_Script-Regular.ttf │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.eot │ │ ├── KaTeX_Size1-Regular.ttf │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.eot │ │ ├── KaTeX_Size2-Regular.ttf │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.eot │ │ ├── KaTeX_Size3-Regular.ttf │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.eot │ │ ├── KaTeX_Size4-Regular.ttf │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.eot │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ ├── KaTeX_Typewriter-Regular.woff │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── katex.css │ ├── katex.js │ ├── katex.min.css │ └── katex.min.js └── pdf │ ├── OpenCL_API.pdf │ ├── OpenCL_C.pdf │ ├── OpenCL_Cxx.pdf │ ├── OpenCL_Env.pdf │ ├── OpenCL_Ext.pdf │ └── OpenCL_ICD_Installation.pdf ├── 3.0-unified ├── html │ ├── OpenCL_API.html │ ├── OpenCL_C.html │ ├── OpenCL_Env.html │ └── OpenCL_Ext.html ├── katex │ ├── README.md │ ├── contrib │ │ └── auto-render.min.js │ ├── fonts │ │ ├── KaTeX_AMS-Regular.eot │ │ ├── KaTeX_AMS-Regular.ttf │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.eot │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.eot │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.eot │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.eot │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.eot │ │ ├── KaTeX_Main-Bold.ttf │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-Italic.eot │ │ ├── KaTeX_Main-Italic.ttf │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.eot │ │ ├── KaTeX_Main-Regular.ttf │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.eot │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.eot │ │ ├── KaTeX_Math-Italic.ttf │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_Math-Regular.eot │ │ ├── KaTeX_Math-Regular.ttf │ │ ├── KaTeX_Math-Regular.woff │ │ ├── KaTeX_Math-Regular.woff2 │ │ ├── KaTeX_SansSerif-Bold.eot │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.eot │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.eot │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.eot │ │ ├── KaTeX_Script-Regular.ttf │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.eot │ │ ├── KaTeX_Size1-Regular.ttf │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.eot │ │ ├── KaTeX_Size2-Regular.ttf │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.eot │ │ ├── KaTeX_Size3-Regular.ttf │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.eot │ │ ├── KaTeX_Size4-Regular.ttf │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.eot │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ ├── KaTeX_Typewriter-Regular.woff │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── katex.css │ ├── katex.js │ ├── katex.min.css │ └── katex.min.js └── pdf │ ├── OpenCL_API.pdf │ ├── OpenCL_C.pdf │ ├── OpenCL_Env.pdf │ └── OpenCL_Ext.pdf ├── opencl-1.0.pdf ├── opencl-1.1.pdf ├── opencl-1.2-extensions.pdf ├── opencl-1.2.pdf ├── opencl-2.0-extensions.pdf ├── opencl-2.0-openclc.pdf ├── opencl-2.0.pdf ├── opencl-2.1-environment.pdf ├── opencl-2.1-extensions.pdf ├── opencl-2.1.pdf ├── opencl-cplusplus-1.1.pdf ├── opencl-cplusplus-1.2.pdf └── opencl-icd-1.2.11.0.tgz /CODE_OF_CONDUCT.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/CODE_OF_CONDUCT.adoc -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/README.adoc -------------------------------------------------------------------------------- /extensions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/Makefile -------------------------------------------------------------------------------- /extensions/amd/cl_amd_fp64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/amd/cl_amd_fp64.txt -------------------------------------------------------------------------------- /extensions/arm/cl_arm_printf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/arm/cl_arm_printf.txt -------------------------------------------------------------------------------- /extensions/clext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/clext.php -------------------------------------------------------------------------------- /extensions/khr/cl_khr_icd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/khr/cl_khr_icd.txt -------------------------------------------------------------------------------- /extensions/khrext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/khrext.php -------------------------------------------------------------------------------- /extensions/makeindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/makeindex.py -------------------------------------------------------------------------------- /extensions/nextfree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/nextfree.py -------------------------------------------------------------------------------- /extensions/printreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/printreg.py -------------------------------------------------------------------------------- /extensions/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/registry.py -------------------------------------------------------------------------------- /extensions/sortreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/sortreg.py -------------------------------------------------------------------------------- /extensions/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/extensions/template.txt -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/index.php -------------------------------------------------------------------------------- /sdk/1.0/docs/man/EXTENSION.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/EXTENSION.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/FP_CONTRACT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/FP_CONTRACT.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/abs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/abs.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/acos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/acos.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/add_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/add_sat.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/any.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/any.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/as_typen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/as_typen.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/asin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/asin.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/atan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/atan.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/attribute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/attribute.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/barrier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/barrier.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/bitselect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/bitselect.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/cbrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/cbrt.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/ceil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/ceil.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/clFinish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/clFinish.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/clFlush.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/clFlush.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/cl_khr_fp16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/cl_khr_fp16.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/cl_khr_fp64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/cl_khr_fp64.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/clamp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/clamp.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/clz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/clz.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/commonMax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/commonMax.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/commonMin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/commonMin.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/constant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/constant.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/convert_T.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/convert_T.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/copysign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/copysign.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/cos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/cos.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/cross.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/degrees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/degrees.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/distance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/distance.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/divide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/divide.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/dot.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/enums.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/enums.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/erf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/erf.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/errors.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/exp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/exp.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/fabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/fabs.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/fast_length.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/fast_length.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/fdim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/fdim.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/floor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/floor.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/fma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/fma.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/fmax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/fmax.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/fmin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/fmin.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/fmod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/fmod.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/fract.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/fract.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/frexp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/frexp.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/gl_sharing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/gl_sharing.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/global.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/hadd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/hadd.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/hypot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/hypot.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/ilogb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/ilogb.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/integerMax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/integerMax.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/isequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/isequal.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/isfinite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/isfinite.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/isgreater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/isgreater.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/isinf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/isinf.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/isless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/isless.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/islessequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/islessequal.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/isnan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/isnan.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/isnormal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/isnormal.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/isnotequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/isnotequal.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/isordered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/isordered.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/isunordered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/isunordered.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/ldexp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/ldexp.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/length.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/length.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/lgamma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/lgamma.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/local.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/log.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/lookup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/lookup.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/macroLimits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/macroLimits.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/mad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/mad.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/mad24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/mad24.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/mad_hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/mad_hi.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/mad_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/mad_sat.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/mem_fence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/mem_fence.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/mix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/mix.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/modf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/modf.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/mul24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/mul24.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/mul_hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/mul_hi.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/nan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/nan.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/nextafter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/nextafter.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/normalize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/normalize.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/operators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/operators.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/pow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/pow.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/prefetch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/prefetch.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/private.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/radians.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/radians.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/recip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/recip.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/remainder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/remainder.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/remquo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/remquo.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/rint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/rint.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/rootn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/rootn.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/rotate.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/round.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/sampler_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/sampler_t.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/scratchn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/scratchn.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/select.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/sign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/sign.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/signbit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/signbit.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/sin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/sin.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/smoothstep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/smoothstep.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/sqrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/sqrt.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/step.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/sub_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/sub_sat.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/tan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/tan.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/tgamma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/tgamma.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/trunc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/trunc.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/upsample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/upsample.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/vload_half.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/vload_half.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/vload_halfn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/vload_halfn.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/vloadn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/vloadn.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/vstore_half.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/vstore_half.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/vstoren.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/vstoren.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/write_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/write_image.xml -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/Makefile -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/abs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/abs.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/acos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/acos.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/any.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/any.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/asin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/asin.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/atan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/atan.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/cbrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/cbrt.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/ceil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/ceil.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/clz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/clz.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/cos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/cos.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/dot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/dot.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/erf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/erf.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/exp.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/fabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/fabs.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/fdim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/fdim.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/fma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/fma.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/fmax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/fmax.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/fmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/fmin.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/fmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/fmod.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/hadd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/hadd.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/log.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/mad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/mad.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/mix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/mix.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/modf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/modf.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/nan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/nan.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/pow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/pow.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/rint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/rint.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/sign.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/sin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/sin.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/sqrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/sqrt.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/step.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/step.html -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/style.css -------------------------------------------------------------------------------- /sdk/1.0/docs/man/xhtml/tan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.0/docs/man/xhtml/tan.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/EXTENSION.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/EXTENSION.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/FP_CONTRACT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/FP_CONTRACT.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/abs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/abs.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/acos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/acos.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/add_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/add_sat.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/any.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/any.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/as_typen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/as_typen.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/asin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/asin.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/atan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/atan.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/atomic_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/atomic_add.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/atomic_and.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/atomic_and.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/atomic_dec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/atomic_dec.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/atomic_inc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/atomic_inc.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/atomic_max.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/atomic_max.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/atomic_min.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/atomic_min.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/atomic_or.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/atomic_or.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/atomic_sub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/atomic_sub.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/atomic_xchg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/atomic_xchg.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/atomic_xor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/atomic_xor.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/attribute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/attribute.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/barrier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/barrier.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/bitselect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/bitselect.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/cbrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/cbrt.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/ceil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/ceil.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/clFinish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/clFinish.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/clFlush.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/clFlush.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/cl_khr_fp16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/cl_khr_fp16.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/cl_khr_fp64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/cl_khr_fp64.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/clamp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/clamp.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/clz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/clz.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/commonMax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/commonMax.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/commonMin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/commonMin.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/constant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/constant.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/convert_T.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/convert_T.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/copysign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/copysign.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/cos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/cos.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/cross.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/dataTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/dataTypes.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/degrees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/degrees.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/distance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/distance.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/divide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/divide.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/dot.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/enums.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/enums.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/erf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/erf.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/exp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/exp.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/fabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/fabs.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/fast_length.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/fast_length.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/fdim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/fdim.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/floor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/floor.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/fma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/fma.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/fmax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/fmax.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/fmin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/fmin.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/fmod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/fmod.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/fract.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/fract.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/frexp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/frexp.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/gl_event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/gl_event.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/gl_sharing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/gl_sharing.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/global.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/hadd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/hadd.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/hypot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/hypot.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/ilogb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/ilogb.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/integerMax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/integerMax.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/isequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/isequal.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/isfinite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/isfinite.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/isgreater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/isgreater.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/isinf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/isinf.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/isless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/isless.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/islessequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/islessequal.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/isnan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/isnan.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/isnormal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/isnormal.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/isnotequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/isnotequal.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/isordered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/isordered.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/isunordered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/isunordered.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/ldexp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/ldexp.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/length.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/length.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/lgamma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/lgamma.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/local.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/log.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/macroLimits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/macroLimits.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/mad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/mad.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/mad24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/mad24.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/mad_hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/mad_hi.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/mad_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/mad_sat.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/mag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/mag.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/mem_fence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/mem_fence.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/mix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/mix.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/modf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/modf.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/mul24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/mul24.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/mul_hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/mul_hi.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/nan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/nan.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/nextafter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/nextafter.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/normalize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/normalize.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/operators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/operators.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/pow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/pow.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/prefetch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/prefetch.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/private.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/qualifiers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/qualifiers.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/radians.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/radians.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/recip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/recip.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/remainder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/remainder.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/remquo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/remquo.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/rint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/rint.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/rootn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/rootn.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/rotate.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/round.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/sampler_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/sampler_t.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/select.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/shuffle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/shuffle.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/sign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/sign.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/signbit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/signbit.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/sin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/sin.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/smoothstep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/smoothstep.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/sqrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/sqrt.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/step.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/sub_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/sub_sat.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/tan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/tan.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/tgamma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/tgamma.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/trunc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/trunc.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/upsample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/upsample.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/vec_step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/vec_step.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/vload_half.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/vload_half.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/vload_halfn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/vload_halfn.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/vloadn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/vloadn.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/vstore_half.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/vstore_half.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/vstoren.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/vstoren.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/write_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/write_image.xml -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/Makefile -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/abs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/abs.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/acos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/acos.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/any.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/any.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/asin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/asin.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/atan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/atan.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/cbrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/cbrt.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/ceil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/ceil.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/clz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/clz.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/cos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/cos.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/dot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/dot.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/erf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/erf.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/exp.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/fabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/fabs.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/fdim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/fdim.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/fma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/fma.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/fmax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/fmax.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/fmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/fmin.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/fmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/fmod.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/hadd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/hadd.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/log.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/mad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/mad.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/mag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/mag.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/mix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/mix.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/modf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/modf.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/nan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/nan.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/pow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/pow.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/rint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/rint.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/sign.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/sin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/sin.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/sqrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/sqrt.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/step.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/step.html -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/style.css -------------------------------------------------------------------------------- /sdk/1.1/docs/man/xhtml/tan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.1/docs/man/xhtml/tan.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/EXTENSION.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/EXTENSION.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/FP_CONTRACT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/FP_CONTRACT.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/README -------------------------------------------------------------------------------- /sdk/1.2/docs/man/abs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/abs.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/acos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/acos.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/add_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/add_sat.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/any.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/any.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/as_typen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/as_typen.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/asin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/asin.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atan.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atom_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atom_add.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atom_and.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atom_and.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atom_dec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atom_dec.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atom_inc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atom_inc.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atom_max.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atom_max.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atom_min.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atom_min.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atom_or.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atom_or.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atom_sub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atom_sub.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atom_xchg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atom_xchg.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atom_xor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atom_xor.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atomic_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atomic_add.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atomic_and.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atomic_and.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atomic_dec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atomic_dec.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atomic_inc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atomic_inc.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atomic_max.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atomic_max.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atomic_min.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atomic_min.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atomic_or.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atomic_or.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atomic_sub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atomic_sub.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atomic_xchg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atomic_xchg.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/atomic_xor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/atomic_xor.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/attribute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/attribute.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/barrier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/barrier.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/bitselect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/bitselect.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/cbrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/cbrt.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/ceil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/ceil.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/clFinish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/clFinish.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/clFlush.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/clFlush.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/cl_khr_fp16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/cl_khr_fp16.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/cl_khr_fp64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/cl_khr_fp64.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/cl_khr_icd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/cl_khr_icd.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/clamp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/clamp.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/clz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/clz.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/commonMax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/commonMax.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/commonMin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/commonMin.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/constant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/constant.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/convert_T.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/convert_T.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/copysign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/copysign.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/cos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/cos.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/cross.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/dataTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/dataTypes.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/degrees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/degrees.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/deprecated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/deprecated.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/distance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/distance.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/divide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/divide.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/dot.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/enums.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/enums.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/erf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/erf.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/exp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/exp.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/fabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/fabs.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/fast_length.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/fast_length.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/fdim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/fdim.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/floor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/floor.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/fma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/fma.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/fmax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/fmax.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/fmin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/fmin.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/fmod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/fmod.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/fract.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/fract.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/frexp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/frexp.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/gl_syncInc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/gl_syncInc.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/global.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/hadd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/hadd.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/hypot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/hypot.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/ilogb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/ilogb.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/integerMax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/integerMax.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/isequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/isequal.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/isfinite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/isfinite.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/isgreater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/isgreater.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/isinf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/isinf.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/isless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/isless.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/islessequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/islessequal.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/isnan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/isnan.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/isnormal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/isnormal.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/isnotequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/isnotequal.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/isordered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/isordered.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/isunordered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/isunordered.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/ldexp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/ldexp.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/length.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/length.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/lgamma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/lgamma.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/local.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/log.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/macroLimits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/macroLimits.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/mad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/mad.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/mad24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/mad24.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/mad_hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/mad_hi.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/mad_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/mad_sat.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/mag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/mag.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/mem_fence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/mem_fence.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/mix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/mix.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/modf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/modf.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/mul24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/mul24.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/mul_hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/mul_hi.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/nan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/nan.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/nextafter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/nextafter.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/normalize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/normalize.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/operators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/operators.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/popcount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/popcount.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/pow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/pow.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/prefetch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/prefetch.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/private.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/qualifiers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/qualifiers.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/radians.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/radians.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/recip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/recip.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/remainder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/remainder.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/remquo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/remquo.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/rint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/rint.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/rootn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/rootn.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/rotate.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/round.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/sampler_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/sampler_t.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/select.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/shuffle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/shuffle.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/sign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/sign.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/signbit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/signbit.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/sin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/sin.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/smoothstep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/smoothstep.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/sqrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/sqrt.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/step.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/sub_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/sub_sat.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/tan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/tan.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/tgamma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/tgamma.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/trunc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/trunc.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/upsample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/upsample.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/vec_step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/vec_step.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/vload_half.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/vload_half.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/vload_halfn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/vload_halfn.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/vloadn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/vloadn.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/vstore_half.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/vstore_half.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/vstoren.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/vstoren.xml -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/Makefile -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/abs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/abs.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/acos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/acos.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/any.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/any.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/asin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/asin.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/atan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/atan.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/cbrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/cbrt.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/ceil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/ceil.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/clz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/clz.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/cos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/cos.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/dot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/dot.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/erf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/erf.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/exp.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/fabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/fabs.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/fdim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/fdim.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/fma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/fma.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/fmax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/fmax.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/fmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/fmin.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/fmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/fmod.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/hadd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/hadd.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/log.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/mad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/mad.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/mag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/mag.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/mix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/mix.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/modf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/modf.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/nan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/nan.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/pow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/pow.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/rint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/rint.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/sign.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/sin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/sin.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/sqrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/sqrt.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/step.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/step.html -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/style.css -------------------------------------------------------------------------------- /sdk/1.2/docs/man/xhtml/tan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/1.2/docs/man/xhtml/tan.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/EXTENSION.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/EXTENSION.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/FP_CONTRACT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/FP_CONTRACT.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/README -------------------------------------------------------------------------------- /sdk/2.0/docs/man/abs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/abs.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/acos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/acos.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/add_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/add_sat.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/any.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/any.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/as_typen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/as_typen.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/asin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/asin.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atan.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atom_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atom_add.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atom_and.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atom_and.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atom_dec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atom_dec.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atom_inc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atom_inc.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atom_max.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atom_max.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atom_min.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atom_min.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atom_or.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atom_or.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atom_sub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atom_sub.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atom_xchg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atom_xchg.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atom_xor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atom_xor.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_add.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_and.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_and.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_dec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_dec.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_flag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_flag.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_inc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_inc.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_init.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_init.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_load.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_load.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_max.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_max.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_min.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_min.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_or.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_or.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_sub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_sub.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_xchg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_xchg.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/atomic_xor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/atomic_xor.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/attribute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/attribute.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/barrier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/barrier.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/bitselect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/bitselect.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/blocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/blocks.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/cbrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/cbrt.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/ceil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/ceil.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/clFinish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/clFinish.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/clFlush.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/clFlush.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/clSVMAlloc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/clSVMAlloc.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/clSVMFree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/clSVMFree.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/cl_khr_fp16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/cl_khr_fp16.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/cl_khr_fp64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/cl_khr_fp64.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/cl_khr_icd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/cl_khr_icd.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/cl_khr_spir.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/cl_khr_spir.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/clz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/clz.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/commonMax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/commonMax.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/commonMin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/commonMin.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/constant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/constant.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/convert_T.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/convert_T.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/copysign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/copysign.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/cos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/cos.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/cross.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/ctz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/ctz.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/dataTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/dataTypes.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/degrees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/degrees.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/deprecated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/deprecated.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/distance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/distance.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/divide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/divide.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/dot.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/enums.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/enums.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/erf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/erf.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/exp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/exp.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/fabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/fabs.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/fast_length.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/fast_length.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/fdim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/fdim.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/floor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/floor.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/fma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/fma.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/fmax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/fmax.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/fmin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/fmin.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/fmod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/fmod.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/fract.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/fract.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/frexp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/frexp.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/gl_syncInc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/gl_syncInc.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/global.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/hadd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/hadd.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/hypot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/hypot.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/ilogb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/ilogb.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/integerMax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/integerMax.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/isequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/isequal.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/isfinite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/isfinite.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/isgreater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/isgreater.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/isinf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/isinf.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/isless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/isless.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/islessequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/islessequal.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/isnan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/isnan.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/isnormal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/isnormal.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/isnotequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/isnotequal.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/isordered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/isordered.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/isunordered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/isunordered.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/ldexp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/ldexp.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/length.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/length.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/lgamma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/lgamma.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/local.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/log.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/macroLimits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/macroLimits.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/mad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/mad.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/mad24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/mad24.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/mad_hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/mad_hi.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/mad_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/mad_sat.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/mag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/mag.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/mix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/mix.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/modf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/modf.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/mul24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/mul24.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/mul_hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/mul_hi.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/nan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/nan.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/ndrange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/ndrange.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/nextafter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/nextafter.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/normalize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/normalize.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/operators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/operators.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/popcount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/popcount.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/pow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/pow.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/prefetch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/prefetch.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/private.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/qualifiers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/qualifiers.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/radians.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/radians.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/read_pipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/read_pipe.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/recip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/recip.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/remainder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/remainder.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/remquo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/remquo.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/rint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/rint.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/rootn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/rootn.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/rotate.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/round.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/sampler_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/sampler_t.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/select.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/shuffle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/shuffle.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/sign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/sign.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/signbit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/signbit.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/sin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/sin.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/smoothstep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/smoothstep.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/sqrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/sqrt.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/step.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/sub_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/sub_sat.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/tan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/tan.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/tgamma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/tgamma.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/trunc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/trunc.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/upsample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/upsample.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/vec_step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/vec_step.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/vload_half.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/vload_half.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/vload_halfn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/vload_halfn.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/vloadn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/vloadn.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/vstore_half.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/vstore_half.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/vstoren.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/vstoren.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/write_pipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/write_pipe.xml -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/Makefile -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/abs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/abs.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/acos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/acos.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/any.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/any.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/asin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/asin.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/atan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/atan.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/cbrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/cbrt.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/ceil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/ceil.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/clz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/clz.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/cos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/cos.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/ctz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/ctz.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/dot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/dot.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/erf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/erf.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/exp.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/fabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/fabs.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/fdim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/fdim.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/fma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/fma.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/fmax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/fmax.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/fmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/fmin.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/fmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/fmod.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/hadd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/hadd.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/log.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/mad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/mad.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/mag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/mag.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/mix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/mix.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/modf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/modf.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/nan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/nan.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/pow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/pow.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/rint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/rint.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/sign.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/sin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/sin.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/sqrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/sqrt.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/step.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/step.html -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/style.css -------------------------------------------------------------------------------- /sdk/2.0/docs/man/xhtml/tan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.0/docs/man/xhtml/tan.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/EXTENSION.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/EXTENSION.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/FP_CONTRACT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/FP_CONTRACT.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/README -------------------------------------------------------------------------------- /sdk/2.1/docs/man/abs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/abs.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/acos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/acos.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/add_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/add_sat.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/any.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/any.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/as_typen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/as_typen.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/asin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/asin.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/atan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/atan.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/atomic_flag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/atomic_flag.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/atomic_init.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/atomic_init.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/atomic_load.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/atomic_load.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/attribute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/attribute.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/barrier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/barrier.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/bitselect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/bitselect.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/blocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/blocks.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/cbrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/cbrt.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/ceil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/ceil.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/clFinish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/clFinish.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/clFlush.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/clFlush.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/clSVMAlloc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/clSVMAlloc.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/clSVMFree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/clSVMFree.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/cl_khr_fp16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/cl_khr_fp16.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/cl_khr_fp64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/cl_khr_fp64.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/cl_khr_icd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/cl_khr_icd.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/cl_khr_spir.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/cl_khr_spir.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/clz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/clz.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/commonMax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/commonMax.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/commonMin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/commonMin.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/constant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/constant.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/convert_T.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/convert_T.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/copysign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/copysign.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/cos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/cos.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/cross.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/ctz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/ctz.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/dataTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/dataTypes.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/degrees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/degrees.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/deprecated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/deprecated.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/distance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/distance.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/divide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/divide.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/dot.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/enums.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/enums.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/erf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/erf.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/exp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/exp.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/fabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/fabs.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/fast_length.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/fast_length.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/fdim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/fdim.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/floor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/floor.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/fma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/fma.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/fmax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/fmax.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/fmin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/fmin.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/fmod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/fmod.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/fract.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/fract.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/frexp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/frexp.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/gl_syncInc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/gl_syncInc.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/global.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/hadd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/hadd.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/hypot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/hypot.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/ilogb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/ilogb.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/integerMax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/integerMax.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/isequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/isequal.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/isfinite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/isfinite.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/isgreater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/isgreater.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/isinf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/isinf.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/isless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/isless.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/islessequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/islessequal.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/isnan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/isnan.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/isnormal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/isnormal.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/isnotequal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/isnotequal.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/isordered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/isordered.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/isunordered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/isunordered.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/ldexp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/ldexp.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/length.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/length.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/lgamma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/lgamma.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/local.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/log.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/macroLimits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/macroLimits.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/mad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/mad.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/mad24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/mad24.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/mad_hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/mad_hi.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/mad_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/mad_sat.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/mag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/mag.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/mix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/mix.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/modf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/modf.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/mul24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/mul24.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/mul_hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/mul_hi.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/nan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/nan.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/ndrange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/ndrange.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/nextafter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/nextafter.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/normalize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/normalize.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/operators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/operators.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/popcount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/popcount.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/pow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/pow.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/prefetch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/prefetch.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/private.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/qualifiers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/qualifiers.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/radians.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/radians.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/read_pipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/read_pipe.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/recip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/recip.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/remainder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/remainder.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/remquo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/remquo.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/rint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/rint.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/rootn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/rootn.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/rotate.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/round.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/sampler_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/sampler_t.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/select.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/shuffle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/shuffle.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/sign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/sign.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/signbit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/signbit.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/sin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/sin.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/smoothstep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/smoothstep.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/sqrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/sqrt.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/step.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/sub_sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/sub_sat.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/tan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/tan.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/tgamma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/tgamma.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/trunc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/trunc.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/upsample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/upsample.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/vec_step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/vec_step.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/vload_half.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/vload_half.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/vload_halfn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/vload_halfn.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/vloadn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/vloadn.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/vstore_half.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/vstore_half.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/vstoren.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/vstoren.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/write_pipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/write_pipe.xml -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/.htaccess -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/Makefile -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/abs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/abs.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/acos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/acos.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/any.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/any.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/asin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/asin.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/atan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/atan.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/cbrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/cbrt.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/ceil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/ceil.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/clz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/clz.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/cos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/cos.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/ctz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/ctz.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/dot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/dot.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/erf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/erf.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/exp.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/fabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/fabs.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/fdim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/fdim.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/fma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/fma.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/fmax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/fmax.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/fmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/fmin.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/fmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/fmod.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/hadd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/hadd.html -------------------------------------------------------------------------------- /sdk/2.1/docs/man/xhtml/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.1/docs/man/xhtml/log.html -------------------------------------------------------------------------------- /sdk/2.2/docs/katex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.2/docs/katex/README.md -------------------------------------------------------------------------------- /sdk/2.2/docs/katex/katex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.2/docs/katex/katex.css -------------------------------------------------------------------------------- /sdk/2.2/docs/katex/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/2.2/docs/katex/katex.js -------------------------------------------------------------------------------- /sdk/3.0/docs/katex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/3.0/docs/katex/README.md -------------------------------------------------------------------------------- /sdk/3.0/docs/katex/katex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/3.0/docs/katex/katex.css -------------------------------------------------------------------------------- /sdk/3.0/docs/katex/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/sdk/3.0/docs/katex/katex.js -------------------------------------------------------------------------------- /specs/2.2/html/OpenCL_C.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/2.2/html/OpenCL_C.html -------------------------------------------------------------------------------- /specs/2.2/katex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/2.2/katex/README.md -------------------------------------------------------------------------------- /specs/2.2/katex/katex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/2.2/katex/katex.css -------------------------------------------------------------------------------- /specs/2.2/katex/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/2.2/katex/katex.js -------------------------------------------------------------------------------- /specs/2.2/katex/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/2.2/katex/katex.min.css -------------------------------------------------------------------------------- /specs/2.2/katex/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/2.2/katex/katex.min.js -------------------------------------------------------------------------------- /specs/2.2/pdf/OpenCL_API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/2.2/pdf/OpenCL_API.pdf -------------------------------------------------------------------------------- /specs/2.2/pdf/OpenCL_C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/2.2/pdf/OpenCL_C.pdf -------------------------------------------------------------------------------- /specs/2.2/pdf/OpenCL_Cxx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/2.2/pdf/OpenCL_Cxx.pdf -------------------------------------------------------------------------------- /specs/2.2/pdf/OpenCL_Env.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/2.2/pdf/OpenCL_Env.pdf -------------------------------------------------------------------------------- /specs/2.2/pdf/OpenCL_Ext.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/2.2/pdf/OpenCL_Ext.pdf -------------------------------------------------------------------------------- /specs/opencl-1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/opencl-1.0.pdf -------------------------------------------------------------------------------- /specs/opencl-1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/opencl-1.1.pdf -------------------------------------------------------------------------------- /specs/opencl-1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/opencl-1.2.pdf -------------------------------------------------------------------------------- /specs/opencl-2.0-openclc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/opencl-2.0-openclc.pdf -------------------------------------------------------------------------------- /specs/opencl-2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/opencl-2.0.pdf -------------------------------------------------------------------------------- /specs/opencl-2.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/opencl-2.1.pdf -------------------------------------------------------------------------------- /specs/opencl-icd-1.2.11.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenCL-Registry/HEAD/specs/opencl-icd-1.2.11.0.tgz --------------------------------------------------------------------------------