├── .gitignore ├── 00_test_list.txt ├── README.md ├── conformance ├── 00_readme.txt ├── 00_test_list.txt ├── bindingTesting │ ├── 00_test_list.txt │ ├── contextAndCreate │ │ ├── 00_test_list.txt │ │ ├── cl_buffer_createSubBuffer.html │ │ ├── cl_context_createBuffer.html │ │ ├── cl_context_createCommandQueue.html │ │ ├── cl_context_createEvent.html │ │ ├── cl_context_createImage.html │ │ ├── cl_context_createProgram.html │ │ ├── cl_context_createSampler.html │ │ └── cl_context_createUserEvent.html │ ├── eventsAndCallbacks │ │ ├── 00_test_list.txt │ │ ├── cl_event_setCallback.html │ │ ├── cl_event_setStatus.html │ │ └── cl_webcl_waitForEvents.html │ ├── fetchInfo │ │ ├── 00_test_list.txt │ │ ├── cl_commandqueue_getinfo.html │ │ ├── cl_context_getSupportedImageFormats.html │ │ ├── cl_context_getinfo.html │ │ ├── cl_device_getinfo.html │ │ ├── cl_event_getProfilingInfo.html │ │ ├── cl_event_getinfo.html │ │ ├── cl_image_getinfo.html │ │ ├── cl_kernel_getWorkGroupInfo.html │ │ ├── cl_kernel_getinfo_async.html │ │ ├── cl_kernel_getinfo_sync.html │ │ ├── cl_memoryObject_getinfo.html │ │ ├── cl_platform_getinfo.html │ │ ├── cl_program_getBuildInfo_async.html │ │ ├── cl_program_getBuildInfo_sync.html │ │ ├── cl_program_getinfo.html │ │ └── cl_sampler_getinfo.html │ ├── globalObject │ │ ├── 00_test_list.txt │ │ ├── cl_platform_getDevices.html │ │ ├── cl_webcl_constants_check.html │ │ ├── cl_webcl_createContext.html │ │ ├── cl_webcl_enableExtension.html │ │ ├── cl_webcl_getPlatforms.html │ │ └── cl_webcl_getSupportedExtensions.html │ ├── programAndKernel │ │ ├── 00_test_list.txt │ │ ├── cl_kernel_getArgInfo_async.html │ │ ├── cl_kernel_getArgInfo_sync.html │ │ ├── cl_kernel_setArg.html │ │ ├── cl_program_build.html │ │ ├── cl_program_createKernel_async.html │ │ ├── cl_program_createKernel_sync.html │ │ ├── cl_program_createKernelsInProgram_async.html │ │ └── cl_program_createKernelsInProgram_sync.html │ ├── queues │ │ ├── 00_test_list.txt │ │ ├── cl_commandQueue_enqueueBarrier.html │ │ ├── cl_commandQueue_enqueueCopyBuffer.html │ │ ├── cl_commandQueue_enqueueCopyBufferRect.html │ │ ├── cl_commandQueue_enqueueCopyBufferToImage.html │ │ ├── cl_commandQueue_enqueueCopyImage.html │ │ ├── cl_commandQueue_enqueueCopyImageToBuffer.html │ │ ├── cl_commandQueue_enqueueMarker.html │ │ ├── cl_commandQueue_enqueueNDRangeKernel.html │ │ ├── cl_commandQueue_enqueueReadBuffer.html │ │ ├── cl_commandQueue_enqueueReadBufferRect.html │ │ ├── cl_commandQueue_enqueueReadImage.html │ │ ├── cl_commandQueue_enqueueWaitForEvents.html │ │ ├── cl_commandQueue_enqueueWriteBuffer.html │ │ ├── cl_commandQueue_enqueueWriteBufferRect.html │ │ ├── cl_commandQueue_enqueueWriteImage.html │ │ ├── cl_commandQueue_finish.html │ │ └── cl_commandQueue_flush.html │ └── release │ │ ├── 00_test_list.txt │ │ ├── cl_release.html │ │ └── cl_releaseAll.html ├── extension │ ├── 00_test_list.txt │ ├── KHR_fp16 │ │ ├── 00_test_list.txt │ │ ├── bindingTesting │ │ │ ├── 00_test_list.txt │ │ │ ├── cl_device_getinfo.html │ │ │ ├── cl_program_build.html │ │ │ └── cl_webcl_khr_fp16_constants_check.html │ │ └── functionalityTesting │ │ │ ├── 00_test_list.txt │ │ │ └── buildingInExtnKHR_fp16.html │ ├── KHR_fp64 │ │ ├── 00_test_list.txt │ │ ├── bindingTesting │ │ │ ├── 00_test_list.txt │ │ │ ├── cl_device_getinfo.html │ │ │ ├── cl_program_build.html │ │ │ └── cl_webcl_khr_fp64_constants_check.html │ │ └── functionalityTesting │ │ │ ├── 00_test_list.txt │ │ │ └── buildingInExtnKHR_fp64.html │ ├── KHR_gl_sharing │ │ ├── 00_test_list.txt │ │ ├── bindingTesting │ │ │ ├── 00_test_list.txt │ │ │ ├── cl_commandQueue_enqueueAcquireGLObjects.html │ │ │ ├── cl_commandQueue_enqueueReleaseGLObjects.html │ │ │ ├── cl_context_createFromGLBuffer.html │ │ │ ├── cl_context_createFromGLRenderbuffer.html │ │ │ ├── cl_context_createFromGLTexture.html │ │ │ ├── cl_context_getGLContext.html │ │ │ ├── cl_memoryObject_getGLObjectInfo.html │ │ │ ├── cl_webcl_clgl_constants_check.html │ │ │ └── cl_webcl_createContext_with_WebGLRenderingContext.html │ │ └── functionalityTesting │ │ │ ├── 00_test_list.txt │ │ │ └── bufferFromGLBuffer.html │ ├── WEBCL_html_image │ │ ├── 00_test_list.txt │ │ ├── cl_commandQueue_enqueueReadBufferRect_with_HTMLCanvasElement.html │ │ ├── cl_commandQueue_enqueueReadBuffer_with_HTMLCanvasElement.html │ │ ├── cl_commandQueue_enqueueReadImage_with_HTMLCanvasElement.html │ │ ├── cl_commandQueue_enqueueWriteBufferRect_with_HTMLCanvasElement.html │ │ ├── cl_commandQueue_enqueueWriteBufferRect_with_HTMLImageElement.html │ │ ├── cl_commandQueue_enqueueWriteBufferRect_with_imageData.html │ │ ├── cl_commandQueue_enqueueWriteBuffer_with_HTMLCanvasElement.html │ │ ├── cl_commandQueue_enqueueWriteBuffer_with_HTMLImageElement.html │ │ ├── cl_commandQueue_enqueueWriteBuffer_with_imageData.html │ │ ├── cl_commandQueue_enqueueWriteImage_with_HTMLCanvasElement.html │ │ ├── cl_commandQueue_enqueueWriteImage_with_HTMLImageElement.html │ │ ├── cl_commandQueue_enqueueWriteImage_with_imageData.html │ │ ├── cl_context_createBuffer_with_HTMLCanvasElement.html │ │ ├── cl_context_createBuffer_with_HTMLImageElement.html │ │ ├── cl_context_createBuffer_with_imageData.html │ │ ├── cl_context_createImage_with_HTMLCanvasElement.html │ │ ├── cl_context_createImage_with_HTMLImageElement.html │ │ ├── cl_context_createImage_with_imageData.html │ │ ├── createBufferValidation.html │ │ └── createImageValidation.html │ └── WEBCL_html_video │ │ ├── 00_test_list.txt │ │ ├── cl_commandQueue_enqueueWriteImage_with_HTMLVideoElement.html │ │ └── cl_context_createImage_with_HTMLVideoElement.html ├── functionalityTesting │ ├── 00_test_list.txt │ ├── basics │ │ ├── 00_test_list.txt │ │ ├── createBuffer.html │ │ ├── createBufferValidation.html │ │ ├── createCommandQueue.html │ │ ├── createContext.html │ │ ├── createImage.html │ │ ├── createImageValidation.html │ │ ├── createKernelsInProgram.html │ │ ├── createProgram.html │ │ └── createSampler.html │ ├── buildingAndRunning │ │ ├── 00_test_list.txt │ │ ├── buildCallback.html │ │ ├── buildOptions.html │ │ ├── setArg_Vector.html │ │ ├── setArg_basic.html │ │ └── setArg_local.html │ ├── enqueueOperations │ │ ├── 00_test_list.txt │ │ ├── enqueueCopyBuffer.html │ │ ├── enqueueCopyBufferRect.html │ │ ├── enqueueCopyBufferToImage.html │ │ ├── enqueueCopyImage.html │ │ ├── enqueueCopyImageToBuffer.html │ │ ├── enqueueReadBuffer.html │ │ ├── enqueueReadBufferRect.html │ │ ├── enqueueReadBufferUsingKernel.html │ │ ├── enqueueReadImage.html │ │ ├── enqueueWriteBuffer.html │ │ ├── enqueueWriteBufferRect.html │ │ ├── enqueueWriteBufferUsingKernel.html │ │ ├── enqueueWriteImage.html │ │ └── finish.html │ ├── events │ │ ├── 00_test_list.txt │ │ ├── setCallback.html │ │ ├── setCallback_andReleaseEvent.html │ │ └── setCallback_multipleCalls.html │ └── release │ │ ├── 00_test_list.txt │ │ ├── release.html │ │ └── releaseAll.html └── security │ ├── 00_test_list.txt │ ├── cl_OpenCL_C_1.2_features_check.html │ └── cl_memoryInitializationCheck.html ├── resources ├── cl_global.js ├── cl_utils.js ├── clgl_utils.js ├── js-test-post.js ├── js-test-pre.js ├── js-test-style.css ├── kernels │ ├── basic_image_buffer_sampler.cl │ ├── copy_attributes.cl │ ├── double.cl │ ├── doubleVector.cl │ ├── empty_kernel.cl │ ├── getArg.cl │ ├── half.cl │ ├── image1d_array_type.cl │ ├── image1d_buffer_type.cl │ ├── image1d_type.cl │ ├── image2d_array_type.cl │ ├── kernel_with_struct_argument.cl │ ├── memoryCheckChar.cl │ ├── memoryCheckInt.cl │ ├── memoryCheckLong.cl │ ├── memoryCheckShort.cl │ ├── nbody_simulation.cl │ ├── nbody_simulation_bad.cl │ ├── options_test_kernel.cl │ ├── sample_copy_kernel.cl │ ├── sample_kernel_bad_name.cl │ ├── sample_kernel_code_bad.cl │ ├── sample_single_kernel.cl │ ├── sample_two_kernels_in_one.cl │ ├── setArg_Vector16.cl │ ├── setArg_Vector2.cl │ ├── setArg_Vector3.cl │ ├── setArg_Vector4.cl │ ├── setArg_Vector8.cl │ ├── setArg_array_notype.cl │ ├── setArg_basic.cl │ ├── setArg_basic_functionality.cl │ ├── setArg_basic_vectors.cl │ ├── setArg_local.cl │ ├── setArg_num_notype.cl │ ├── square.cl │ ├── square_with_attribute.cl │ ├── test_stream_read_char.cl │ ├── test_stream_read_float.cl │ ├── test_stream_read_int.cl │ ├── test_stream_read_long.cl │ ├── test_stream_read_short.cl │ ├── test_stream_read_uchar.cl │ ├── test_stream_read_uint.cl │ ├── test_stream_read_ulong.cl │ ├── test_stream_read_ushort.cl │ ├── test_stream_write_char.cl │ ├── test_stream_write_float.cl │ ├── test_stream_write_int.cl │ ├── test_stream_write_long.cl │ ├── test_stream_write_short.cl │ ├── test_stream_write_uchar.cl │ ├── test_stream_write_uint.cl │ ├── test_stream_write_ulong.cl │ └── test_stream_write_ushort.cl ├── pebbleHalf.jpg ├── pebbleHalf.png ├── red-green.mp4 ├── test-eval.js ├── webcl-logo.png └── webcl-test-harness.js ├── test-guidelines.md └── webcl-conformance-tests.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/.gitignore -------------------------------------------------------------------------------- /00_test_list.txt: -------------------------------------------------------------------------------- 1 | conformance/00_test_list.txt 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/README.md -------------------------------------------------------------------------------- /conformance/00_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/00_readme.txt -------------------------------------------------------------------------------- /conformance/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/00_test_list.txt -------------------------------------------------------------------------------- /conformance/bindingTesting/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/00_test_list.txt -------------------------------------------------------------------------------- /conformance/bindingTesting/contextAndCreate/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/contextAndCreate/00_test_list.txt -------------------------------------------------------------------------------- /conformance/bindingTesting/contextAndCreate/cl_buffer_createSubBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/contextAndCreate/cl_buffer_createSubBuffer.html -------------------------------------------------------------------------------- /conformance/bindingTesting/contextAndCreate/cl_context_createBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/contextAndCreate/cl_context_createBuffer.html -------------------------------------------------------------------------------- /conformance/bindingTesting/contextAndCreate/cl_context_createCommandQueue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/contextAndCreate/cl_context_createCommandQueue.html -------------------------------------------------------------------------------- /conformance/bindingTesting/contextAndCreate/cl_context_createEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/contextAndCreate/cl_context_createEvent.html -------------------------------------------------------------------------------- /conformance/bindingTesting/contextAndCreate/cl_context_createImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/contextAndCreate/cl_context_createImage.html -------------------------------------------------------------------------------- /conformance/bindingTesting/contextAndCreate/cl_context_createProgram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/contextAndCreate/cl_context_createProgram.html -------------------------------------------------------------------------------- /conformance/bindingTesting/contextAndCreate/cl_context_createSampler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/contextAndCreate/cl_context_createSampler.html -------------------------------------------------------------------------------- /conformance/bindingTesting/contextAndCreate/cl_context_createUserEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/contextAndCreate/cl_context_createUserEvent.html -------------------------------------------------------------------------------- /conformance/bindingTesting/eventsAndCallbacks/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/eventsAndCallbacks/00_test_list.txt -------------------------------------------------------------------------------- /conformance/bindingTesting/eventsAndCallbacks/cl_event_setCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/eventsAndCallbacks/cl_event_setCallback.html -------------------------------------------------------------------------------- /conformance/bindingTesting/eventsAndCallbacks/cl_event_setStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/eventsAndCallbacks/cl_event_setStatus.html -------------------------------------------------------------------------------- /conformance/bindingTesting/eventsAndCallbacks/cl_webcl_waitForEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/eventsAndCallbacks/cl_webcl_waitForEvents.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/00_test_list.txt -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_commandqueue_getinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_commandqueue_getinfo.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_context_getSupportedImageFormats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_context_getSupportedImageFormats.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_context_getinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_context_getinfo.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_device_getinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_device_getinfo.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_event_getProfilingInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_event_getProfilingInfo.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_event_getinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_event_getinfo.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_image_getinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_image_getinfo.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_kernel_getWorkGroupInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_kernel_getWorkGroupInfo.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_kernel_getinfo_async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_kernel_getinfo_async.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_kernel_getinfo_sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_kernel_getinfo_sync.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_memoryObject_getinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_memoryObject_getinfo.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_platform_getinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_platform_getinfo.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_program_getBuildInfo_async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_program_getBuildInfo_async.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_program_getBuildInfo_sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_program_getBuildInfo_sync.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_program_getinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_program_getinfo.html -------------------------------------------------------------------------------- /conformance/bindingTesting/fetchInfo/cl_sampler_getinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/fetchInfo/cl_sampler_getinfo.html -------------------------------------------------------------------------------- /conformance/bindingTesting/globalObject/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/globalObject/00_test_list.txt -------------------------------------------------------------------------------- /conformance/bindingTesting/globalObject/cl_platform_getDevices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/globalObject/cl_platform_getDevices.html -------------------------------------------------------------------------------- /conformance/bindingTesting/globalObject/cl_webcl_constants_check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/globalObject/cl_webcl_constants_check.html -------------------------------------------------------------------------------- /conformance/bindingTesting/globalObject/cl_webcl_createContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/globalObject/cl_webcl_createContext.html -------------------------------------------------------------------------------- /conformance/bindingTesting/globalObject/cl_webcl_enableExtension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/globalObject/cl_webcl_enableExtension.html -------------------------------------------------------------------------------- /conformance/bindingTesting/globalObject/cl_webcl_getPlatforms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/globalObject/cl_webcl_getPlatforms.html -------------------------------------------------------------------------------- /conformance/bindingTesting/globalObject/cl_webcl_getSupportedExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/globalObject/cl_webcl_getSupportedExtensions.html -------------------------------------------------------------------------------- /conformance/bindingTesting/programAndKernel/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/programAndKernel/00_test_list.txt -------------------------------------------------------------------------------- /conformance/bindingTesting/programAndKernel/cl_kernel_getArgInfo_async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/programAndKernel/cl_kernel_getArgInfo_async.html -------------------------------------------------------------------------------- /conformance/bindingTesting/programAndKernel/cl_kernel_getArgInfo_sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/programAndKernel/cl_kernel_getArgInfo_sync.html -------------------------------------------------------------------------------- /conformance/bindingTesting/programAndKernel/cl_kernel_setArg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/programAndKernel/cl_kernel_setArg.html -------------------------------------------------------------------------------- /conformance/bindingTesting/programAndKernel/cl_program_build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/programAndKernel/cl_program_build.html -------------------------------------------------------------------------------- /conformance/bindingTesting/programAndKernel/cl_program_createKernel_async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/programAndKernel/cl_program_createKernel_async.html -------------------------------------------------------------------------------- /conformance/bindingTesting/programAndKernel/cl_program_createKernel_sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/programAndKernel/cl_program_createKernel_sync.html -------------------------------------------------------------------------------- /conformance/bindingTesting/programAndKernel/cl_program_createKernelsInProgram_async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/programAndKernel/cl_program_createKernelsInProgram_async.html -------------------------------------------------------------------------------- /conformance/bindingTesting/programAndKernel/cl_program_createKernelsInProgram_sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/programAndKernel/cl_program_createKernelsInProgram_sync.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/00_test_list.txt -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueBarrier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueBarrier.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueCopyBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueCopyBuffer.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueCopyBufferRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueCopyBufferRect.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueCopyBufferToImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueCopyBufferToImage.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueCopyImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueCopyImage.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueCopyImageToBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueCopyImageToBuffer.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueMarker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueMarker.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueNDRangeKernel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueNDRangeKernel.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueReadBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueReadBuffer.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueReadBufferRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueReadBufferRect.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueReadImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueReadImage.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueWaitForEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueWaitForEvents.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueWriteBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueWriteBuffer.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueWriteBufferRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueWriteBufferRect.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_enqueueWriteImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_enqueueWriteImage.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_finish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_finish.html -------------------------------------------------------------------------------- /conformance/bindingTesting/queues/cl_commandQueue_flush.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/queues/cl_commandQueue_flush.html -------------------------------------------------------------------------------- /conformance/bindingTesting/release/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/release/00_test_list.txt -------------------------------------------------------------------------------- /conformance/bindingTesting/release/cl_release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/release/cl_release.html -------------------------------------------------------------------------------- /conformance/bindingTesting/release/cl_releaseAll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/bindingTesting/release/cl_releaseAll.html -------------------------------------------------------------------------------- /conformance/extension/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/00_test_list.txt -------------------------------------------------------------------------------- /conformance/extension/KHR_fp16/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp16/00_test_list.txt -------------------------------------------------------------------------------- /conformance/extension/KHR_fp16/bindingTesting/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp16/bindingTesting/00_test_list.txt -------------------------------------------------------------------------------- /conformance/extension/KHR_fp16/bindingTesting/cl_device_getinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp16/bindingTesting/cl_device_getinfo.html -------------------------------------------------------------------------------- /conformance/extension/KHR_fp16/bindingTesting/cl_program_build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp16/bindingTesting/cl_program_build.html -------------------------------------------------------------------------------- /conformance/extension/KHR_fp16/bindingTesting/cl_webcl_khr_fp16_constants_check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp16/bindingTesting/cl_webcl_khr_fp16_constants_check.html -------------------------------------------------------------------------------- /conformance/extension/KHR_fp16/functionalityTesting/00_test_list.txt: -------------------------------------------------------------------------------- 1 | buildingInExtnKHR_fp16.html 2 | -------------------------------------------------------------------------------- /conformance/extension/KHR_fp16/functionalityTesting/buildingInExtnKHR_fp16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp16/functionalityTesting/buildingInExtnKHR_fp16.html -------------------------------------------------------------------------------- /conformance/extension/KHR_fp64/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp64/00_test_list.txt -------------------------------------------------------------------------------- /conformance/extension/KHR_fp64/bindingTesting/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp64/bindingTesting/00_test_list.txt -------------------------------------------------------------------------------- /conformance/extension/KHR_fp64/bindingTesting/cl_device_getinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp64/bindingTesting/cl_device_getinfo.html -------------------------------------------------------------------------------- /conformance/extension/KHR_fp64/bindingTesting/cl_program_build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp64/bindingTesting/cl_program_build.html -------------------------------------------------------------------------------- /conformance/extension/KHR_fp64/bindingTesting/cl_webcl_khr_fp64_constants_check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp64/bindingTesting/cl_webcl_khr_fp64_constants_check.html -------------------------------------------------------------------------------- /conformance/extension/KHR_fp64/functionalityTesting/00_test_list.txt: -------------------------------------------------------------------------------- 1 | buildingInExtnKHR_fp64.html 2 | -------------------------------------------------------------------------------- /conformance/extension/KHR_fp64/functionalityTesting/buildingInExtnKHR_fp64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_fp64/functionalityTesting/buildingInExtnKHR_fp64.html -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/00_test_list.txt -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/bindingTesting/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/bindingTesting/00_test_list.txt -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/bindingTesting/cl_commandQueue_enqueueAcquireGLObjects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/bindingTesting/cl_commandQueue_enqueueAcquireGLObjects.html -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/bindingTesting/cl_commandQueue_enqueueReleaseGLObjects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/bindingTesting/cl_commandQueue_enqueueReleaseGLObjects.html -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/bindingTesting/cl_context_createFromGLBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/bindingTesting/cl_context_createFromGLBuffer.html -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/bindingTesting/cl_context_createFromGLRenderbuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/bindingTesting/cl_context_createFromGLRenderbuffer.html -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/bindingTesting/cl_context_createFromGLTexture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/bindingTesting/cl_context_createFromGLTexture.html -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/bindingTesting/cl_context_getGLContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/bindingTesting/cl_context_getGLContext.html -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/bindingTesting/cl_memoryObject_getGLObjectInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/bindingTesting/cl_memoryObject_getGLObjectInfo.html -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/bindingTesting/cl_webcl_clgl_constants_check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/bindingTesting/cl_webcl_clgl_constants_check.html -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/bindingTesting/cl_webcl_createContext_with_WebGLRenderingContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/bindingTesting/cl_webcl_createContext_with_WebGLRenderingContext.html -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/functionalityTesting/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/functionalityTesting/00_test_list.txt -------------------------------------------------------------------------------- /conformance/extension/KHR_gl_sharing/functionalityTesting/bufferFromGLBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/KHR_gl_sharing/functionalityTesting/bufferFromGLBuffer.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/00_test_list.txt -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueReadBufferRect_with_HTMLCanvasElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueReadBufferRect_with_HTMLCanvasElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueReadBuffer_with_HTMLCanvasElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueReadBuffer_with_HTMLCanvasElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueReadImage_with_HTMLCanvasElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueReadImage_with_HTMLCanvasElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBufferRect_with_HTMLCanvasElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBufferRect_with_HTMLCanvasElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBufferRect_with_HTMLImageElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBufferRect_with_HTMLImageElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBufferRect_with_imageData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBufferRect_with_imageData.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBuffer_with_HTMLCanvasElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBuffer_with_HTMLCanvasElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBuffer_with_HTMLImageElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBuffer_with_HTMLImageElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBuffer_with_imageData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteBuffer_with_imageData.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteImage_with_HTMLCanvasElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteImage_with_HTMLCanvasElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteImage_with_HTMLImageElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteImage_with_HTMLImageElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteImage_with_imageData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_commandQueue_enqueueWriteImage_with_imageData.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_context_createBuffer_with_HTMLCanvasElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_context_createBuffer_with_HTMLCanvasElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_context_createBuffer_with_HTMLImageElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_context_createBuffer_with_HTMLImageElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_context_createBuffer_with_imageData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_context_createBuffer_with_imageData.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_context_createImage_with_HTMLCanvasElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_context_createImage_with_HTMLCanvasElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_context_createImage_with_HTMLImageElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_context_createImage_with_HTMLImageElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/cl_context_createImage_with_imageData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/cl_context_createImage_with_imageData.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/createBufferValidation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/createBufferValidation.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_image/createImageValidation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_image/createImageValidation.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_video/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_video/00_test_list.txt -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_video/cl_commandQueue_enqueueWriteImage_with_HTMLVideoElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_video/cl_commandQueue_enqueueWriteImage_with_HTMLVideoElement.html -------------------------------------------------------------------------------- /conformance/extension/WEBCL_html_video/cl_context_createImage_with_HTMLVideoElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/extension/WEBCL_html_video/cl_context_createImage_with_HTMLVideoElement.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/00_test_list.txt -------------------------------------------------------------------------------- /conformance/functionalityTesting/basics/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/basics/00_test_list.txt -------------------------------------------------------------------------------- /conformance/functionalityTesting/basics/createBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/basics/createBuffer.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/basics/createBufferValidation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/basics/createBufferValidation.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/basics/createCommandQueue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/basics/createCommandQueue.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/basics/createContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/basics/createContext.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/basics/createImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/basics/createImage.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/basics/createImageValidation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/basics/createImageValidation.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/basics/createKernelsInProgram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/basics/createKernelsInProgram.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/basics/createProgram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/basics/createProgram.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/basics/createSampler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/basics/createSampler.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/buildingAndRunning/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/buildingAndRunning/00_test_list.txt -------------------------------------------------------------------------------- /conformance/functionalityTesting/buildingAndRunning/buildCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/buildingAndRunning/buildCallback.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/buildingAndRunning/buildOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/buildingAndRunning/buildOptions.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/buildingAndRunning/setArg_Vector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/buildingAndRunning/setArg_Vector.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/buildingAndRunning/setArg_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/buildingAndRunning/setArg_basic.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/buildingAndRunning/setArg_local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/buildingAndRunning/setArg_local.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/00_test_list.txt -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueCopyBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueCopyBuffer.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueCopyBufferRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueCopyBufferRect.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueCopyBufferToImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueCopyBufferToImage.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueCopyImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueCopyImage.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueCopyImageToBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueCopyImageToBuffer.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueReadBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueReadBuffer.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueReadBufferRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueReadBufferRect.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueReadBufferUsingKernel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueReadBufferUsingKernel.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueReadImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueReadImage.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueWriteBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueWriteBuffer.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueWriteBufferRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueWriteBufferRect.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueWriteBufferUsingKernel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueWriteBufferUsingKernel.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/enqueueWriteImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/enqueueWriteImage.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/enqueueOperations/finish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/enqueueOperations/finish.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/events/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/events/00_test_list.txt -------------------------------------------------------------------------------- /conformance/functionalityTesting/events/setCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/events/setCallback.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/events/setCallback_andReleaseEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/events/setCallback_andReleaseEvent.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/events/setCallback_multipleCalls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/events/setCallback_multipleCalls.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/release/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/release/00_test_list.txt -------------------------------------------------------------------------------- /conformance/functionalityTesting/release/release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/release/release.html -------------------------------------------------------------------------------- /conformance/functionalityTesting/release/releaseAll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/functionalityTesting/release/releaseAll.html -------------------------------------------------------------------------------- /conformance/security/00_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/security/00_test_list.txt -------------------------------------------------------------------------------- /conformance/security/cl_OpenCL_C_1.2_features_check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/security/cl_OpenCL_C_1.2_features_check.html -------------------------------------------------------------------------------- /conformance/security/cl_memoryInitializationCheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/conformance/security/cl_memoryInitializationCheck.html -------------------------------------------------------------------------------- /resources/cl_global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/cl_global.js -------------------------------------------------------------------------------- /resources/cl_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/cl_utils.js -------------------------------------------------------------------------------- /resources/clgl_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/clgl_utils.js -------------------------------------------------------------------------------- /resources/js-test-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/js-test-post.js -------------------------------------------------------------------------------- /resources/js-test-pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/js-test-pre.js -------------------------------------------------------------------------------- /resources/js-test-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/js-test-style.css -------------------------------------------------------------------------------- /resources/kernels/basic_image_buffer_sampler.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/basic_image_buffer_sampler.cl -------------------------------------------------------------------------------- /resources/kernels/copy_attributes.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/copy_attributes.cl -------------------------------------------------------------------------------- /resources/kernels/double.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/double.cl -------------------------------------------------------------------------------- /resources/kernels/doubleVector.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/doubleVector.cl -------------------------------------------------------------------------------- /resources/kernels/empty_kernel.cl: -------------------------------------------------------------------------------- 1 | __kernel void empty() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resources/kernels/getArg.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/getArg.cl -------------------------------------------------------------------------------- /resources/kernels/half.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/half.cl -------------------------------------------------------------------------------- /resources/kernels/image1d_array_type.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/image1d_array_type.cl -------------------------------------------------------------------------------- /resources/kernels/image1d_buffer_type.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/image1d_buffer_type.cl -------------------------------------------------------------------------------- /resources/kernels/image1d_type.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/image1d_type.cl -------------------------------------------------------------------------------- /resources/kernels/image2d_array_type.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/image2d_array_type.cl -------------------------------------------------------------------------------- /resources/kernels/kernel_with_struct_argument.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/kernel_with_struct_argument.cl -------------------------------------------------------------------------------- /resources/kernels/memoryCheckChar.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/memoryCheckChar.cl -------------------------------------------------------------------------------- /resources/kernels/memoryCheckInt.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/memoryCheckInt.cl -------------------------------------------------------------------------------- /resources/kernels/memoryCheckLong.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/memoryCheckLong.cl -------------------------------------------------------------------------------- /resources/kernels/memoryCheckShort.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/memoryCheckShort.cl -------------------------------------------------------------------------------- /resources/kernels/nbody_simulation.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/nbody_simulation.cl -------------------------------------------------------------------------------- /resources/kernels/nbody_simulation_bad.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/nbody_simulation_bad.cl -------------------------------------------------------------------------------- /resources/kernels/options_test_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/options_test_kernel.cl -------------------------------------------------------------------------------- /resources/kernels/sample_copy_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/sample_copy_kernel.cl -------------------------------------------------------------------------------- /resources/kernels/sample_kernel_bad_name.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/sample_kernel_bad_name.cl -------------------------------------------------------------------------------- /resources/kernels/sample_kernel_code_bad.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/sample_kernel_code_bad.cl -------------------------------------------------------------------------------- /resources/kernels/sample_single_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/sample_single_kernel.cl -------------------------------------------------------------------------------- /resources/kernels/sample_two_kernels_in_one.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/sample_two_kernels_in_one.cl -------------------------------------------------------------------------------- /resources/kernels/setArg_Vector16.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/setArg_Vector16.cl -------------------------------------------------------------------------------- /resources/kernels/setArg_Vector2.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/setArg_Vector2.cl -------------------------------------------------------------------------------- /resources/kernels/setArg_Vector3.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/setArg_Vector3.cl -------------------------------------------------------------------------------- /resources/kernels/setArg_Vector4.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/setArg_Vector4.cl -------------------------------------------------------------------------------- /resources/kernels/setArg_Vector8.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/setArg_Vector8.cl -------------------------------------------------------------------------------- /resources/kernels/setArg_array_notype.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/setArg_array_notype.cl -------------------------------------------------------------------------------- /resources/kernels/setArg_basic.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/setArg_basic.cl -------------------------------------------------------------------------------- /resources/kernels/setArg_basic_functionality.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/setArg_basic_functionality.cl -------------------------------------------------------------------------------- /resources/kernels/setArg_basic_vectors.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/setArg_basic_vectors.cl -------------------------------------------------------------------------------- /resources/kernels/setArg_local.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/setArg_local.cl -------------------------------------------------------------------------------- /resources/kernels/setArg_num_notype.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/setArg_num_notype.cl -------------------------------------------------------------------------------- /resources/kernels/square.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/square.cl -------------------------------------------------------------------------------- /resources/kernels/square_with_attribute.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/square_with_attribute.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_read_char.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_read_char.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_read_float.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_read_float.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_read_int.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_read_int.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_read_long.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_read_long.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_read_short.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_read_short.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_read_uchar.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_read_uchar.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_read_uint.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_read_uint.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_read_ulong.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_read_ulong.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_read_ushort.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_read_ushort.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_write_char.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_write_char.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_write_float.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_write_float.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_write_int.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_write_int.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_write_long.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_write_long.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_write_short.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_write_short.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_write_uchar.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_write_uchar.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_write_uint.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_write_uint.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_write_ulong.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_write_ulong.cl -------------------------------------------------------------------------------- /resources/kernels/test_stream_write_ushort.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/kernels/test_stream_write_ushort.cl -------------------------------------------------------------------------------- /resources/pebbleHalf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/pebbleHalf.jpg -------------------------------------------------------------------------------- /resources/pebbleHalf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/pebbleHalf.png -------------------------------------------------------------------------------- /resources/red-green.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/red-green.mp4 -------------------------------------------------------------------------------- /resources/test-eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/test-eval.js -------------------------------------------------------------------------------- /resources/webcl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/webcl-logo.png -------------------------------------------------------------------------------- /resources/webcl-test-harness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/resources/webcl-test-harness.js -------------------------------------------------------------------------------- /test-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/test-guidelines.md -------------------------------------------------------------------------------- /webcl-conformance-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroupArchives/WebCL-conformance/HEAD/webcl-conformance-tests.html --------------------------------------------------------------------------------