├── .azuredevops └── rocm-ci.yml ├── .clang-format ├── .gitattributes ├── .github ├── hooks │ ├── clang-format-check.sh │ └── pre-commit ├── palamida.yml ├── pull_request_template.md ├── scripts │ └── validate_pr_description.py └── workflows │ ├── ai_codeql_fix.yaml │ ├── ai_codeql_historical.yml │ ├── clang-format.yml │ ├── keyword-check.yml │ ├── kws-caller.yml │ ├── pr-title-validate.yml │ ├── rocm-ci-caller.yml │ └── validate-pr-description.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE.md ├── README-doc.md ├── README.md ├── hipamd ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE.md ├── bin │ ├── roc-obj │ ├── roc-obj-extract │ ├── roc-obj-extract.bat │ ├── roc-obj-ls │ └── roc-obj-ls.bat ├── hip-config-amd.cmake.in ├── hip-config-nvidia.cmake.in ├── hip-config.cmake.in ├── include │ └── hip │ │ └── amd_detail │ │ ├── amd_channel_descriptor.h │ │ ├── amd_device_functions.h │ │ ├── amd_hip_atomic.h │ │ ├── amd_hip_bf16.h │ │ ├── amd_hip_bfloat16.h │ │ ├── amd_hip_common.h │ │ ├── amd_hip_complex.h │ │ ├── amd_hip_cooperative_groups.h │ │ ├── amd_hip_fp16.h │ │ ├── amd_hip_fp4.h │ │ ├── amd_hip_fp6.h │ │ ├── amd_hip_fp8.h │ │ ├── amd_hip_gl_interop.h │ │ ├── amd_hip_math_constants.h │ │ ├── amd_hip_mx_common.h │ │ ├── amd_hip_ocp_fp.hpp │ │ ├── amd_hip_ocp_fp_cxx.hpp │ │ ├── amd_hip_ocp_host.hpp │ │ ├── amd_hip_ocp_types.h │ │ ├── amd_hip_runtime.h │ │ ├── amd_hip_runtime_pt_api.h │ │ ├── amd_hip_unsafe_atomics.h │ │ ├── amd_hip_vector_types.h │ │ ├── amd_math_functions.h │ │ ├── amd_surface_functions.h │ │ ├── amd_warp_functions.h │ │ ├── amd_warp_sync_functions.h │ │ ├── concepts.hpp │ │ ├── device_library_decls.h │ │ ├── functional_grid_launch.hpp │ │ ├── grid_launch.h │ │ ├── grid_launch.hpp │ │ ├── grid_launch_GGL.hpp │ │ ├── helpers.hpp │ │ ├── hip_api_trace.hpp │ │ ├── hip_assert.h │ │ ├── hip_cooperative_groups_helper.h │ │ ├── hip_fp16_gcc.h │ │ ├── hip_fp16_math_fwd.h │ │ ├── hip_ldg.h │ │ ├── hip_prof_str.h │ │ ├── hip_runtime_prof.h │ │ ├── hip_storage.h │ │ ├── host_defines.h │ │ ├── hsa_helpers.hpp │ │ ├── macro_based_grid_launch.hpp │ │ ├── math_fwd.h │ │ ├── ockl_image.h │ │ ├── program_state.hpp │ │ ├── texture_fetch_functions.h │ │ └── texture_indirect_functions.h ├── packaging │ ├── CMakeLists.txt │ ├── convert_md_to_html.sh │ ├── hip-devel.postinst │ ├── hip-devel.prerm │ ├── hip-runtime-amd.postinst │ ├── hip-runtime-amd.prerm │ ├── hip-runtime-nvidia.postinst │ └── hip-runtime-nvidia.prerm └── src │ ├── CMakeLists.txt │ ├── amd_hsa_elf.hpp │ ├── amdhip.def │ ├── cmake │ └── FindROCclr.cmake │ ├── hip_activity.cpp │ ├── hip_api_trace.cpp │ ├── hip_code_object.cpp │ ├── hip_code_object.hpp │ ├── hip_comgr_helper.cpp │ ├── hip_comgr_helper.hpp │ ├── hip_context.cpp │ ├── hip_conversions.hpp │ ├── hip_device.cpp │ ├── hip_device_runtime.cpp │ ├── hip_embed_pch.sh │ ├── hip_error.cpp │ ├── hip_event.cpp │ ├── hip_event.hpp │ ├── hip_event_ipc.cpp │ ├── hip_fatbin.cpp │ ├── hip_fatbin.hpp │ ├── hip_formatting.hpp │ ├── hip_gl.cpp │ ├── hip_global.cpp │ ├── hip_global.hpp │ ├── hip_graph.cpp │ ├── hip_graph_capture.hpp │ ├── hip_graph_helper.hpp │ ├── hip_graph_internal.cpp │ ├── hip_graph_internal.hpp │ ├── hip_hcc.map.in │ ├── hip_hcc.rc │ ├── hip_hcc_in.rc.in │ ├── hip_hmm.cpp │ ├── hip_intercept.cpp │ ├── hip_internal.hpp │ ├── hip_library.cpp │ ├── hip_library.hpp │ ├── hip_memory.cpp │ ├── hip_mempool.cpp │ ├── hip_mempool_impl.cpp │ ├── hip_mempool_impl.hpp │ ├── hip_module.cpp │ ├── hip_peer.cpp │ ├── hip_platform.cpp │ ├── hip_platform.hpp │ ├── hip_prof_api.h │ ├── hip_prof_gen.py │ ├── hip_profile.cpp │ ├── hip_runtime.cpp │ ├── hip_storage.cpp │ ├── hip_stream.cpp │ ├── hip_stream_ops.cpp │ ├── hip_surface.cpp │ ├── hip_table_interface.cpp │ ├── hip_table_interface_c.cpp │ ├── hip_texture.cpp │ ├── hip_vm.cpp │ ├── hip_vm.hpp │ ├── hiprtc │ ├── CMakeLists.txt │ ├── cmake │ │ ├── HIPRTC.cmake │ │ └── hiprtc-config.cmake.in │ ├── hiprtc-builtins.def │ ├── hiprtc.cpp │ ├── hiprtc.def │ ├── hiprtc.map.in │ ├── hiprtcInternal.cpp │ └── hiprtcInternal.hpp │ └── trace_helper.h ├── opencl ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── amdocl │ ├── CMakeLists.txt │ ├── amdocl.def │ ├── amdocl.def.in │ ├── amdocl.map │ ├── amdocl.map.in │ ├── amdocl.rc │ ├── amdocl.rc.in │ ├── cl_agent_amd.h │ ├── cl_command.cpp │ ├── cl_common.hpp │ ├── cl_context.cpp │ ├── cl_counter.cpp │ ├── cl_d3d10.cpp │ ├── cl_d3d10_amd.hpp │ ├── cl_d3d11.cpp │ ├── cl_d3d11_amd.hpp │ ├── cl_d3d9.cpp │ ├── cl_d3d9_amd.hpp │ ├── cl_device.cpp │ ├── cl_event.cpp │ ├── cl_execute.cpp │ ├── cl_gl.cpp │ ├── cl_icd.cpp │ ├── cl_icd_amd.h │ ├── cl_kernel.h │ ├── cl_kernel_info_amd.cpp │ ├── cl_kernel_info_amd.h │ ├── cl_memobj.cpp │ ├── cl_p2p_amd.cpp │ ├── cl_p2p_amd.h │ ├── cl_pipe.cpp │ ├── cl_platform_amd.cpp │ ├── cl_platform_amd.h │ ├── cl_profile_amd.cpp │ ├── cl_profile_amd.h │ ├── cl_program.cpp │ ├── cl_runtime.cpp │ ├── cl_sampler.cpp │ ├── cl_sdi_amd.cpp │ ├── cl_sdi_amd.h │ ├── cl_semaphore_amd.h │ ├── cl_svm.cpp │ ├── cl_thread_trace_amd.cpp │ ├── cl_thread_trace_amd.h │ ├── cmake │ │ └── FindROCclr.cmake │ └── glibc_functions.cpp ├── cmake │ └── FindAMD_ICD.cmake ├── config │ ├── amdocl32.icd │ └── amdocl64.icd ├── configure ├── khronos │ ├── headers │ │ ├── EGL │ │ │ ├── egl.h │ │ │ ├── eglext.h │ │ │ └── eglplatform.h │ │ ├── GL │ │ │ └── glext.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── opencl1.2 │ │ │ └── CL │ │ │ │ ├── cl.h │ │ │ │ ├── cl.hpp │ │ │ │ ├── cl_d3d10.h │ │ │ │ ├── cl_d3d11.h │ │ │ │ ├── cl_dx9_media_sharing.h │ │ │ │ ├── cl_ext.h │ │ │ │ ├── cl_gl.h │ │ │ │ ├── cl_gl_ext.h │ │ │ │ ├── cl_platform.h │ │ │ │ └── opencl.h │ │ ├── opencl2.0 │ │ │ └── CL │ │ │ │ ├── cl.h │ │ │ │ ├── cl.hpp │ │ │ │ ├── cl2.hpp │ │ │ │ ├── cl_d3d10.h │ │ │ │ ├── cl_d3d11.h │ │ │ │ ├── cl_dx9_media_sharing.h │ │ │ │ ├── cl_egl.h │ │ │ │ ├── cl_ext.h │ │ │ │ ├── cl_gl.h │ │ │ │ ├── cl_gl_ext.h │ │ │ │ ├── cl_platform.h │ │ │ │ └── opencl.h │ │ ├── opencl2.1 │ │ │ └── CL │ │ │ │ ├── cl.h │ │ │ │ ├── cl.hpp │ │ │ │ ├── cl2.hpp │ │ │ │ ├── cl_d3d10.h │ │ │ │ ├── cl_d3d11.h │ │ │ │ ├── cl_dx9_media_sharing.h │ │ │ │ ├── cl_egl.h │ │ │ │ ├── cl_ext.h │ │ │ │ ├── cl_gl.h │ │ │ │ ├── cl_gl_ext.h │ │ │ │ ├── cl_platform.h │ │ │ │ └── opencl.h │ │ └── opencl2.2 │ │ │ ├── CL │ │ │ ├── cl.h │ │ │ ├── cl.hpp │ │ │ ├── cl2.hpp │ │ │ ├── cl_d3d10.h │ │ │ ├── cl_d3d11.h │ │ │ ├── cl_dx9_media_sharing.h │ │ │ ├── cl_dx9_media_sharing_intel.h │ │ │ ├── cl_egl.h │ │ │ ├── cl_ext.h │ │ │ ├── cl_ext_intel.h │ │ │ ├── cl_gl.h │ │ │ ├── cl_gl_ext.h │ │ │ ├── cl_icd.h │ │ │ ├── cl_platform.h │ │ │ ├── cl_va_api_media_sharing_intel.h │ │ │ ├── cl_version.h │ │ │ └── opencl.h │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── test_cl.h.c │ │ │ ├── test_cl_egl.h.c │ │ │ ├── test_cl_ext.h.c │ │ │ ├── test_cl_ext_intel.h.c │ │ │ ├── test_cl_gl.h.c │ │ │ ├── test_cl_gl_ext.h.c │ │ │ ├── test_cl_icd.h.c │ │ │ ├── test_cl_platform.h.c │ │ │ ├── test_cl_version.h.c │ │ │ ├── test_headers.c │ │ │ └── test_opencl.h.c │ └── icd │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── inc │ │ └── README.txt │ │ ├── loader │ │ ├── icd.c │ │ ├── icd.h │ │ ├── icd_cmake_config.h.in │ │ ├── icd_dispatch.c │ │ ├── icd_dispatch.h │ │ ├── icd_envvars.h │ │ ├── icd_platform.h │ │ ├── linux │ │ │ ├── icd_exports.map │ │ │ ├── icd_linux.c │ │ │ └── icd_linux_envvars.c │ │ └── windows │ │ │ ├── OpenCL.def │ │ │ ├── OpenCL.rc │ │ │ ├── icd_windows.c │ │ │ ├── icd_windows.h │ │ │ ├── icd_windows_dxgk.c │ │ │ ├── icd_windows_dxgk.h │ │ │ ├── icd_windows_envvars.c │ │ │ ├── icd_windows_hkr.c │ │ │ └── icd_windows_hkr.h │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── driver_stub │ │ ├── CMakeLists.txt │ │ ├── cl.c │ │ ├── cl_ext.c │ │ ├── cl_gl.c │ │ ├── driver_stub.def │ │ ├── icd.c │ │ ├── icd_driver_exports.map │ │ ├── icd_structs.h │ │ └── rename_api.h │ │ ├── inc │ │ └── platform │ │ │ └── icd_test_log.h │ │ ├── loader_test │ │ ├── CMakeLists.txt │ │ ├── callbacks.c │ │ ├── icd_test_match.c │ │ ├── main.c │ │ ├── param_struct.h │ │ ├── test_buffer_object.c │ │ ├── test_cl_runtime.c │ │ ├── test_clgl.c │ │ ├── test_create_calls.c │ │ ├── test_image_objects.c │ │ ├── test_kernel.c │ │ ├── test_platforms.c │ │ ├── test_program_objects.c │ │ └── test_sampler_objects.c │ │ └── log │ │ ├── CMakeLists.txt │ │ └── icd_test_log.c ├── packaging │ ├── CMakeLists.txt │ ├── amdocl64.icd │ ├── rocm-ocl-icd.postinst │ ├── rocm-ocl-icd.postrm │ ├── rocm-ocl-icd.rpm_post │ ├── rocm-ocl-icd.rpm_postun │ ├── rocm-opencl.conf │ ├── rocm-opencl.postinst │ ├── rocm-opencl.postrm │ ├── rocm-opencl.rpm_post │ └── rocm-opencl.rpm_postun ├── tests │ └── ocltst │ │ ├── CMakeLists.txt │ │ ├── env │ │ ├── CMakeLists.txt │ │ ├── Module.h │ │ ├── ResultStruct.h │ │ ├── ServiceCode.cpp │ │ ├── Timer.cpp │ │ ├── Timer.h │ │ ├── Worker.h │ │ ├── getopt.cpp │ │ ├── getopt.h │ │ ├── oclTestLog.cpp │ │ ├── oclTestLog.h │ │ ├── oclsysinfo.cpp │ │ ├── oclsysinfo.h │ │ ├── ocltst.cpp │ │ ├── pfm.cpp │ │ ├── pfm.h │ │ ├── window.cpp │ │ └── window.h │ │ ├── include │ │ ├── OCL │ │ │ └── Thread.h │ │ ├── OCLLog.h │ │ ├── OCLTest.h │ │ ├── OCLTestList.h │ │ ├── OCLTestUtils.h │ │ └── OCLWrapper.h │ │ └── module │ │ ├── common │ │ ├── BaseTestImp.cpp │ │ ├── CMakeLists.txt │ │ ├── OCLGLCommon.cpp │ │ ├── OCLGLCommon.h │ │ ├── OCLGLCommonLinux.cpp │ │ ├── OCLGLCommonWindows.cpp │ │ ├── OCLTestImp.cpp │ │ ├── OCLTestListImp.cpp │ │ ├── OCLTestUtils.cpp │ │ ├── OCLThread.cpp │ │ ├── OCLWrapper.cpp │ │ ├── Timer.cpp │ │ └── Timer.h │ │ ├── dx │ │ ├── OCLDX11Common.cpp │ │ ├── OCLDX11Common.h │ │ ├── OCLDX11YUY2.cpp │ │ ├── OCLDX11YUY2.h │ │ ├── TestList.cpp │ │ └── ocldx.exclude │ │ ├── gl │ │ ├── CMakeLists.txt │ │ ├── OCLGLBuffer.cpp │ │ ├── OCLGLBuffer.h │ │ ├── OCLGLBufferMultipleQueues.cpp │ │ ├── OCLGLBufferMultipleQueues.h │ │ ├── OCLGLDepthBuffer.cpp │ │ ├── OCLGLDepthBuffer.h │ │ ├── OCLGLDepthTex.cpp │ │ ├── OCLGLDepthTex.h │ │ ├── OCLGLFenceSync.cpp │ │ ├── OCLGLFenceSync.h │ │ ├── OCLGLMsaaTexture.cpp │ │ ├── OCLGLMsaaTexture.h │ │ ├── OCLGLMultiContext.cpp │ │ ├── OCLGLMultiContext.h │ │ ├── OCLGLPerfSepia.cpp │ │ ├── OCLGLPerfSepia.h │ │ ├── OCLGLTexture.cpp │ │ ├── OCLGLTexture.h │ │ ├── TestList.cpp │ │ └── oclgl.exclude │ │ ├── include │ │ ├── BaseTestImp.h │ │ ├── OCLTestImp.h │ │ ├── OCLTestListImp.h │ │ └── OclIncludes.h │ │ ├── perf │ │ ├── CMakeLists.txt │ │ ├── OCLPerf3DImageWriteSpeed.cpp │ │ ├── OCLPerf3DImageWriteSpeed.h │ │ ├── OCLPerfAES256.cpp │ │ ├── OCLPerfAES256.h │ │ ├── OCLPerfAtomicSpeed.cpp │ │ ├── OCLPerfAtomicSpeed.h │ │ ├── OCLPerfAtomicSpeed20.cpp │ │ ├── OCLPerfAtomicSpeed20.h │ │ ├── OCLPerfAtomicSpeed20Kernels.h │ │ ├── OCLPerfAtomicSpeedKernels.h │ │ ├── OCLPerfBufferCopyOverhead.cpp │ │ ├── OCLPerfBufferCopyOverhead.h │ │ ├── OCLPerfBufferCopySpeed.cpp │ │ ├── OCLPerfBufferCopySpeed.h │ │ ├── OCLPerfBufferReadSpeed.cpp │ │ ├── OCLPerfBufferReadSpeed.h │ │ ├── OCLPerfBufferWriteSpeed.cpp │ │ ├── OCLPerfBufferWriteSpeed.h │ │ ├── OCLPerfCPUMemSpeed.cpp │ │ ├── OCLPerfCPUMemSpeed.h │ │ ├── OCLPerfCommandQueue.cpp │ │ ├── OCLPerfCommandQueue.h │ │ ├── OCLPerfConcurrency.cpp │ │ ├── OCLPerfConcurrency.h │ │ ├── OCLPerfDevMemReadSpeed.cpp │ │ ├── OCLPerfDevMemReadSpeed.h │ │ ├── OCLPerfDevMemWriteSpeed.cpp │ │ ├── OCLPerfDevMemWriteSpeed.h │ │ ├── OCLPerfDeviceConcurrency.cpp │ │ ├── OCLPerfDeviceConcurrency.h │ │ ├── OCLPerfDeviceEnqueue.cpp │ │ ├── OCLPerfDeviceEnqueue.h │ │ ├── OCLPerfDeviceEnqueue2.cpp │ │ ├── OCLPerfDeviceEnqueue2.h │ │ ├── OCLPerfDeviceEnqueueEvent.cpp │ │ ├── OCLPerfDeviceEnqueueEvent.h │ │ ├── OCLPerfDeviceEnqueueSier.cpp │ │ ├── OCLPerfDeviceEnqueueSier.h │ │ ├── OCLPerfDispatchSpeed.cpp │ │ ├── OCLPerfDispatchSpeed.h │ │ ├── OCLPerfDoubleDMA.cpp │ │ ├── OCLPerfDoubleDMA.h │ │ ├── OCLPerfDoubleDMASeq.cpp │ │ ├── OCLPerfDoubleDMASeq.h │ │ ├── OCLPerfFillBuffer.cpp │ │ ├── OCLPerfFillBuffer.h │ │ ├── OCLPerfFillImage.cpp │ │ ├── OCLPerfFillImage.h │ │ ├── OCLPerfFlush.cpp │ │ ├── OCLPerfFlush.h │ │ ├── OCLPerfGenericBandwidth.cpp │ │ ├── OCLPerfGenericBandwidth.h │ │ ├── OCLPerfGenoilSiaMiner.cpp │ │ ├── OCLPerfGenoilSiaMiner.h │ │ ├── OCLPerfImageCopyCorners.cpp │ │ ├── OCLPerfImageCopyCorners.h │ │ ├── OCLPerfImageCopySpeed.cpp │ │ ├── OCLPerfImageCopySpeed.h │ │ ├── OCLPerfImageCreate.cpp │ │ ├── OCLPerfImageCreate.h │ │ ├── OCLPerfImageMapUnmap.cpp │ │ ├── OCLPerfImageMapUnmap.h │ │ ├── OCLPerfImageReadSpeed.cpp │ │ ├── OCLPerfImageReadSpeed.h │ │ ├── OCLPerfImageReadWrite.cpp │ │ ├── OCLPerfImageReadWrite.h │ │ ├── OCLPerfImageReadsRGBA.cpp │ │ ├── OCLPerfImageReadsRGBA.h │ │ ├── OCLPerfImageSampleRate.cpp │ │ ├── OCLPerfImageSampleRate.h │ │ ├── OCLPerfImageWriteSpeed.cpp │ │ ├── OCLPerfImageWriteSpeed.h │ │ ├── OCLPerfKernelArguments.cpp │ │ ├── OCLPerfKernelArguments.h │ │ ├── OCLPerfKernelThroughput.cpp │ │ ├── OCLPerfKernelThroughput.h │ │ ├── OCLPerfLDSLatency.cpp │ │ ├── OCLPerfLDSLatency.h │ │ ├── OCLPerfLDSReadSpeed.cpp │ │ ├── OCLPerfLDSReadSpeed.h │ │ ├── OCLPerfMandelbrot.cpp │ │ ├── OCLPerfMandelbrot.h │ │ ├── OCLPerfMapBufferReadSpeed.cpp │ │ ├── OCLPerfMapBufferReadSpeed.h │ │ ├── OCLPerfMapBufferWriteSpeed.cpp │ │ ├── OCLPerfMapBufferWriteSpeed.h │ │ ├── OCLPerfMapImageReadSpeed.cpp │ │ ├── OCLPerfMapImageReadSpeed.h │ │ ├── OCLPerfMapImageWriteSpeed.cpp │ │ ├── OCLPerfMapImageWriteSpeed.h │ │ ├── OCLPerfMatrixTranspose.cpp │ │ ├── OCLPerfMatrixTranspose.h │ │ ├── OCLPerfMemCombine.cpp │ │ ├── OCLPerfMemCombine.h │ │ ├── OCLPerfMemCreate.cpp │ │ ├── OCLPerfMemCreate.h │ │ ├── OCLPerfMemLatency.cpp │ │ ├── OCLPerfMemLatency.h │ │ ├── OCLPerfPinnedBufferReadSpeed.cpp │ │ ├── OCLPerfPinnedBufferReadSpeed.h │ │ ├── OCLPerfPinnedBufferWriteSpeed.cpp │ │ ├── OCLPerfPinnedBufferWriteSpeed.h │ │ ├── OCLPerfPipeCopySpeed.cpp │ │ ├── OCLPerfPipeCopySpeed.h │ │ ├── OCLPerfProgramGlobalRead.cpp │ │ ├── OCLPerfProgramGlobalRead.h │ │ ├── OCLPerfProgramGlobalWrite.cpp │ │ ├── OCLPerfProgramGlobalWrite.h │ │ ├── OCLPerfSHA256.cpp │ │ ├── OCLPerfSHA256.h │ │ ├── OCLPerfSVMAlloc.cpp │ │ ├── OCLPerfSVMAlloc.h │ │ ├── OCLPerfSVMKernelArguments.cpp │ │ ├── OCLPerfSVMKernelArguments.h │ │ ├── OCLPerfSVMMap.cpp │ │ ├── OCLPerfSVMMap.h │ │ ├── OCLPerfSVMMemFill.cpp │ │ ├── OCLPerfSVMMemFill.h │ │ ├── OCLPerfSVMMemcpy.cpp │ │ ├── OCLPerfSVMMemcpy.h │ │ ├── OCLPerfSVMSampleRate.cpp │ │ ├── OCLPerfSVMSampleRate.h │ │ ├── OCLPerfSampleRate.cpp │ │ ├── OCLPerfSampleRate.h │ │ ├── OCLPerfScalarReplArrayElem.cpp │ │ ├── OCLPerfScalarReplArrayElem.h │ │ ├── OCLPerfSdiP2PCopy.cpp │ │ ├── OCLPerfSdiP2PCopy.h │ │ ├── OCLPerfTextureMemLatency.cpp │ │ ├── OCLPerfTextureMemLatency.h │ │ ├── OCLPerfUAVReadSpeed.cpp │ │ ├── OCLPerfUAVReadSpeed.h │ │ ├── OCLPerfUAVReadSpeedHostMem.cpp │ │ ├── OCLPerfUAVReadSpeedHostMem.h │ │ ├── OCLPerfUAVWriteSpeedHostMem.cpp │ │ ├── OCLPerfUAVWriteSpeedHostMem.h │ │ ├── OCLPerfUncoalescedRead.cpp │ │ ├── OCLPerfUncoalescedRead.h │ │ ├── OCLPerfVerticalFetch.cpp │ │ ├── OCLPerfVerticalFetch.h │ │ ├── TestList.cpp │ │ └── oclperf.exclude │ │ └── runtime │ │ ├── CMakeLists.txt │ │ ├── OCLAsyncMap.cpp │ │ ├── OCLAsyncMap.h │ │ ├── OCLAsyncTransfer.cpp │ │ ├── OCLAsyncTransfer.h │ │ ├── OCLAtomicCounter.cpp │ │ ├── OCLAtomicCounter.h │ │ ├── OCLBlitKernel.cpp │ │ ├── OCLBlitKernel.h │ │ ├── OCLBufferFromImage.cpp │ │ ├── OCLBufferFromImage.h │ │ ├── OCLCPUGuardPages.cpp │ │ ├── OCLCPUGuardPages.h │ │ ├── OCLCreateBuffer.cpp │ │ ├── OCLCreateBuffer.h │ │ ├── OCLCreateContext.cpp │ │ ├── OCLCreateContext.h │ │ ├── OCLCreateImage.cpp │ │ ├── OCLCreateImage.h │ │ ├── OCLCreatePipe.cpp │ │ ├── OCLCreatePipe.h │ │ ├── OCLDeviceAtomic.cpp │ │ ├── OCLDeviceAtomic.h │ │ ├── OCLDeviceQueries.cpp │ │ ├── OCLDeviceQueries.h │ │ ├── OCLDynamic.cpp │ │ ├── OCLDynamic.h │ │ ├── OCLDynamicBLines.cpp │ │ ├── OCLDynamicBLines.h │ │ ├── OCLGenericAddressSpace.cpp │ │ ├── OCLGenericAddressSpace.h │ │ ├── OCLGetQueueThreadID.cpp │ │ ├── OCLGetQueueThreadID.h │ │ ├── OCLGlobalOffset.cpp │ │ ├── OCLGlobalOffset.h │ │ ├── OCLImage2DFromBuffer.cpp │ │ ├── OCLImage2DFromBuffer.h │ │ ├── OCLImageCopyPartial.cpp │ │ ├── OCLImageCopyPartial.h │ │ ├── OCLKernelBinary.cpp │ │ ├── OCLKernelBinary.h │ │ ├── OCLLDS32K.cpp │ │ ├── OCLLDS32K.h │ │ ├── OCLLinearFilter.cpp │ │ ├── OCLLinearFilter.h │ │ ├── OCLMapCount.cpp │ │ ├── OCLMapCount.h │ │ ├── OCLMemDependency.cpp │ │ ├── OCLMemDependency.h │ │ ├── OCLMemObjs.cpp │ │ ├── OCLMemObjs.h │ │ ├── OCLMemoryInfo.cpp │ │ ├── OCLMemoryInfo.h │ │ ├── OCLMultiQueue.cpp │ │ ├── OCLMultiQueue.h │ │ ├── OCLOfflineCompilation.cpp │ │ ├── OCLOfflineCompilation.h │ │ ├── OCLP2PBuffer.cpp │ │ ├── OCLP2PBuffer.h │ │ ├── OCLPartialWrkgrp.cpp │ │ ├── OCLPartialWrkgrp.h │ │ ├── OCLPerfCounters.cpp │ │ ├── OCLPerfCounters.h │ │ ├── OCLPersistent.cpp │ │ ├── OCLPersistent.h │ │ ├── OCLPinnedMemory.cpp │ │ ├── OCLPinnedMemory.h │ │ ├── OCLPlatformAtomics.cpp │ │ ├── OCLPlatformAtomics.h │ │ ├── OCLProgramScopeVariables.cpp │ │ ├── OCLProgramScopeVariables.h │ │ ├── OCLRTQueue.cpp │ │ ├── OCLRTQueue.h │ │ ├── OCLReadWriteImage.cpp │ │ ├── OCLReadWriteImage.h │ │ ├── OCLSDI.cpp │ │ ├── OCLSDI.h │ │ ├── OCLSVM.cpp │ │ ├── OCLSVM.h │ │ ├── OCLSemaphore.cpp │ │ ├── OCLSemaphore.h │ │ ├── OCLStablePState.cpp │ │ ├── OCLStablePState.h │ │ ├── OCLThreadTrace.cpp │ │ ├── OCLThreadTrace.h │ │ ├── OCLUnalignedCopy.cpp │ │ ├── OCLUnalignedCopy.h │ │ ├── TestList.cpp │ │ └── oclruntime.exclude └── tools │ ├── clinfo │ ├── CMakeLists.txt │ └── clinfo.cpp │ └── cltrace │ ├── CMakeLists.txt │ ├── cltrace.cpp │ ├── cltrace.def │ └── cltrace.map └── rocclr ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE.md ├── cmake ├── FindAMD_HSA_LOADER.cmake ├── FindAMD_OPENCL.cmake ├── FindAMD_PAL.cmake ├── FindAMD_PAL_LIB.cmake ├── ROCclr.cmake ├── ROCclrCompilerOptions.cmake ├── ROCclrHSA.cmake ├── ROCclrLC.cmake └── ROCclrPAL.cmake ├── compiler └── lib │ └── utils │ ├── OPTIONS.def │ ├── options.cpp │ └── options.hpp ├── device ├── appprofile.cpp ├── appprofile.hpp ├── blit.cpp ├── blit.hpp ├── blitcl.cpp ├── comgrctx.cpp ├── comgrctx.hpp ├── devhcmessages.cpp ├── devhcmessages.hpp ├── devhcprintf.cpp ├── devhostcall.cpp ├── devhostcall.hpp ├── device.cpp ├── device.hpp ├── devkernel.cpp ├── devkernel.hpp ├── devprogram.cpp ├── devprogram.hpp ├── devsanitizer.hpp ├── devsignal.hpp ├── devurilocator.hpp ├── pal │ ├── DxxOpenCLInteropExt.h │ ├── palappprofile.cpp │ ├── palappprofile.hpp │ ├── palblit.cpp │ ├── palblit.hpp │ ├── palblitcl.cpp │ ├── palcapturemgr.hpp │ ├── palconstbuf.cpp │ ├── palconstbuf.hpp │ ├── palcounters.cpp │ ├── palcounters.hpp │ ├── paldefs.hpp │ ├── paldevice.cpp │ ├── paldevice.hpp │ ├── paldeviced3d10.cpp │ ├── paldeviced3d11.cpp │ ├── paldeviced3d9.cpp │ ├── paldevicegl.cpp │ ├── palgpuopen.cpp │ ├── palgpuopen.hpp │ ├── palkernel.cpp │ ├── palkernel.hpp │ ├── palmemory.cpp │ ├── palmemory.hpp │ ├── palprintf.cpp │ ├── palprintf.hpp │ ├── palprogram.cpp │ ├── palprogram.hpp │ ├── palresource.cpp │ ├── palresource.hpp │ ├── palsched.hpp │ ├── palsettings.cpp │ ├── palsettings.hpp │ ├── palsignal.cpp │ ├── palsignal.hpp │ ├── palthreadtrace.cpp │ ├── palthreadtrace.hpp │ ├── paltimestamp.cpp │ ├── paltimestamp.hpp │ ├── palubercapturemgr.cpp │ ├── palubercapturemgr.hpp │ ├── palvirtual.cpp │ └── palvirtual.hpp └── rocm │ ├── mesa_glinterop.h │ ├── rocappprofile.cpp │ ├── rocappprofile.hpp │ ├── rocblit.cpp │ ├── rocblit.hpp │ ├── rocblitcl.cpp │ ├── roccounters.cpp │ ├── roccounters.hpp │ ├── rocdefs.hpp │ ├── rocdevice.cpp │ ├── rocdevice.hpp │ ├── rocglinterop.cpp │ ├── rocglinterop.hpp │ ├── rockernel.cpp │ ├── rockernel.hpp │ ├── rocmemory.cpp │ ├── rocmemory.hpp │ ├── rocprintf.cpp │ ├── rocprintf.hpp │ ├── rocprogram.cpp │ ├── rocprogram.hpp │ ├── rocrctx.cpp │ ├── rocrctx.hpp │ ├── rocregisters.hpp │ ├── rocsched.hpp │ ├── rocsettings.cpp │ ├── rocsettings.hpp │ ├── rocsignal.cpp │ ├── rocsignal.hpp │ ├── rocurilocator.cpp │ ├── rocurilocator.hpp │ ├── rocvirtual.cpp │ └── rocvirtual.hpp ├── elf ├── elf.cpp ├── elf.hpp └── elfio │ ├── elf_types.hpp │ ├── elfio.hpp │ ├── elfio_dump.hpp │ ├── elfio_dynamic.hpp │ ├── elfio_header.hpp │ ├── elfio_note.hpp │ ├── elfio_relocation.hpp │ ├── elfio_section.hpp │ ├── elfio_segment.hpp │ ├── elfio_strings.hpp │ ├── elfio_symbols.hpp │ └── elfio_utils.hpp ├── include ├── GL │ ├── gl_interop.h │ ├── glx.h │ └── glxext.h ├── top.hpp ├── vdi_agent_amd.h └── vdi_common.hpp ├── os ├── alloc.cpp ├── alloc.hpp ├── os.cpp ├── os.hpp ├── os_posix.cpp ├── os_win32.cpp ├── setjmp.S └── setjmp.asm ├── platform ├── activity.cpp ├── activity.hpp ├── agent.cpp ├── agent.hpp ├── command.cpp ├── command.hpp ├── command_utils.hpp ├── commandqueue.cpp ├── commandqueue.hpp ├── context.cpp ├── context.hpp ├── counter.hpp ├── external_memory.hpp ├── gl_functions.hpp ├── interop.hpp ├── interop_d3d10.cpp ├── interop_d3d10.hpp ├── interop_d3d11.cpp ├── interop_d3d11.hpp ├── interop_d3d9.cpp ├── interop_d3d9.hpp ├── interop_gl.cpp ├── interop_gl.hpp ├── kernel.cpp ├── kernel.hpp ├── kernel_init.hpp ├── memory.cpp ├── memory.hpp ├── ndrange.cpp ├── ndrange.hpp ├── object.hpp ├── perfctr.hpp ├── prof_protocol.h ├── program.cpp ├── program.hpp ├── runtime.cpp ├── runtime.hpp ├── sampler.hpp ├── threadtrace.hpp ├── vmheap.cpp └── vmheap.hpp ├── thread ├── monitor.hpp ├── thread.cpp └── thread.hpp └── utils ├── concurrent.hpp ├── debug.cpp ├── debug.hpp ├── flags.cpp ├── flags.hpp ├── macros.hpp ├── util.hpp └── versions.hpp /.azuredevops/rocm-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.azuredevops/rocm-ci.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/hooks/clang-format-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/hooks/clang-format-check.sh -------------------------------------------------------------------------------- /.github/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/hooks/pre-commit -------------------------------------------------------------------------------- /.github/palamida.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/palamida.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/validate_pr_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/scripts/validate_pr_description.py -------------------------------------------------------------------------------- /.github/workflows/ai_codeql_fix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/workflows/ai_codeql_fix.yaml -------------------------------------------------------------------------------- /.github/workflows/ai_codeql_historical.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/workflows/ai_codeql_historical.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/workflows/clang-format.yml -------------------------------------------------------------------------------- /.github/workflows/keyword-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/workflows/keyword-check.yml -------------------------------------------------------------------------------- /.github/workflows/kws-caller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/workflows/kws-caller.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title-validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/workflows/pr-title-validate.yml -------------------------------------------------------------------------------- /.github/workflows/rocm-ci-caller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/workflows/rocm-ci-caller.yml -------------------------------------------------------------------------------- /.github/workflows/validate-pr-description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.github/workflows/validate-pr-description.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/README-doc.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/README.md -------------------------------------------------------------------------------- /hipamd/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/.gitattributes -------------------------------------------------------------------------------- /hipamd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/.gitignore -------------------------------------------------------------------------------- /hipamd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/CMakeLists.txt -------------------------------------------------------------------------------- /hipamd/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/LICENSE.md -------------------------------------------------------------------------------- /hipamd/bin/roc-obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/bin/roc-obj -------------------------------------------------------------------------------- /hipamd/bin/roc-obj-extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/bin/roc-obj-extract -------------------------------------------------------------------------------- /hipamd/bin/roc-obj-extract.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/bin/roc-obj-extract.bat -------------------------------------------------------------------------------- /hipamd/bin/roc-obj-ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/bin/roc-obj-ls -------------------------------------------------------------------------------- /hipamd/bin/roc-obj-ls.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/bin/roc-obj-ls.bat -------------------------------------------------------------------------------- /hipamd/hip-config-amd.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/hip-config-amd.cmake.in -------------------------------------------------------------------------------- /hipamd/hip-config-nvidia.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/hip-config-nvidia.cmake.in -------------------------------------------------------------------------------- /hipamd/hip-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/hip-config.cmake.in -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_channel_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_channel_descriptor.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_device_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_device_functions.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_atomic.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_bf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_bf16.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_bfloat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_bfloat16.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_common.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_complex.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_cooperative_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_cooperative_groups.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_fp16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_fp16.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_fp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_fp4.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_fp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_fp6.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_fp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_fp8.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_gl_interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_gl_interop.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_math_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_math_constants.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_mx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_mx_common.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_ocp_fp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_ocp_fp.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_ocp_fp_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_ocp_fp_cxx.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_ocp_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_ocp_host.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_ocp_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_ocp_types.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_runtime.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_runtime_pt_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_runtime_pt_api.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_unsafe_atomics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_unsafe_atomics.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_hip_vector_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_hip_vector_types.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_math_functions.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_surface_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_surface_functions.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_warp_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_warp_functions.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/amd_warp_sync_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/amd_warp_sync_functions.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/concepts.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/device_library_decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/device_library_decls.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/functional_grid_launch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/functional_grid_launch.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/grid_launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/grid_launch.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/grid_launch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/grid_launch.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/grid_launch_GGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/grid_launch_GGL.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/helpers.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/hip_api_trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/hip_api_trace.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/hip_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/hip_assert.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/hip_cooperative_groups_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/hip_cooperative_groups_helper.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/hip_fp16_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/hip_fp16_gcc.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/hip_fp16_math_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/hip_fp16_math_fwd.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/hip_ldg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/hip_ldg.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/hip_prof_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/hip_prof_str.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/hip_runtime_prof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/hip_runtime_prof.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/hip_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/hip_storage.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/host_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/host_defines.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/hsa_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/hsa_helpers.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/macro_based_grid_launch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/macro_based_grid_launch.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/math_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/math_fwd.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/ockl_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/ockl_image.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/program_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/program_state.hpp -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/texture_fetch_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/texture_fetch_functions.h -------------------------------------------------------------------------------- /hipamd/include/hip/amd_detail/texture_indirect_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/include/hip/amd_detail/texture_indirect_functions.h -------------------------------------------------------------------------------- /hipamd/packaging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/packaging/CMakeLists.txt -------------------------------------------------------------------------------- /hipamd/packaging/convert_md_to_html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/packaging/convert_md_to_html.sh -------------------------------------------------------------------------------- /hipamd/packaging/hip-devel.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/packaging/hip-devel.postinst -------------------------------------------------------------------------------- /hipamd/packaging/hip-devel.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/packaging/hip-devel.prerm -------------------------------------------------------------------------------- /hipamd/packaging/hip-runtime-amd.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/packaging/hip-runtime-amd.postinst -------------------------------------------------------------------------------- /hipamd/packaging/hip-runtime-amd.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/packaging/hip-runtime-amd.prerm -------------------------------------------------------------------------------- /hipamd/packaging/hip-runtime-nvidia.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/packaging/hip-runtime-nvidia.postinst -------------------------------------------------------------------------------- /hipamd/packaging/hip-runtime-nvidia.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/packaging/hip-runtime-nvidia.prerm -------------------------------------------------------------------------------- /hipamd/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/CMakeLists.txt -------------------------------------------------------------------------------- /hipamd/src/amd_hsa_elf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/amd_hsa_elf.hpp -------------------------------------------------------------------------------- /hipamd/src/amdhip.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/amdhip.def -------------------------------------------------------------------------------- /hipamd/src/cmake/FindROCclr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/cmake/FindROCclr.cmake -------------------------------------------------------------------------------- /hipamd/src/hip_activity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_activity.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_api_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_api_trace.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_code_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_code_object.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_code_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_code_object.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_comgr_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_comgr_helper.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_comgr_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_comgr_helper.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_context.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_conversions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_conversions.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_device.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_device_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_device_runtime.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_embed_pch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_embed_pch.sh -------------------------------------------------------------------------------- /hipamd/src/hip_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_error.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_event.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_event.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_event_ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_event_ipc.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_fatbin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_fatbin.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_fatbin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_fatbin.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_formatting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_formatting.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_gl.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_global.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_global.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_graph.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_graph_capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_graph_capture.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_graph_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_graph_helper.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_graph_internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_graph_internal.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_graph_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_graph_internal.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_hcc.map.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_hcc.map.in -------------------------------------------------------------------------------- /hipamd/src/hip_hcc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_hcc.rc -------------------------------------------------------------------------------- /hipamd/src/hip_hcc_in.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_hcc_in.rc.in -------------------------------------------------------------------------------- /hipamd/src/hip_hmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_hmm.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_intercept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_intercept.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_internal.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_library.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_library.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_memory.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_mempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_mempool.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_mempool_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_mempool_impl.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_mempool_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_mempool_impl.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_module.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_peer.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_platform.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_platform.hpp -------------------------------------------------------------------------------- /hipamd/src/hip_prof_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_prof_api.h -------------------------------------------------------------------------------- /hipamd/src/hip_prof_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_prof_gen.py -------------------------------------------------------------------------------- /hipamd/src/hip_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_profile.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_runtime.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_storage.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_stream.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_stream_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_stream_ops.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_surface.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_table_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_table_interface.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_table_interface_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_table_interface_c.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_texture.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_vm.cpp -------------------------------------------------------------------------------- /hipamd/src/hip_vm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hip_vm.hpp -------------------------------------------------------------------------------- /hipamd/src/hiprtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hiprtc/CMakeLists.txt -------------------------------------------------------------------------------- /hipamd/src/hiprtc/cmake/HIPRTC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hiprtc/cmake/HIPRTC.cmake -------------------------------------------------------------------------------- /hipamd/src/hiprtc/cmake/hiprtc-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hiprtc/cmake/hiprtc-config.cmake.in -------------------------------------------------------------------------------- /hipamd/src/hiprtc/hiprtc-builtins.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hiprtc/hiprtc-builtins.def -------------------------------------------------------------------------------- /hipamd/src/hiprtc/hiprtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hiprtc/hiprtc.cpp -------------------------------------------------------------------------------- /hipamd/src/hiprtc/hiprtc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hiprtc/hiprtc.def -------------------------------------------------------------------------------- /hipamd/src/hiprtc/hiprtc.map.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hiprtc/hiprtc.map.in -------------------------------------------------------------------------------- /hipamd/src/hiprtc/hiprtcInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hiprtc/hiprtcInternal.cpp -------------------------------------------------------------------------------- /hipamd/src/hiprtc/hiprtcInternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/hiprtc/hiprtcInternal.hpp -------------------------------------------------------------------------------- /hipamd/src/trace_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/hipamd/src/trace_helper.h -------------------------------------------------------------------------------- /opencl/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/.gitattributes -------------------------------------------------------------------------------- /opencl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/.gitignore -------------------------------------------------------------------------------- /opencl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/LICENSE.md -------------------------------------------------------------------------------- /opencl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/README.md -------------------------------------------------------------------------------- /opencl/amdocl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/amdocl/amdocl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/amdocl.def -------------------------------------------------------------------------------- /opencl/amdocl/amdocl.def.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/amdocl.def.in -------------------------------------------------------------------------------- /opencl/amdocl/amdocl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/amdocl.map -------------------------------------------------------------------------------- /opencl/amdocl/amdocl.map.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/amdocl.map.in -------------------------------------------------------------------------------- /opencl/amdocl/amdocl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/amdocl.rc -------------------------------------------------------------------------------- /opencl/amdocl/amdocl.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/amdocl.rc.in -------------------------------------------------------------------------------- /opencl/amdocl/cl_agent_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_agent_amd.h -------------------------------------------------------------------------------- /opencl/amdocl/cl_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_command.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_common.hpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_context.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_counter.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_d3d10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_d3d10.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_d3d10_amd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_d3d10_amd.hpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_d3d11.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_d3d11_amd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_d3d11_amd.hpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_d3d9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_d3d9.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_d3d9_amd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_d3d9_amd.hpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_device.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_event.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_execute.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_gl.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_icd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_icd.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_icd_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_icd_amd.h -------------------------------------------------------------------------------- /opencl/amdocl/cl_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_kernel.h -------------------------------------------------------------------------------- /opencl/amdocl/cl_kernel_info_amd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_kernel_info_amd.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_kernel_info_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_kernel_info_amd.h -------------------------------------------------------------------------------- /opencl/amdocl/cl_memobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_memobj.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_p2p_amd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_p2p_amd.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_p2p_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_p2p_amd.h -------------------------------------------------------------------------------- /opencl/amdocl/cl_pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_pipe.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_platform_amd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_platform_amd.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_platform_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_platform_amd.h -------------------------------------------------------------------------------- /opencl/amdocl/cl_profile_amd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_profile_amd.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_profile_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_profile_amd.h -------------------------------------------------------------------------------- /opencl/amdocl/cl_program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_program.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_runtime.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_sampler.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_sdi_amd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_sdi_amd.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_sdi_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_sdi_amd.h -------------------------------------------------------------------------------- /opencl/amdocl/cl_semaphore_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_semaphore_amd.h -------------------------------------------------------------------------------- /opencl/amdocl/cl_svm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_svm.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_thread_trace_amd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_thread_trace_amd.cpp -------------------------------------------------------------------------------- /opencl/amdocl/cl_thread_trace_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cl_thread_trace_amd.h -------------------------------------------------------------------------------- /opencl/amdocl/cmake/FindROCclr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/cmake/FindROCclr.cmake -------------------------------------------------------------------------------- /opencl/amdocl/glibc_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/amdocl/glibc_functions.cpp -------------------------------------------------------------------------------- /opencl/cmake/FindAMD_ICD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/cmake/FindAMD_ICD.cmake -------------------------------------------------------------------------------- /opencl/config/amdocl32.icd: -------------------------------------------------------------------------------- 1 | libamdocl32.so 2 | -------------------------------------------------------------------------------- /opencl/config/amdocl64.icd: -------------------------------------------------------------------------------- 1 | libamdocl64.so 2 | -------------------------------------------------------------------------------- /opencl/configure: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opencl/khronos/headers/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/EGL/egl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/EGL/eglext.h -------------------------------------------------------------------------------- /opencl/khronos/headers/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/EGL/eglplatform.h -------------------------------------------------------------------------------- /opencl/khronos/headers/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/GL/glext.h -------------------------------------------------------------------------------- /opencl/khronos/headers/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/KHR/khrplatform.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl1.2/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl1.2/CL/cl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl1.2/CL/cl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl1.2/CL/cl.hpp -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl1.2/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl1.2/CL/cl_d3d10.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl1.2/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl1.2/CL/cl_d3d11.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl1.2/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl1.2/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl1.2/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl1.2/CL/cl_ext.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl1.2/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl1.2/CL/cl_gl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl1.2/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl1.2/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl1.2/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl1.2/CL/cl_platform.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl1.2/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl1.2/CL/opencl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/cl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/cl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/cl.hpp -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/cl2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/cl2.hpp -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/cl_d3d10.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/cl_d3d11.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/cl_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/cl_egl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/cl_ext.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/cl_gl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/cl_platform.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.0/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.0/CL/opencl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/cl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/cl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/cl.hpp -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/cl2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/cl2.hpp -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/cl_d3d10.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/cl_d3d11.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/cl_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/cl_egl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/cl_ext.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/cl_gl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/cl_platform.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.1/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.1/CL/opencl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl.hpp -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl2.hpp -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl_d3d10.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl_d3d11.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl_egl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl_ext.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl_ext_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl_ext_intel.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl_gl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl_icd.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl_platform.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/cl_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/cl_version.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CL/opencl.h -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/LICENSE -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/LICENSE.txt -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/README.md -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/README.md -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/test_cl.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/test_cl.h.c -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/test_cl_egl.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/test_cl_egl.h.c -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/test_cl_ext.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/test_cl_ext.h.c -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/test_cl_ext_intel.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/test_cl_ext_intel.h.c -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/test_cl_gl.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/test_cl_gl.h.c -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/test_cl_gl_ext.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/test_cl_gl_ext.h.c -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/test_cl_icd.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/test_cl_icd.h.c -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/test_cl_platform.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/test_cl_platform.h.c -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/test_cl_version.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/test_cl_version.h.c -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/test_headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/test_headers.c -------------------------------------------------------------------------------- /opencl/khronos/headers/opencl2.2/tests/test_opencl.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/headers/opencl2.2/tests/test_opencl.h.c -------------------------------------------------------------------------------- /opencl/khronos/icd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/.gitignore -------------------------------------------------------------------------------- /opencl/khronos/icd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/khronos/icd/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /opencl/khronos/icd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/LICENSE -------------------------------------------------------------------------------- /opencl/khronos/icd/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/LICENSE.txt -------------------------------------------------------------------------------- /opencl/khronos/icd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/README.md -------------------------------------------------------------------------------- /opencl/khronos/icd/inc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/inc/README.txt -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/icd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/icd.c -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/icd.h -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/icd_cmake_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/icd_cmake_config.h.in -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/icd_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/icd_dispatch.c -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/icd_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/icd_dispatch.h -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/icd_envvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/icd_envvars.h -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/icd_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/icd_platform.h -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/linux/icd_exports.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/linux/icd_exports.map -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/linux/icd_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/linux/icd_linux.c -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/linux/icd_linux_envvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/linux/icd_linux_envvars.c -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/windows/OpenCL.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/windows/OpenCL.def -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/windows/OpenCL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/windows/OpenCL.rc -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/windows/icd_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/windows/icd_windows.c -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/windows/icd_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/windows/icd_windows.h -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/windows/icd_windows_dxgk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/windows/icd_windows_dxgk.c -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/windows/icd_windows_dxgk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/windows/icd_windows_dxgk.h -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/windows/icd_windows_envvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/windows/icd_windows_envvars.c -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/windows/icd_windows_hkr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/windows/icd_windows_hkr.c -------------------------------------------------------------------------------- /opencl/khronos/icd/loader/windows/icd_windows_hkr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/loader/windows/icd_windows_hkr.h -------------------------------------------------------------------------------- /opencl/khronos/icd/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/khronos/icd/test/driver_stub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/driver_stub/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/khronos/icd/test/driver_stub/cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/driver_stub/cl.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/driver_stub/cl_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/driver_stub/cl_ext.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/driver_stub/cl_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/driver_stub/cl_gl.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/driver_stub/driver_stub.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | clGetExtensionFunctionAddress 3 | -------------------------------------------------------------------------------- /opencl/khronos/icd/test/driver_stub/icd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/driver_stub/icd.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/driver_stub/icd_driver_exports.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/driver_stub/icd_driver_exports.map -------------------------------------------------------------------------------- /opencl/khronos/icd/test/driver_stub/icd_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/driver_stub/icd_structs.h -------------------------------------------------------------------------------- /opencl/khronos/icd/test/driver_stub/rename_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/driver_stub/rename_api.h -------------------------------------------------------------------------------- /opencl/khronos/icd/test/inc/platform/icd_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/inc/platform/icd_test_log.h -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/callbacks.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/icd_test_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/icd_test_match.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/main.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/param_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/param_struct.h -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/test_buffer_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/test_buffer_object.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/test_cl_runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/test_cl_runtime.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/test_clgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/test_clgl.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/test_create_calls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/test_create_calls.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/test_image_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/test_image_objects.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/test_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/test_kernel.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/test_platforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/test_platforms.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/test_program_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/test_program_objects.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/loader_test/test_sampler_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/loader_test/test_sampler_objects.c -------------------------------------------------------------------------------- /opencl/khronos/icd/test/log/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/log/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/khronos/icd/test/log/icd_test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/khronos/icd/test/log/icd_test_log.c -------------------------------------------------------------------------------- /opencl/packaging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/packaging/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/packaging/amdocl64.icd: -------------------------------------------------------------------------------- 1 | libamdocl64.so 2 | -------------------------------------------------------------------------------- /opencl/packaging/rocm-ocl-icd.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/packaging/rocm-ocl-icd.postinst -------------------------------------------------------------------------------- /opencl/packaging/rocm-ocl-icd.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/packaging/rocm-ocl-icd.postrm -------------------------------------------------------------------------------- /opencl/packaging/rocm-ocl-icd.rpm_post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/packaging/rocm-ocl-icd.rpm_post -------------------------------------------------------------------------------- /opencl/packaging/rocm-ocl-icd.rpm_postun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/packaging/rocm-ocl-icd.rpm_postun -------------------------------------------------------------------------------- /opencl/packaging/rocm-opencl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/packaging/rocm-opencl.conf -------------------------------------------------------------------------------- /opencl/packaging/rocm-opencl.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/packaging/rocm-opencl.postinst -------------------------------------------------------------------------------- /opencl/packaging/rocm-opencl.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/packaging/rocm-opencl.postrm -------------------------------------------------------------------------------- /opencl/packaging/rocm-opencl.rpm_post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/packaging/rocm-opencl.rpm_post -------------------------------------------------------------------------------- /opencl/packaging/rocm-opencl.rpm_postun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/packaging/rocm-opencl.rpm_postun -------------------------------------------------------------------------------- /opencl/tests/ocltst/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/Module.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/ResultStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/ResultStruct.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/ServiceCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/ServiceCode.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/Timer.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/Timer.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/Worker.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/getopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/getopt.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/getopt.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/oclTestLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/oclTestLog.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/oclTestLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/oclTestLog.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/oclsysinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/oclsysinfo.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/oclsysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/oclsysinfo.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/ocltst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/ocltst.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/pfm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/pfm.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/pfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/pfm.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/window.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/env/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/env/window.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/include/OCL/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/include/OCL/Thread.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/include/OCLLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/include/OCLLog.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/include/OCLTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/include/OCLTest.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/include/OCLTestList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/include/OCLTestList.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/include/OCLTestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/include/OCLTestUtils.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/include/OCLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/include/OCLWrapper.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/BaseTestImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/BaseTestImp.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/OCLGLCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/OCLGLCommon.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/OCLGLCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/OCLGLCommon.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/OCLGLCommonLinux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/OCLGLCommonLinux.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/OCLGLCommonWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/OCLGLCommonWindows.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/OCLTestImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/OCLTestImp.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/OCLTestListImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/OCLTestListImp.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/OCLTestUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/OCLTestUtils.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/OCLThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/OCLThread.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/OCLWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/OCLWrapper.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/Timer.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/common/Timer.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/dx/OCLDX11Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/dx/OCLDX11Common.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/dx/OCLDX11Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/dx/OCLDX11Common.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/dx/OCLDX11YUY2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/dx/OCLDX11YUY2.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/dx/OCLDX11YUY2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/dx/OCLDX11YUY2.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/dx/TestList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/dx/TestList.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/dx/ocldx.exclude: -------------------------------------------------------------------------------- 1 | # all clear 2 | -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLBuffer.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLBuffer.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLBufferMultipleQueues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLBufferMultipleQueues.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLBufferMultipleQueues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLBufferMultipleQueues.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLDepthBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLDepthBuffer.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLDepthBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLDepthBuffer.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLDepthTex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLDepthTex.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLDepthTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLDepthTex.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLFenceSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLFenceSync.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLFenceSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLFenceSync.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLMsaaTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLMsaaTexture.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLMsaaTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLMsaaTexture.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLMultiContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLMultiContext.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLMultiContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLMultiContext.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLPerfSepia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLPerfSepia.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLPerfSepia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLPerfSepia.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLTexture.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/OCLGLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/OCLGLTexture.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/TestList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/gl/TestList.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/gl/oclgl.exclude: -------------------------------------------------------------------------------- 1 | # all clear 2 | -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/include/BaseTestImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/include/BaseTestImp.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/include/OCLTestImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/include/OCLTestImp.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/include/OCLTestListImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/include/OCLTestListImp.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/include/OclIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/include/OclIncludes.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerf3DImageWriteSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerf3DImageWriteSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerf3DImageWriteSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerf3DImageWriteSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfAES256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfAES256.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfAES256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfAES256.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeed20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeed20.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeed20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeed20.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeed20Kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeed20Kernels.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeedKernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfAtomicSpeedKernels.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfBufferCopyOverhead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfBufferCopyOverhead.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfBufferCopyOverhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfBufferCopyOverhead.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfBufferCopySpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfBufferCopySpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfBufferCopySpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfBufferCopySpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfBufferReadSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfBufferReadSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfBufferReadSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfBufferReadSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfBufferWriteSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfBufferWriteSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfBufferWriteSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfBufferWriteSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfCPUMemSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfCPUMemSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfCPUMemSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfCPUMemSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfCommandQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfCommandQueue.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfCommandQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfCommandQueue.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfConcurrency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfConcurrency.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfConcurrency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfConcurrency.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDevMemReadSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDevMemReadSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDevMemReadSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDevMemReadSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDevMemWriteSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDevMemWriteSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDevMemWriteSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDevMemWriteSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDeviceConcurrency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDeviceConcurrency.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDeviceConcurrency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDeviceConcurrency.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueue.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueue.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueue2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueue2.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueue2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueue2.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueueEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueueEvent.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueueEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueueEvent.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueueSier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueueSier.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueueSier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDeviceEnqueueSier.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDispatchSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDispatchSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDispatchSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDispatchSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDoubleDMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDoubleDMA.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDoubleDMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDoubleDMA.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDoubleDMASeq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDoubleDMASeq.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfDoubleDMASeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfDoubleDMASeq.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfFillBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfFillBuffer.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfFillBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfFillBuffer.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfFillImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfFillImage.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfFillImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfFillImage.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfFlush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfFlush.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfFlush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfFlush.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfGenericBandwidth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfGenericBandwidth.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfGenericBandwidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfGenericBandwidth.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfGenoilSiaMiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfGenoilSiaMiner.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfGenoilSiaMiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfGenoilSiaMiner.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageCopyCorners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageCopyCorners.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageCopyCorners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageCopyCorners.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageCopySpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageCopySpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageCopySpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageCopySpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageCreate.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageCreate.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageMapUnmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageMapUnmap.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageMapUnmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageMapUnmap.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageReadSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageReadSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageReadSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageReadSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageReadWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageReadWrite.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageReadWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageReadWrite.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageReadsRGBA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageReadsRGBA.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageReadsRGBA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageReadsRGBA.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageSampleRate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageSampleRate.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageSampleRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageSampleRate.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageWriteSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageWriteSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfImageWriteSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfImageWriteSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfKernelArguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfKernelArguments.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfKernelArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfKernelArguments.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfKernelThroughput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfKernelThroughput.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfKernelThroughput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfKernelThroughput.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfLDSLatency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfLDSLatency.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfLDSLatency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfLDSLatency.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfLDSReadSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfLDSReadSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfLDSReadSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfLDSReadSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMandelbrot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMandelbrot.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMandelbrot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMandelbrot.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMapBufferReadSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMapBufferReadSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMapBufferReadSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMapBufferReadSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMapBufferWriteSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMapBufferWriteSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMapBufferWriteSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMapBufferWriteSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMapImageReadSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMapImageReadSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMapImageReadSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMapImageReadSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMapImageWriteSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMapImageWriteSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMapImageWriteSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMapImageWriteSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMatrixTranspose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMatrixTranspose.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMatrixTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMatrixTranspose.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMemCombine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMemCombine.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMemCombine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMemCombine.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMemCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMemCreate.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMemCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMemCreate.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMemLatency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMemLatency.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfMemLatency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfMemLatency.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfPinnedBufferReadSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfPinnedBufferReadSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfPipeCopySpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfPipeCopySpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfPipeCopySpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfPipeCopySpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfProgramGlobalRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfProgramGlobalRead.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfProgramGlobalRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfProgramGlobalRead.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfProgramGlobalWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfProgramGlobalWrite.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfProgramGlobalWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfProgramGlobalWrite.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSHA256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSHA256.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSHA256.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSVMAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSVMAlloc.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSVMAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSVMAlloc.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSVMKernelArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSVMKernelArguments.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSVMMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSVMMap.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSVMMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSVMMap.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSVMMemFill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSVMMemFill.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSVMMemFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSVMMemFill.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSVMMemcpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSVMMemcpy.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSVMMemcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSVMMemcpy.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSVMSampleRate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSVMSampleRate.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSVMSampleRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSVMSampleRate.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSampleRate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSampleRate.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSampleRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSampleRate.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSdiP2PCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSdiP2PCopy.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfSdiP2PCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfSdiP2PCopy.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfTextureMemLatency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfTextureMemLatency.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfUAVReadSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfUAVReadSpeed.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfUAVReadSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfUAVReadSpeed.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfUncoalescedRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfUncoalescedRead.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfUncoalescedRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfUncoalescedRead.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfVerticalFetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfVerticalFetch.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/OCLPerfVerticalFetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/OCLPerfVerticalFetch.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/TestList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/TestList.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/perf/oclperf.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/perf/oclperf.exclude -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLAsyncMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLAsyncMap.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLAsyncMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLAsyncMap.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLAsyncTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLAsyncTransfer.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLAsyncTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLAsyncTransfer.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLAtomicCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLAtomicCounter.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLAtomicCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLAtomicCounter.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLBlitKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLBlitKernel.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLBlitKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLBlitKernel.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLBufferFromImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLBufferFromImage.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLBufferFromImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLBufferFromImage.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLCPUGuardPages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLCPUGuardPages.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLCPUGuardPages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLCPUGuardPages.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLCreateBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLCreateBuffer.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLCreateBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLCreateBuffer.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLCreateContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLCreateContext.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLCreateContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLCreateContext.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLCreateImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLCreateImage.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLCreateImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLCreateImage.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLCreatePipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLCreatePipe.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLCreatePipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLCreatePipe.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLDeviceAtomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLDeviceAtomic.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLDeviceAtomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLDeviceAtomic.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLDeviceQueries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLDeviceQueries.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLDeviceQueries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLDeviceQueries.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLDynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLDynamic.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLDynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLDynamic.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLDynamicBLines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLDynamicBLines.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLDynamicBLines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLDynamicBLines.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLGenericAddressSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLGenericAddressSpace.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLGetQueueThreadID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLGetQueueThreadID.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLGetQueueThreadID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLGetQueueThreadID.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLGlobalOffset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLGlobalOffset.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLGlobalOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLGlobalOffset.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLImage2DFromBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLImage2DFromBuffer.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLImage2DFromBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLImage2DFromBuffer.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLImageCopyPartial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLImageCopyPartial.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLImageCopyPartial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLImageCopyPartial.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLKernelBinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLKernelBinary.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLKernelBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLKernelBinary.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLLDS32K.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLLDS32K.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLLDS32K.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLLDS32K.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLLinearFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLLinearFilter.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLLinearFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLLinearFilter.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLMapCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLMapCount.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLMapCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLMapCount.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLMemDependency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLMemDependency.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLMemDependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLMemDependency.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLMemObjs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLMemObjs.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLMemObjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLMemObjs.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLMemoryInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLMemoryInfo.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLMemoryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLMemoryInfo.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLMultiQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLMultiQueue.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLMultiQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLMultiQueue.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLOfflineCompilation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLOfflineCompilation.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLP2PBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLP2PBuffer.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLP2PBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLP2PBuffer.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLPartialWrkgrp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLPartialWrkgrp.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLPartialWrkgrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLPartialWrkgrp.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLPerfCounters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLPerfCounters.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLPerfCounters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLPerfCounters.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLPersistent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLPersistent.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLPersistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLPersistent.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLPinnedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLPinnedMemory.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLPinnedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLPinnedMemory.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLPlatformAtomics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLPlatformAtomics.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLPlatformAtomics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLPlatformAtomics.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLRTQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLRTQueue.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLRTQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLRTQueue.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLReadWriteImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLReadWriteImage.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLReadWriteImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLReadWriteImage.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLSDI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLSDI.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLSDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLSDI.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLSVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLSVM.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLSVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLSVM.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLSemaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLSemaphore.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLSemaphore.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLStablePState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLStablePState.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLStablePState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLStablePState.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLThreadTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLThreadTrace.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLThreadTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLThreadTrace.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLUnalignedCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLUnalignedCopy.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/OCLUnalignedCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/OCLUnalignedCopy.h -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/TestList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/TestList.cpp -------------------------------------------------------------------------------- /opencl/tests/ocltst/module/runtime/oclruntime.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tests/ocltst/module/runtime/oclruntime.exclude -------------------------------------------------------------------------------- /opencl/tools/clinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tools/clinfo/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/tools/clinfo/clinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tools/clinfo/clinfo.cpp -------------------------------------------------------------------------------- /opencl/tools/cltrace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tools/cltrace/CMakeLists.txt -------------------------------------------------------------------------------- /opencl/tools/cltrace/cltrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tools/cltrace/cltrace.cpp -------------------------------------------------------------------------------- /opencl/tools/cltrace/cltrace.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tools/cltrace/cltrace.def -------------------------------------------------------------------------------- /opencl/tools/cltrace/cltrace.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/opencl/tools/cltrace/cltrace.map -------------------------------------------------------------------------------- /rocclr/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/.gitattributes -------------------------------------------------------------------------------- /rocclr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/.gitignore -------------------------------------------------------------------------------- /rocclr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/CMakeLists.txt -------------------------------------------------------------------------------- /rocclr/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/LICENSE.md -------------------------------------------------------------------------------- /rocclr/cmake/FindAMD_HSA_LOADER.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/cmake/FindAMD_HSA_LOADER.cmake -------------------------------------------------------------------------------- /rocclr/cmake/FindAMD_OPENCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/cmake/FindAMD_OPENCL.cmake -------------------------------------------------------------------------------- /rocclr/cmake/FindAMD_PAL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/cmake/FindAMD_PAL.cmake -------------------------------------------------------------------------------- /rocclr/cmake/FindAMD_PAL_LIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/cmake/FindAMD_PAL_LIB.cmake -------------------------------------------------------------------------------- /rocclr/cmake/ROCclr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/cmake/ROCclr.cmake -------------------------------------------------------------------------------- /rocclr/cmake/ROCclrCompilerOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/cmake/ROCclrCompilerOptions.cmake -------------------------------------------------------------------------------- /rocclr/cmake/ROCclrHSA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/cmake/ROCclrHSA.cmake -------------------------------------------------------------------------------- /rocclr/cmake/ROCclrLC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/cmake/ROCclrLC.cmake -------------------------------------------------------------------------------- /rocclr/cmake/ROCclrPAL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/cmake/ROCclrPAL.cmake -------------------------------------------------------------------------------- /rocclr/compiler/lib/utils/OPTIONS.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/compiler/lib/utils/OPTIONS.def -------------------------------------------------------------------------------- /rocclr/compiler/lib/utils/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/compiler/lib/utils/options.cpp -------------------------------------------------------------------------------- /rocclr/compiler/lib/utils/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/compiler/lib/utils/options.hpp -------------------------------------------------------------------------------- /rocclr/device/appprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/appprofile.cpp -------------------------------------------------------------------------------- /rocclr/device/appprofile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/appprofile.hpp -------------------------------------------------------------------------------- /rocclr/device/blit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/blit.cpp -------------------------------------------------------------------------------- /rocclr/device/blit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/blit.hpp -------------------------------------------------------------------------------- /rocclr/device/blitcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/blitcl.cpp -------------------------------------------------------------------------------- /rocclr/device/comgrctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/comgrctx.cpp -------------------------------------------------------------------------------- /rocclr/device/comgrctx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/comgrctx.hpp -------------------------------------------------------------------------------- /rocclr/device/devhcmessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devhcmessages.cpp -------------------------------------------------------------------------------- /rocclr/device/devhcmessages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devhcmessages.hpp -------------------------------------------------------------------------------- /rocclr/device/devhcprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devhcprintf.cpp -------------------------------------------------------------------------------- /rocclr/device/devhostcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devhostcall.cpp -------------------------------------------------------------------------------- /rocclr/device/devhostcall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devhostcall.hpp -------------------------------------------------------------------------------- /rocclr/device/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/device.cpp -------------------------------------------------------------------------------- /rocclr/device/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/device.hpp -------------------------------------------------------------------------------- /rocclr/device/devkernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devkernel.cpp -------------------------------------------------------------------------------- /rocclr/device/devkernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devkernel.hpp -------------------------------------------------------------------------------- /rocclr/device/devprogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devprogram.cpp -------------------------------------------------------------------------------- /rocclr/device/devprogram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devprogram.hpp -------------------------------------------------------------------------------- /rocclr/device/devsanitizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devsanitizer.hpp -------------------------------------------------------------------------------- /rocclr/device/devsignal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devsignal.hpp -------------------------------------------------------------------------------- /rocclr/device/devurilocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/devurilocator.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/DxxOpenCLInteropExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/DxxOpenCLInteropExt.h -------------------------------------------------------------------------------- /rocclr/device/pal/palappprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palappprofile.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palappprofile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palappprofile.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palblit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palblit.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palblit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palblit.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palblitcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palblitcl.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palcapturemgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palcapturemgr.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palconstbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palconstbuf.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palconstbuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palconstbuf.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palcounters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palcounters.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palcounters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palcounters.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/paldefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/paldefs.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/paldevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/paldevice.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/paldevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/paldevice.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/paldeviced3d10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/paldeviced3d10.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/paldeviced3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/paldeviced3d11.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/paldeviced3d9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/paldeviced3d9.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/paldevicegl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/paldevicegl.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palgpuopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palgpuopen.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palgpuopen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palgpuopen.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palkernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palkernel.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palkernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palkernel.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palmemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palmemory.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palmemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palmemory.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palprintf.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palprintf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palprintf.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palprogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palprogram.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palprogram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palprogram.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palresource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palresource.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palresource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palresource.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palsched.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palsched.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palsettings.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palsettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palsettings.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palsignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palsignal.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palsignal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palsignal.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palthreadtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palthreadtrace.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palthreadtrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palthreadtrace.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/paltimestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/paltimestamp.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/paltimestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/paltimestamp.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palubercapturemgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palubercapturemgr.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palubercapturemgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palubercapturemgr.hpp -------------------------------------------------------------------------------- /rocclr/device/pal/palvirtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palvirtual.cpp -------------------------------------------------------------------------------- /rocclr/device/pal/palvirtual.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/pal/palvirtual.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/mesa_glinterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/mesa_glinterop.h -------------------------------------------------------------------------------- /rocclr/device/rocm/rocappprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocappprofile.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocappprofile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocappprofile.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocblit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocblit.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocblit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocblit.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocblitcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocblitcl.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/roccounters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/roccounters.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/roccounters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/roccounters.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocdefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocdefs.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocdevice.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocdevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocdevice.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocglinterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocglinterop.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocglinterop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocglinterop.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rockernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rockernel.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rockernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rockernel.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocmemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocmemory.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocmemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocmemory.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocprintf.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocprintf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocprintf.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocprogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocprogram.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocprogram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocprogram.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocrctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocrctx.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocrctx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocrctx.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocregisters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocregisters.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocsched.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocsched.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocsettings.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocsettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocsettings.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocsignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocsignal.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocsignal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocsignal.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocurilocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocurilocator.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocurilocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocurilocator.hpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocvirtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocvirtual.cpp -------------------------------------------------------------------------------- /rocclr/device/rocm/rocvirtual.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/device/rocm/rocvirtual.hpp -------------------------------------------------------------------------------- /rocclr/elf/elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elf.cpp -------------------------------------------------------------------------------- /rocclr/elf/elf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elf.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elf_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elf_types.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elfio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elfio.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elfio_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elfio_dump.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elfio_dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elfio_dynamic.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elfio_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elfio_header.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elfio_note.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elfio_note.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elfio_relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elfio_relocation.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elfio_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elfio_section.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elfio_segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elfio_segment.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elfio_strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elfio_strings.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elfio_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elfio_symbols.hpp -------------------------------------------------------------------------------- /rocclr/elf/elfio/elfio_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/elf/elfio/elfio_utils.hpp -------------------------------------------------------------------------------- /rocclr/include/GL/gl_interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/include/GL/gl_interop.h -------------------------------------------------------------------------------- /rocclr/include/GL/glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/include/GL/glx.h -------------------------------------------------------------------------------- /rocclr/include/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/include/GL/glxext.h -------------------------------------------------------------------------------- /rocclr/include/top.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/include/top.hpp -------------------------------------------------------------------------------- /rocclr/include/vdi_agent_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/include/vdi_agent_amd.h -------------------------------------------------------------------------------- /rocclr/include/vdi_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/include/vdi_common.hpp -------------------------------------------------------------------------------- /rocclr/os/alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/os/alloc.cpp -------------------------------------------------------------------------------- /rocclr/os/alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/os/alloc.hpp -------------------------------------------------------------------------------- /rocclr/os/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/os/os.cpp -------------------------------------------------------------------------------- /rocclr/os/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/os/os.hpp -------------------------------------------------------------------------------- /rocclr/os/os_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/os/os_posix.cpp -------------------------------------------------------------------------------- /rocclr/os/os_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/os/os_win32.cpp -------------------------------------------------------------------------------- /rocclr/os/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/os/setjmp.S -------------------------------------------------------------------------------- /rocclr/os/setjmp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/os/setjmp.asm -------------------------------------------------------------------------------- /rocclr/platform/activity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/activity.cpp -------------------------------------------------------------------------------- /rocclr/platform/activity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/activity.hpp -------------------------------------------------------------------------------- /rocclr/platform/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/agent.cpp -------------------------------------------------------------------------------- /rocclr/platform/agent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/agent.hpp -------------------------------------------------------------------------------- /rocclr/platform/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/command.cpp -------------------------------------------------------------------------------- /rocclr/platform/command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/command.hpp -------------------------------------------------------------------------------- /rocclr/platform/command_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/command_utils.hpp -------------------------------------------------------------------------------- /rocclr/platform/commandqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/commandqueue.cpp -------------------------------------------------------------------------------- /rocclr/platform/commandqueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/commandqueue.hpp -------------------------------------------------------------------------------- /rocclr/platform/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/context.cpp -------------------------------------------------------------------------------- /rocclr/platform/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/context.hpp -------------------------------------------------------------------------------- /rocclr/platform/counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/counter.hpp -------------------------------------------------------------------------------- /rocclr/platform/external_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/external_memory.hpp -------------------------------------------------------------------------------- /rocclr/platform/gl_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/gl_functions.hpp -------------------------------------------------------------------------------- /rocclr/platform/interop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/interop.hpp -------------------------------------------------------------------------------- /rocclr/platform/interop_d3d10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/interop_d3d10.cpp -------------------------------------------------------------------------------- /rocclr/platform/interop_d3d10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/interop_d3d10.hpp -------------------------------------------------------------------------------- /rocclr/platform/interop_d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/interop_d3d11.cpp -------------------------------------------------------------------------------- /rocclr/platform/interop_d3d11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/interop_d3d11.hpp -------------------------------------------------------------------------------- /rocclr/platform/interop_d3d9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/interop_d3d9.cpp -------------------------------------------------------------------------------- /rocclr/platform/interop_d3d9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/interop_d3d9.hpp -------------------------------------------------------------------------------- /rocclr/platform/interop_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/interop_gl.cpp -------------------------------------------------------------------------------- /rocclr/platform/interop_gl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/interop_gl.hpp -------------------------------------------------------------------------------- /rocclr/platform/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/kernel.cpp -------------------------------------------------------------------------------- /rocclr/platform/kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/kernel.hpp -------------------------------------------------------------------------------- /rocclr/platform/kernel_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/kernel_init.hpp -------------------------------------------------------------------------------- /rocclr/platform/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/memory.cpp -------------------------------------------------------------------------------- /rocclr/platform/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/memory.hpp -------------------------------------------------------------------------------- /rocclr/platform/ndrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/ndrange.cpp -------------------------------------------------------------------------------- /rocclr/platform/ndrange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/ndrange.hpp -------------------------------------------------------------------------------- /rocclr/platform/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/object.hpp -------------------------------------------------------------------------------- /rocclr/platform/perfctr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/perfctr.hpp -------------------------------------------------------------------------------- /rocclr/platform/prof_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/prof_protocol.h -------------------------------------------------------------------------------- /rocclr/platform/program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/program.cpp -------------------------------------------------------------------------------- /rocclr/platform/program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/program.hpp -------------------------------------------------------------------------------- /rocclr/platform/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/runtime.cpp -------------------------------------------------------------------------------- /rocclr/platform/runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/runtime.hpp -------------------------------------------------------------------------------- /rocclr/platform/sampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/sampler.hpp -------------------------------------------------------------------------------- /rocclr/platform/threadtrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/threadtrace.hpp -------------------------------------------------------------------------------- /rocclr/platform/vmheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/vmheap.cpp -------------------------------------------------------------------------------- /rocclr/platform/vmheap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/platform/vmheap.hpp -------------------------------------------------------------------------------- /rocclr/thread/monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/thread/monitor.hpp -------------------------------------------------------------------------------- /rocclr/thread/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/thread/thread.cpp -------------------------------------------------------------------------------- /rocclr/thread/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/thread/thread.hpp -------------------------------------------------------------------------------- /rocclr/utils/concurrent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/utils/concurrent.hpp -------------------------------------------------------------------------------- /rocclr/utils/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/utils/debug.cpp -------------------------------------------------------------------------------- /rocclr/utils/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/utils/debug.hpp -------------------------------------------------------------------------------- /rocclr/utils/flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/utils/flags.cpp -------------------------------------------------------------------------------- /rocclr/utils/flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/utils/flags.hpp -------------------------------------------------------------------------------- /rocclr/utils/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/utils/macros.hpp -------------------------------------------------------------------------------- /rocclr/utils/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/utils/util.hpp -------------------------------------------------------------------------------- /rocclr/utils/versions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/clr/HEAD/rocclr/utils/versions.hpp --------------------------------------------------------------------------------