├── LICENSE.txt ├── README.md ├── core ├── CMakeLists.txt ├── common │ ├── hsa_table_interface.cpp │ ├── shared.cpp │ └── shared.h ├── hsacore.so.def ├── inc │ ├── agent.h │ ├── amd_blit_kernel.h │ ├── amd_blit_kernel_kv.h │ ├── amd_blit_sdma.h │ ├── amd_cpu_agent.h │ ├── amd_dgpu_agent.h │ ├── amd_elf_image.hpp │ ├── amd_gpu_agent.h │ ├── amd_hsa_code.hpp │ ├── amd_hsa_loader.hpp │ ├── amd_hw_aql_command_processor.h │ ├── amd_load_map.h │ ├── amd_loader_context.hpp │ ├── amd_memory_region.h │ ├── amd_memory_registration.h │ ├── amd_sdma_cmdwriter_kv.h │ ├── amd_topology.h │ ├── blit.h │ ├── checked.h │ ├── default_signal.h │ ├── host_queue.h │ ├── hsa_api_trace_int.h │ ├── hsa_ext_interface.h │ ├── hsa_internal.h │ ├── hsa_table_interface.h │ ├── interrupt_signal.h │ ├── memory_database.h │ ├── memory_region.h │ ├── queue.h │ ├── registers.h │ ├── runtime.h │ ├── signal.h │ └── thunk.h ├── runtime │ ├── Makefile.runtime │ ├── amd_blit_kernel.cpp │ ├── amd_blit_sdma.cpp │ ├── amd_cpu_agent.cpp │ ├── amd_dgpu_agent.cpp │ ├── amd_gpu_agent.cpp │ ├── amd_hw_aql_command_processor.cpp │ ├── amd_load_map.cpp │ ├── amd_loader_context.cpp │ ├── amd_memory_region.cpp │ ├── amd_memory_registration.cpp │ ├── amd_sdma_cmdwriter_kv.cpp │ ├── amd_topology.cpp │ ├── compute_capability.cpp │ ├── compute_capability.hpp │ ├── default_signal.cpp │ ├── host_queue.cpp │ ├── hsa.cpp │ ├── hsa_api_trace.cpp │ ├── hsa_ext_amd.cpp │ ├── hsa_ext_interface.cpp │ ├── interrupt_signal.cpp │ ├── isa.cpp │ ├── isa.hpp │ ├── memory_database.cpp │ ├── runtime.cpp │ └── signal.cpp ├── tools │ ├── libamdhsacode │ │ ├── amd_elf_image.cpp │ │ ├── amd_hsa_code.cpp │ │ ├── amd_hsa_code_util.cpp │ │ ├── amd_hsa_code_util.hpp │ │ ├── amd_hsa_locks.cpp │ │ ├── amd_hsa_locks.hpp │ │ ├── util.cpp │ │ ├── util.hpp │ │ ├── xutil.cpp │ │ └── xutil.hpp │ └── loader │ │ ├── executable.cpp │ │ └── executable.hpp └── util │ ├── Makefile.util │ ├── atomic_helpers.h │ ├── lnx │ └── os_linux.cpp │ ├── locks.h │ ├── os.h │ ├── small_heap.cpp │ ├── small_heap.h │ ├── timer.cpp │ ├── timer.h │ └── utils.h └── inc ├── amd_hsa_common.h ├── amd_hsa_elf.h ├── amd_hsa_kernel_code.h ├── amd_hsa_queue.h ├── amd_hsa_signal.h ├── hsa.h ├── hsa_api_trace.h ├── hsa_ext_amd.h ├── hsa_ext_finalize.h └── hsa_ext_image.h /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/README.md -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/common/hsa_table_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/common/hsa_table_interface.cpp -------------------------------------------------------------------------------- /core/common/shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/common/shared.cpp -------------------------------------------------------------------------------- /core/common/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/common/shared.h -------------------------------------------------------------------------------- /core/hsacore.so.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/hsacore.so.def -------------------------------------------------------------------------------- /core/inc/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/agent.h -------------------------------------------------------------------------------- /core/inc/amd_blit_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_blit_kernel.h -------------------------------------------------------------------------------- /core/inc/amd_blit_kernel_kv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_blit_kernel_kv.h -------------------------------------------------------------------------------- /core/inc/amd_blit_sdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_blit_sdma.h -------------------------------------------------------------------------------- /core/inc/amd_cpu_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_cpu_agent.h -------------------------------------------------------------------------------- /core/inc/amd_dgpu_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_dgpu_agent.h -------------------------------------------------------------------------------- /core/inc/amd_elf_image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_elf_image.hpp -------------------------------------------------------------------------------- /core/inc/amd_gpu_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_gpu_agent.h -------------------------------------------------------------------------------- /core/inc/amd_hsa_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_hsa_code.hpp -------------------------------------------------------------------------------- /core/inc/amd_hsa_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_hsa_loader.hpp -------------------------------------------------------------------------------- /core/inc/amd_hw_aql_command_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_hw_aql_command_processor.h -------------------------------------------------------------------------------- /core/inc/amd_load_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_load_map.h -------------------------------------------------------------------------------- /core/inc/amd_loader_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_loader_context.hpp -------------------------------------------------------------------------------- /core/inc/amd_memory_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_memory_region.h -------------------------------------------------------------------------------- /core/inc/amd_memory_registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_memory_registration.h -------------------------------------------------------------------------------- /core/inc/amd_sdma_cmdwriter_kv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_sdma_cmdwriter_kv.h -------------------------------------------------------------------------------- /core/inc/amd_topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/amd_topology.h -------------------------------------------------------------------------------- /core/inc/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/blit.h -------------------------------------------------------------------------------- /core/inc/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/checked.h -------------------------------------------------------------------------------- /core/inc/default_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/default_signal.h -------------------------------------------------------------------------------- /core/inc/host_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/host_queue.h -------------------------------------------------------------------------------- /core/inc/hsa_api_trace_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/hsa_api_trace_int.h -------------------------------------------------------------------------------- /core/inc/hsa_ext_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/hsa_ext_interface.h -------------------------------------------------------------------------------- /core/inc/hsa_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/hsa_internal.h -------------------------------------------------------------------------------- /core/inc/hsa_table_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/hsa_table_interface.h -------------------------------------------------------------------------------- /core/inc/interrupt_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/interrupt_signal.h -------------------------------------------------------------------------------- /core/inc/memory_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/memory_database.h -------------------------------------------------------------------------------- /core/inc/memory_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/memory_region.h -------------------------------------------------------------------------------- /core/inc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/queue.h -------------------------------------------------------------------------------- /core/inc/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/registers.h -------------------------------------------------------------------------------- /core/inc/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/runtime.h -------------------------------------------------------------------------------- /core/inc/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/signal.h -------------------------------------------------------------------------------- /core/inc/thunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/inc/thunk.h -------------------------------------------------------------------------------- /core/runtime/Makefile.runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/Makefile.runtime -------------------------------------------------------------------------------- /core/runtime/amd_blit_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_blit_kernel.cpp -------------------------------------------------------------------------------- /core/runtime/amd_blit_sdma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_blit_sdma.cpp -------------------------------------------------------------------------------- /core/runtime/amd_cpu_agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_cpu_agent.cpp -------------------------------------------------------------------------------- /core/runtime/amd_dgpu_agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_dgpu_agent.cpp -------------------------------------------------------------------------------- /core/runtime/amd_gpu_agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_gpu_agent.cpp -------------------------------------------------------------------------------- /core/runtime/amd_hw_aql_command_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_hw_aql_command_processor.cpp -------------------------------------------------------------------------------- /core/runtime/amd_load_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_load_map.cpp -------------------------------------------------------------------------------- /core/runtime/amd_loader_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_loader_context.cpp -------------------------------------------------------------------------------- /core/runtime/amd_memory_region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_memory_region.cpp -------------------------------------------------------------------------------- /core/runtime/amd_memory_registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_memory_registration.cpp -------------------------------------------------------------------------------- /core/runtime/amd_sdma_cmdwriter_kv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_sdma_cmdwriter_kv.cpp -------------------------------------------------------------------------------- /core/runtime/amd_topology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/amd_topology.cpp -------------------------------------------------------------------------------- /core/runtime/compute_capability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/compute_capability.cpp -------------------------------------------------------------------------------- /core/runtime/compute_capability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/compute_capability.hpp -------------------------------------------------------------------------------- /core/runtime/default_signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/default_signal.cpp -------------------------------------------------------------------------------- /core/runtime/host_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/host_queue.cpp -------------------------------------------------------------------------------- /core/runtime/hsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/hsa.cpp -------------------------------------------------------------------------------- /core/runtime/hsa_api_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/hsa_api_trace.cpp -------------------------------------------------------------------------------- /core/runtime/hsa_ext_amd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/hsa_ext_amd.cpp -------------------------------------------------------------------------------- /core/runtime/hsa_ext_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/hsa_ext_interface.cpp -------------------------------------------------------------------------------- /core/runtime/interrupt_signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/interrupt_signal.cpp -------------------------------------------------------------------------------- /core/runtime/isa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/isa.cpp -------------------------------------------------------------------------------- /core/runtime/isa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/isa.hpp -------------------------------------------------------------------------------- /core/runtime/memory_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/memory_database.cpp -------------------------------------------------------------------------------- /core/runtime/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/runtime.cpp -------------------------------------------------------------------------------- /core/runtime/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/runtime/signal.cpp -------------------------------------------------------------------------------- /core/tools/libamdhsacode/amd_elf_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/libamdhsacode/amd_elf_image.cpp -------------------------------------------------------------------------------- /core/tools/libamdhsacode/amd_hsa_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/libamdhsacode/amd_hsa_code.cpp -------------------------------------------------------------------------------- /core/tools/libamdhsacode/amd_hsa_code_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/libamdhsacode/amd_hsa_code_util.cpp -------------------------------------------------------------------------------- /core/tools/libamdhsacode/amd_hsa_code_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/libamdhsacode/amd_hsa_code_util.hpp -------------------------------------------------------------------------------- /core/tools/libamdhsacode/amd_hsa_locks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/libamdhsacode/amd_hsa_locks.cpp -------------------------------------------------------------------------------- /core/tools/libamdhsacode/amd_hsa_locks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/libamdhsacode/amd_hsa_locks.hpp -------------------------------------------------------------------------------- /core/tools/libamdhsacode/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/libamdhsacode/util.cpp -------------------------------------------------------------------------------- /core/tools/libamdhsacode/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/libamdhsacode/util.hpp -------------------------------------------------------------------------------- /core/tools/libamdhsacode/xutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/libamdhsacode/xutil.cpp -------------------------------------------------------------------------------- /core/tools/libamdhsacode/xutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/libamdhsacode/xutil.hpp -------------------------------------------------------------------------------- /core/tools/loader/executable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/loader/executable.cpp -------------------------------------------------------------------------------- /core/tools/loader/executable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/tools/loader/executable.hpp -------------------------------------------------------------------------------- /core/util/Makefile.util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/util/Makefile.util -------------------------------------------------------------------------------- /core/util/atomic_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/util/atomic_helpers.h -------------------------------------------------------------------------------- /core/util/lnx/os_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/util/lnx/os_linux.cpp -------------------------------------------------------------------------------- /core/util/locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/util/locks.h -------------------------------------------------------------------------------- /core/util/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/util/os.h -------------------------------------------------------------------------------- /core/util/small_heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/util/small_heap.cpp -------------------------------------------------------------------------------- /core/util/small_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/util/small_heap.h -------------------------------------------------------------------------------- /core/util/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/util/timer.cpp -------------------------------------------------------------------------------- /core/util/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/util/timer.h -------------------------------------------------------------------------------- /core/util/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/core/util/utils.h -------------------------------------------------------------------------------- /inc/amd_hsa_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/inc/amd_hsa_common.h -------------------------------------------------------------------------------- /inc/amd_hsa_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/inc/amd_hsa_elf.h -------------------------------------------------------------------------------- /inc/amd_hsa_kernel_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/inc/amd_hsa_kernel_code.h -------------------------------------------------------------------------------- /inc/amd_hsa_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/inc/amd_hsa_queue.h -------------------------------------------------------------------------------- /inc/amd_hsa_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/inc/amd_hsa_signal.h -------------------------------------------------------------------------------- /inc/hsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/inc/hsa.h -------------------------------------------------------------------------------- /inc/hsa_api_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/inc/hsa_api_trace.h -------------------------------------------------------------------------------- /inc/hsa_ext_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/inc/hsa_ext_amd.h -------------------------------------------------------------------------------- /inc/hsa_ext_finalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/inc/hsa_ext_finalize.h -------------------------------------------------------------------------------- /inc/hsa_ext_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSA-Runtime-Reference-Source/HEAD/inc/hsa_ext_image.h --------------------------------------------------------------------------------