733aa8e438
* public codeobj info * Restructure code object source code file layout * Update get_unloaded_code_objects + add iterate_loaded_code_objects * Remove get_unloaded_code_objects from visible internal API - iterate_loaded_code_objects + functor which filters on the hsa_executable_t effectively reproduces this behavior * Whitespace removal --------- Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com>
35 lines
756 B
CMake
35 lines
756 B
CMake
#
|
|
set(ROCPROFILER_LIB_HSA_SOURCES
|
|
agent_cache.cpp
|
|
aql_packet.cpp
|
|
async_copy.cpp
|
|
hsa_barrier.cpp
|
|
hsa.cpp
|
|
pc_sampling.hpp
|
|
profile_serializer.cpp
|
|
queue_controller.cpp
|
|
queue.cpp
|
|
scratch_memory.cpp)
|
|
|
|
set(ROCPROFILER_LIB_HSA_HEADERS
|
|
agent_cache.hpp
|
|
aql_packet.hpp
|
|
async_copy.hpp
|
|
defines.hpp
|
|
hsa_barrier.hpp
|
|
hsa.hpp
|
|
pc_sampling.cpp
|
|
profile_serializer.hpp
|
|
queue_controller.hpp
|
|
queue.hpp
|
|
queue_info_session.hpp
|
|
rocprofiler_packet.hpp
|
|
scratch_memory.hpp
|
|
types.hpp
|
|
utils.hpp)
|
|
|
|
target_sources(rocprofiler-object-library PRIVATE ${ROCPROFILER_LIB_HSA_SOURCES}
|
|
${ROCPROFILER_LIB_HSA_HEADERS})
|
|
|
|
add_subdirectory(details)
|