diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index fc1c5a1fe2..6f8fe41da9 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -20,8 +20,14 @@ ## IN THE SOFTWARE. ################################################################################ +# Find clang to build the HSA code objects +find_package(Clang REQUIRED CONFIG + PATHS "/opt/rocm/" + PATH_SUFFIXES "llvm/lib/cmake/clang" +) + add_custom_target(mytest) # builds all the tests -add_dependencies(mytest roctracer_tool ctrl) +add_dependencies(mytest roctracer_tool) # Add a 'check' target to run the tests. add_custom_target(check COMMAND ${PROJECT_BINARY_DIR}/run.sh DEPENDS mytest) @@ -67,9 +73,6 @@ foreach(file ${files}) configure_file(${file} ${PROJECT_BINARY_DIR}/test/${file} COPYONLY) endforeach() -## Build HSA test -add_subdirectory(hsa/test ${PROJECT_BINARY_DIR}/test/hsa) - ## Build hsaco_test.cpp referenc test add_library(hsaco_test SHARED EXCLUDE_FROM_ALL app/hsaco_test.cpp) target_compile_definitions(hsaco_test PRIVATE AMD_INTERNAL_BUILD) @@ -88,6 +91,32 @@ target_include_directories(trace_buffer PRIVATE ${PROJECT_SOURCE_DIR}/src/tracer target_link_libraries(trace_buffer Threads::Threads atomic) add_dependencies(mytest trace_buffer) + +## Build the hsa copy test +function(generate_hsaco TARGET_ID INPUT_FILE OUTPUT_FILE) + separate_arguments(CLANG_ARG_LIST UNIX_COMMAND + "-O2 -x cl -Xclang -finclude-default-header -cl-denorms-are-zero -cl-std=CL2.0 + -target amdgcn-amd-amdhsa -mcpu=${TARGET_ID} -o ${OUTPUT_FILE} ${INPUT_FILE}") + add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/${OUTPUT_FILE} + COMMAND clang ${CLANG_ARG_LIST} + WORKING_DIRECTORY ${PROJECT_BINARY_DIR} + DEPENDS ${INPUT_FILE} clang + COMMENT "Building ${OUTPUT_FILE}..." + VERBATIM) + set(HSACO_TARGET_LIST ${HSACO_TARGET_LIST} ${PROJECT_BINARY_DIR}/${OUTPUT_FILE} PARENT_SCOPE) +endfunction(generate_hsaco) + +foreach(target_id ${GPU_TARGETS}) + ## generate kernel bitcodes + generate_hsaco(${target_id} ${CMAKE_CURRENT_SOURCE_DIR}/hsa/copy.cl ${target_id}_copy.hsaco) +endforeach(target_id) +add_custom_target(hsaco_targets DEPENDS ${HSACO_TARGET_LIST}) + +add_executable(copy EXCLUDE_FROM_ALL hsa/copy.cpp) +target_link_libraries(copy hsa-runtime64::hsa-runtime64 Threads::Threads dl) +add_dependencies(copy hsaco_targets) +add_dependencies(mytest copy) + ## copying run script configure_file(run.sh ${PROJECT_BINARY_DIR} COPYONLY) execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink run.sh ${PROJECT_BINARY_DIR}/run_ci.sh) diff --git a/test/golden_traces/ctrl_dryrun_trace.txt b/test/golden_traces/copy_dryrun_trace.txt similarity index 100% rename from test/golden_traces/ctrl_dryrun_trace.txt rename to test/golden_traces/copy_dryrun_trace.txt diff --git a/test/golden_traces/copy_hsa_input_trace.txt b/test/golden_traces/copy_hsa_input_trace.txt new file mode 100644 index 0000000000..778bbfbc98 --- /dev/null +++ b/test/golden_traces/copy_hsa_input_trace.txt @@ -0,0 +1,16 @@ +ROCTracer (pid=882619): input from "test/input.xml" +0x560905682a90 agent cpu +0x560905685470 agent gpu +0x5609056bd500 agent gpu +538167097046266 + HSA-trace( hsa_agent_get_info hsa_amd_memory_pool_allocate) + HSA-activity-trace() +538167097315584:538167097318359 882619:882619 hsa_agent_get_info({handle=94596745407120}, 0, 0x7fffa4fa77a8) = 0 +538167097322808:538167097323088 882619:882619 hsa_agent_get_info({handle=94596745407120}, 17, 0x7fffa4fa7790) = 0 +538167097333378:538167097334620 882619:882619 hsa_agent_get_info({handle=94596745417840}, 0, 0x7fffa4fa77a8) = 0 +538167097335141:538167097335411 882619:882619 hsa_agent_get_info({handle=94596745417840}, 17, 0x7fffa4fa7790) = 0 +538167097338377:538167097338798 882619:882619 hsa_agent_get_info({handle=94596745647360}, 0, 0x7fffa4fa77a8) = 0 +538167097339319:538167097339569 882619:882619 hsa_agent_get_info({handle=94596745647360}, 17, 0x7fffa4fa7790) = 0 +538167119333344:538167119348423 882619:882622 hsa_amd_memory_pool_allocate({handle=94596745407920}, 72, 0, 0x7f7d8f7f9c30) = 0 +538167119471866:538167119484039 882619:882622 hsa_amd_memory_pool_allocate({handle=94596745407920}, 256, 0, 0x7f7d8f7f9c30) = 0 +538167119592754:538167119603945 882619:882622 hsa_amd_memory_pool_allocate({handle=94596745407920}, 256, 0, 0x7f7d8f7f9c30) = 0 diff --git a/test/golden_traces/copy_hsa_trace.txt b/test/golden_traces/copy_hsa_trace.txt new file mode 100644 index 0000000000..a97c7c354b --- /dev/null +++ b/test/golden_traces/copy_hsa_trace.txt @@ -0,0 +1,69 @@ +ROCTracer (pid=882613): +0x555e40292a90 agent cpu +0x555e40295470 agent gpu +0x555e402cd500 agent gpu +538166319764062 + HSA-trace() + HSA-activity-trace() +538166319915287:538166319920086 882613:882613 hsa_amd_profiling_async_copy_enable(1) = 0 +538166320173874:538166320174335 882613:882613 hsa_agent_get_info({handle=93863291726480}, 0, 0x7ffddcd49dd8) = 0 +538166320175287:538166320175548 882613:882613 hsa_agent_get_info({handle=93863291726480}, 17, 0x7ffddcd49dc0) = 0 +538166320177511:538166320178523 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291726976}, 0, 0x7ffddcd49bdc) = 0 +538166320179144:538166320179415 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291726976}, 1, 0x7ffddcd49be0) = 0 +538166320180337:538166320180587 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291726976}, 2, 0x7ffddcd49c00) = 0 +538166320181198:538166320181449 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291726976}, 6, 0x7ffddcd49c08) = 0 +538166320183613:538166320183873 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291727280}, 0, 0x7ffddcd49bdc) = 0 +538166320184484:538166320184745 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291727280}, 1, 0x7ffddcd49be0) = 0 +538166320185336:538166320185587 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291727280}, 2, 0x7ffddcd49c00) = 0 +538166320186178:538166320186428 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291727280}, 6, 0x7ffddcd49c08) = 0 +538166320187390:538166320188031 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291728112}, 0, 0x7ffddcd49bdc) = 0 +538166320188632:538166320188883 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291728112}, 1, 0x7ffddcd49be0) = 0 +538166320189474:538166320189724 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291728112}, 2, 0x7ffddcd49c00) = 0 +538166320190205:538166320190456 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291728112}, 6, 0x7ffddcd49c08) = 0 +538166320190205:538166320191347 882613:882613 hsa_amd_agent_iterate_memory_pools({handle=93863291726480}, 1, 0x7ffddcd49e18) = 0 +538166320194203:538166320196167 882613:882613 hsa_agent_get_info({handle=93863291737200}, 0, 0x7ffddcd49dd8) = 0 +538166320196698:538166320196958 882613:882613 hsa_agent_get_info({handle=93863291737200}, 17, 0x7ffddcd49dc0) = 0 +538166320198170:538166320198421 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291720576}, 0, 0x7ffddcd49bcc) = 0 +538166320198902:538166320199162 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291720576}, 1, 0x7ffddcd49bd0) = 0 +538166320199643:538166320199894 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291720576}, 2, 0x7ffddcd49bf0) = 0 +538166320200364:538166320200615 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291720576}, 6, 0x7ffddcd49bf8) = 0 +538166320201386:538166320201727 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291721456}, 0, 0x7ffddcd49bcc) = 0 +538166320201386:538166320202288 882613:882613 hsa_amd_agent_iterate_memory_pools({handle=93863291737200}, 1, 0x7ffddcd49e18) = 0 +538166320203881:538166320204332 882613:882613 hsa_agent_get_info({handle=93863291966720}, 0, 0x7ffddcd49dd8) = 0 +538166320204843:538166320205103 882613:882613 hsa_agent_get_info({handle=93863291966720}, 17, 0x7ffddcd49dc0) = 0 +538166320206366:538166320206606 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291968448}, 0, 0x7ffddcd49bcc) = 0 +538166320207087:538166320207348 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291968448}, 1, 0x7ffddcd49bd0) = 0 +538166320207818:538166320208069 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291968448}, 2, 0x7ffddcd49bf0) = 0 +538166320209782:538166320210043 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291968448}, 6, 0x7ffddcd49bf8) = 0 +538166320210724:538166320210984 882613:882613 hsa_amd_memory_pool_get_info({handle=93863291969440}, 0, 0x7ffddcd49bcc) = 0 +538166320210724:538166320211566 882613:882613 hsa_amd_agent_iterate_memory_pools({handle=93863291966720}, 1, 0x7ffddcd49e18) = 0 +538166320210724:538166320213028 882613:882613 hsa_iterate_agents(1, 0) = 0 +538166320294151:538166336777646 882613:882616 hsa_queue_create({handle=93863291737200}, 1024, 1, 0, 0, 0, 0, 0x7f91ed49ac88) = 0 +538166336809796:538166336869439 882613:882616 hsa_code_object_reader_create_from_file(5, 0x7f91ed49acb8) = 0 +538166336870721:538166336883686 882613:882616 hsa_executable_create_alt(1, 0, 0x0, 0x7f91ed49acc0) = 0 +538166336884868:538166337268842 882613:882616 hsa_executable_load_agent_code_object({handle=140259270599920}, {handle=93863291737200}, {handle=140259270599248}, 0x0, 0) = 0 +538166337270696:538166337974663 882613:882616 hsa_executable_freeze({handle=140259270599920}, 0x0) = 0 +538166337978250:538166337979312 882613:882616 hsa_executable_get_symbol_by_name({handle=140259270599920}, 0x7f90a80029b0, 0x7f91ed49abe8, 0x7f91ed49ac08) = 1013 +538166337982077:538166337982708 882613:882616 hsa_executable_get_symbol_by_name({handle=140259270599920}, 0x7f90a80038b0, 0x7f91ed49abe8, 0x7f91ed49ac08) = 0 +538166337984311:538166337984983 882613:882616 hsa_executable_symbol_get_info({handle=140259270612544}, 22, 0x7f91ed49acd0) = 0 +538166337985904:538166337986295 882613:882616 hsa_executable_symbol_get_info({handle=140259270612544}, 14, 0x7f91ed49acd8) = 0 +538166337987207:538166337987597 882613:882616 hsa_executable_symbol_get_info({handle=140259270612544}, 13, 0x7f91ed49acdc) = 0 +538166337988499:538166337988880 882613:882616 hsa_executable_symbol_get_info({handle=140259270612544}, 11, 0x7f91ed49ace0) = 0 +538166337989792:538166337990182 882613:882616 hsa_executable_symbol_get_info({handle=140259270612544}, 12, 0x7f91ed49ace4) = 0 +538166337991855:538166338004199 882613:882616 hsa_amd_memory_pool_allocate({handle=93863291727280}, 72, 0, 0x7f91ed49ac30) = 0 +538166338005371:538166338705110 882613:882616 hsa_amd_agents_allow_access(3, 0x555e40337c20, 0, 0x7f91ecc74000) = 0 +538166338706453:538166338719107 882613:882616 hsa_amd_memory_pool_allocate({handle=93863291727280}, 256, 0, 0x7f91ed49ac30) = 0 +538166338720059:538166338850665 882613:882616 hsa_amd_agents_allow_access(3, 0x555e40337c20, 0, 0x7f91ecc72000) = 0 +538166338851607:538166338864782 882613:882616 hsa_amd_memory_pool_allocate({handle=93863291727280}, 256, 0, 0x7f91ed49ac30) = 0 +538166338865723:538166338978927 882613:882616 hsa_amd_agents_allow_access(3, 0x555e40337c20, 0, 0x7f91ecc70000) = 0 +538166338980309:538166338982524 882613:882616 hsa_amd_signal_create(1, 0, 0, 0, 0x7f91ed49ac90) = 0 +538166338983816:538166338984628 882613:882616 hsa_queue_load_write_index_relaxed(0x7f91edff6000) = 0 +538166338985549:538166338986160 882613:882616 hsa_queue_load_read_index_relaxed(0x7f91edff6000) = 0 +538166338987032:538166338987453 882613:882616 hsa_queue_store_write_index_screlease(0x7f91edff6000, 1) = void +538166338988515:538166338989397 882613:882616 hsa_signal_store_screlease({handle=140264755457280}, 0) = void +538166338990278:538166339006328 882613:882616 hsa_signal_wait_scacquire({handle=140264755456768}, 0, 0, 18446744073709551615, 0) = 0 +538166339009224:538166339010346 882613:882616 hsa_signal_destroy({handle=140264755456768}) = 0 +538166339011689:538166339037938 882613:882616 hsa_memory_free(0x7f91ecc72000) = 0 +538166339038930:538166339052135 882613:882616 hsa_memory_free(0x7f91ecc70000) = 0 +538166339053307:538166339082843 882613:882616 hsa_executable_destroy({handle=140259270599920}) = 0 +538166339083895:538166339087181 882613:882616 hsa_code_object_reader_destroy({handle=140259270599248}) = 0 diff --git a/test/golden_traces/ctrl_hsa_input_trace.txt b/test/golden_traces/ctrl_hsa_input_trace.txt deleted file mode 100644 index 4067cff89f..0000000000 --- a/test/golden_traces/ctrl_hsa_input_trace.txt +++ /dev/null @@ -1,4116 +0,0 @@ -ROCTracer (pid=26086): input from "input.xml" - HSA-trace() - HSA-activity-trace() -43938901661657:43938901664772 26086:26086 hsa_amd_profiling_async_copy_enable() = 0 -43938901678570:43938901679167 26086:26086 hsa_agent_get_info(, 17, 0x7ffc771e0d70) = 0 -43938901681408:43938901682196 26086:26086 hsa_amd_memory_pool_get_info(, 0, 0x7ffc771e0bf0) = 0 -43938901683164:43938901683597 26086:26086 hsa_amd_memory_pool_get_info(, 1, 0x7ffc771e0bf4) = 0 -43938901684553:43938901684961 26086:26086 hsa_amd_memory_pool_get_info(, 0, 0x7ffc771e0bf0) = 0 -43938901685847:43938901686257 26086:26086 hsa_amd_memory_pool_get_info(, 1, 0x7ffc771e0bf4) = 0 -43938901685847:43938901687161 26086:26086 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fc68dca45b0) = 1 -43938901688522:43938901688930 26086:26086 hsa_amd_memory_pool_get_info(, 0, 0x7ffc771e0bf0) = 0 -43938901689816:43938901690226 26086:26086 hsa_amd_memory_pool_get_info(, 1, 0x7ffc771e0bf4) = 0 -43938901689816:43938901691151 26086:26086 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fc68dca45c0) = 1 -43938901697016:43938901697562 26086:26086 hsa_agent_get_info(, 17, 0x7ffc771e0d70) = 0 -43938901698632:43938901703052 26086:26086 hsa_agent_get_info(, 0, 0x7fc68dca4684) = 0 -43938901704931:43938901705424 26086:26086 hsa_agent_get_info(, 6, 0x7fc68dca46c4) = 0 -43938901706337:43938901706824 26086:26086 hsa_agent_get_info(, 14, 0x7fc68dca46c8) = 0 -43938901707716:43938901708146 26086:26086 hsa_agent_get_info(, 4, 0x7fc68dca46cc) = 0 -43938901709037:43938901709449 26086:26086 hsa_agent_get_info(, 40962, 0x7fc68dca46e8) = 0 -43938901710336:43938901710759 26086:26086 hsa_agent_get_info(, 40970, 0x7fc68dca46ec) = 0 -43938901711647:43938901712052 26086:26086 hsa_agent_get_info(, 40971, 0x7fc68dca46f0) = 0 -43938901712942:43938901713369 26086:26086 hsa_agent_get_info(, 40972, 0x7fc68dca46f4) = 0 -43938901714264:43938901714670 26086:26086 hsa_agent_get_info(, 40973, 0x7fc68dca46f8) = 0 -43938901716274:43938901716687 26086:26086 hsa_amd_memory_pool_get_info(, 0, 0x7ffc771e0be0) = 0 -43938901717586:43938901718015 26086:26086 hsa_amd_memory_pool_get_info(, 1, 0x7ffc771e0be4) = 0 -43938901717586:43938901718920 26086:26086 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fc68dca46d8) = 1 -43938901717586:43938901721946 26086:26086 hsa_iterate_agents(1, 0x22d8320) = 0 -43938901723056:43938901821270 26086:26086 hsa_system_get_major_extension_table(, , , 0x22d83b8) = 0 -43938901823021:43938901823556 26086:26086 hsa_system_get_major_extension_table(, , , 0x22d8408) = 0 -43938901824814:43938901825239 26086:26086 hsa_system_get_info(3, 0x7ffc771e0ee8) = 0 -43938901832376:43938901833163 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f60) = 0 -43938901835358:43938901836122 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f68) = 0 -43938901838607:43938901839365 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f70) = 0 -43938901840306:43938901841058 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f78) = 0 -43938901841975:43938901842737 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f80) = 0 -43938901843654:43938901844413 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f88) = 0 -43938901845332:43938901846082 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f90) = 0 -43938901846997:43938901847744 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f98) = 0 -43938901848661:43938901849415 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fa0) = 0 -43938901850337:43938901851086 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fa8) = 0 -43938901852000:43938901852758 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fb0) = 0 -43938901853671:43938901854426 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fb8) = 0 -43938901855340:43938901856092 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fc0) = 0 -43938901857012:43938901857766 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fc8) = 0 -43938901858684:43938901859433 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fd0) = 0 -43938901860350:43938901861135 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fd8) = 0 -43938901862051:43938901862828 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fe0) = 0 -43938901863743:43938901864497 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fe8) = 0 -43938901865413:43938901866166 26086:26086 hsa_system_get_info(2, 0x7fc68dca4ff0) = 0 -43938901867074:43938901867824 26086:26086 hsa_system_get_info(2, 0x7fc68dca4ff8) = 0 -43938901868740:43938901869500 26086:26086 hsa_system_get_info(2, 0x7fc68dca5000) = 0 -43938901870415:43938901871170 26086:26086 hsa_system_get_info(2, 0x7fc68dca5008) = 0 -43938901872080:43938901872840 26086:26086 hsa_system_get_info(2, 0x7fc68dca5010) = 0 -43938901873758:43938901874516 26086:26086 hsa_system_get_info(2, 0x7fc68dca5018) = 0 -43938901875431:43938901876188 26086:26086 hsa_system_get_info(2, 0x7fc68dca5020) = 0 -43938901877112:43938901877859 26086:26086 hsa_system_get_info(2, 0x7fc68dca5028) = 0 -43938901878778:43938901879536 26086:26086 hsa_system_get_info(2, 0x7fc68dca5030) = 0 -43938901880447:43938901881202 26086:26086 hsa_system_get_info(2, 0x7fc68dca5038) = 0 -43938901882121:43938901882872 26086:26086 hsa_system_get_info(2, 0x7fc68dca5040) = 0 -43938901883811:43938901884566 26086:26086 hsa_system_get_info(2, 0x7fc68dca5048) = 0 -43938901886481:43938901887238 26086:26086 hsa_system_get_info(2, 0x7fc68dca5050) = 0 -43938901888157:43938901888906 26086:26086 hsa_system_get_info(2, 0x7fc68dca5058) = 0 -43938901889823:43938901890580 26086:26086 hsa_system_get_info(2, 0x7fc68dca5060) = 0 -43938901891492:43938901892251 26086:26086 hsa_system_get_info(2, 0x7fc68dca5068) = 0 -43938901893166:43938901893923 26086:26086 hsa_system_get_info(2, 0x7fc68dca5070) = 0 -43938901894841:43938901895588 26086:26086 hsa_system_get_info(2, 0x7fc68dca5078) = 0 -43938901896504:43938901897257 26086:26086 hsa_system_get_info(2, 0x7fc68dca5080) = 0 -43938901898172:43938901898920 26086:26086 hsa_system_get_info(2, 0x7fc68dca5088) = 0 -43938901899851:43938901900606 26086:26086 hsa_system_get_info(2, 0x7fc68dca5090) = 0 -43938901901523:43938901902279 26086:26086 hsa_system_get_info(2, 0x7fc68dca5098) = 0 -43938901903199:43938901903958 26086:26086 hsa_system_get_info(2, 0x7fc68dca50a0) = 0 -43938901904869:43938901905623 26086:26086 hsa_system_get_info(2, 0x7fc68dca50a8) = 0 -43938901906539:43938901907296 26086:26086 hsa_system_get_info(2, 0x7fc68dca50b0) = 0 -43938901908211:43938901908973 26086:26086 hsa_system_get_info(2, 0x7fc68dca50b8) = 0 -43938901909885:43938901910650 26086:26086 hsa_system_get_info(2, 0x7fc68dca50c0) = 0 -43938901911565:43938901912325 26086:26086 hsa_system_get_info(2, 0x7fc68dca50c8) = 0 -43938901913242:43938901914001 26086:26086 hsa_system_get_info(2, 0x7fc68dca50d0) = 0 -43938901914916:43938901915668 26086:26086 hsa_system_get_info(2, 0x7fc68dca50d8) = 0 -43938901916583:43938901917340 26086:26086 hsa_system_get_info(2, 0x7fc68dca50e0) = 0 -43938901918255:43938901919015 26086:26086 hsa_system_get_info(2, 0x7fc68dca50e8) = 0 -43938901919930:43938901920695 26086:26086 hsa_system_get_info(2, 0x7fc68dca50f0) = 0 -43938901921611:43938901922389 26086:26086 hsa_system_get_info(2, 0x7fc68dca50f8) = 0 -43938901923305:43938901924069 26086:26086 hsa_system_get_info(2, 0x7fc68dca5100) = 0 -43938901924982:43938901925747 26086:26086 hsa_system_get_info(2, 0x7fc68dca5108) = 0 -43938901926667:43938901927426 26086:26086 hsa_system_get_info(2, 0x7fc68dca5110) = 0 -43938901928348:43938901929098 26086:26086 hsa_system_get_info(2, 0x7fc68dca5118) = 0 -43938901930025:43938901930778 26086:26086 hsa_system_get_info(2, 0x7fc68dca5120) = 0 -43938901931689:43938901932447 26086:26086 hsa_system_get_info(2, 0x7fc68dca5128) = 0 -43938901933355:43938901934112 26086:26086 hsa_system_get_info(2, 0x7fc68dca5130) = 0 -43938901936383:43938901937160 26086:26086 hsa_system_get_info(2, 0x7fc68dca5138) = 0 -43938901938075:43938901938828 26086:26086 hsa_system_get_info(2, 0x7fc68dca5140) = 0 -43938901939749:43938901940502 26086:26086 hsa_system_get_info(2, 0x7fc68dca5148) = 0 -43938901941416:43938901942168 26086:26086 hsa_system_get_info(2, 0x7fc68dca5150) = 0 -43938901943079:43938901943832 26086:26086 hsa_system_get_info(2, 0x7fc68dca5158) = 0 -43938901944743:43938901945494 26086:26086 hsa_system_get_info(2, 0x7fc68dca5160) = 0 -43938901946403:43938901947156 26086:26086 hsa_system_get_info(2, 0x7fc68dca5168) = 0 -43938901948074:43938901948826 26086:26086 hsa_system_get_info(2, 0x7fc68dca5170) = 0 -43938901949742:43938901950499 26086:26086 hsa_system_get_info(2, 0x7fc68dca5178) = 0 -43938901951415:43938901952174 26086:26086 hsa_system_get_info(2, 0x7fc68dca5180) = 0 -43938901953086:43938901953841 26086:26086 hsa_system_get_info(2, 0x7fc68dca5188) = 0 -43938901954757:43938901955506 26086:26086 hsa_system_get_info(2, 0x7fc68dca5190) = 0 -43938901956423:43938901957190 26086:26086 hsa_system_get_info(2, 0x7fc68dca5198) = 0 -43938901958100:43938901958850 26086:26086 hsa_system_get_info(2, 0x7fc68dca51a0) = 0 -43938901959762:43938901960513 26086:26086 hsa_system_get_info(2, 0x7fc68dca51a8) = 0 -43938901961430:43938901962184 26086:26086 hsa_system_get_info(2, 0x7fc68dca51b0) = 0 -43938901963096:43938901963853 26086:26086 hsa_system_get_info(2, 0x7fc68dca51b8) = 0 -43938901964769:43938901965529 26086:26086 hsa_system_get_info(2, 0x7fc68dca51c0) = 0 -43938901966441:43938901967198 26086:26086 hsa_system_get_info(2, 0x7fc68dca51c8) = 0 -43938901968116:43938901968878 26086:26086 hsa_system_get_info(2, 0x7fc68dca51d0) = 0 -43938901969793:43938901970553 26086:26086 hsa_system_get_info(2, 0x7fc68dca51d8) = 0 -43938901971468:43938901972220 26086:26086 hsa_system_get_info(2, 0x7fc68dca51e0) = 0 -43938901973133:43938901973886 26086:26086 hsa_system_get_info(2, 0x7fc68dca51e8) = 0 -43938901974799:43938901975553 26086:26086 hsa_system_get_info(2, 0x7fc68dca51f0) = 0 -43938901976486:43938901977241 26086:26086 hsa_system_get_info(2, 0x7fc68dca51f8) = 0 -43938901978157:43938901978910 26086:26086 hsa_system_get_info(2, 0x7fc68dca5200) = 0 -43938901979821:43938901980601 26086:26086 hsa_system_get_info(2, 0x7fc68dca5208) = 0 -43938901981526:43938901982280 26086:26086 hsa_system_get_info(2, 0x7fc68dca5210) = 0 -43938901984046:43938901984801 26086:26086 hsa_system_get_info(2, 0x7fc68dca5218) = 0 -43938901985709:43938901986465 26086:26086 hsa_system_get_info(2, 0x7fc68dca5220) = 0 -43938901987380:43938901988135 26086:26086 hsa_system_get_info(2, 0x7fc68dca5228) = 0 -43938901989057:43938901989811 26086:26086 hsa_system_get_info(2, 0x7fc68dca5230) = 0 -43938901990724:43938901991479 26086:26086 hsa_system_get_info(2, 0x7fc68dca5238) = 0 -43938901992391:43938901993142 26086:26086 hsa_system_get_info(2, 0x7fc68dca5240) = 0 -43938901994058:43938901994810 26086:26086 hsa_system_get_info(2, 0x7fc68dca5248) = 0 -43938901995721:43938901996481 26086:26086 hsa_system_get_info(2, 0x7fc68dca5250) = 0 -43938901997391:43938901998146 26086:26086 hsa_system_get_info(2, 0x7fc68dca5258) = 0 -43938901999060:43938901999812 26086:26086 hsa_system_get_info(2, 0x7fc68dca5260) = 0 -43938902000725:43938902001486 26086:26086 hsa_system_get_info(2, 0x7fc68dca5268) = 0 -43938902002405:43938902003154 26086:26086 hsa_system_get_info(2, 0x7fc68dca5270) = 0 -43938902004070:43938902004830 26086:26086 hsa_system_get_info(2, 0x7fc68dca5278) = 0 -43938902005757:43938902006513 26086:26086 hsa_system_get_info(2, 0x7fc68dca5280) = 0 -43938902007427:43938902008176 26086:26086 hsa_system_get_info(2, 0x7fc68dca5288) = 0 -43938902009089:43938902009841 26086:26086 hsa_system_get_info(2, 0x7fc68dca5290) = 0 -43938902010753:43938902011506 26086:26086 hsa_system_get_info(2, 0x7fc68dca5298) = 0 -43938902012419:43938902013175 26086:26086 hsa_system_get_info(2, 0x7fc68dca52a0) = 0 -43938902014092:43938902014837 26086:26086 hsa_system_get_info(2, 0x7fc68dca52a8) = 0 -43938902015751:43938902016506 26086:26086 hsa_system_get_info(2, 0x7fc68dca52b0) = 0 -43938902017420:43938902018172 26086:26086 hsa_system_get_info(2, 0x7fc68dca52b8) = 0 -43938902019084:43938902019835 26086:26086 hsa_system_get_info(2, 0x7fc68dca52c0) = 0 -43938902020754:43938902021511 26086:26086 hsa_system_get_info(2, 0x7fc68dca52c8) = 0 -43938902022426:43938902023181 26086:26086 hsa_system_get_info(2, 0x7fc68dca52d0) = 0 -43938902024106:43938902024858 26086:26086 hsa_system_get_info(2, 0x7fc68dca52d8) = 0 -43938902025772:43938902026527 26086:26086 hsa_system_get_info(2, 0x7fc68dca52e0) = 0 -43938902027443:43938902028199 26086:26086 hsa_system_get_info(2, 0x7fc68dca52e8) = 0 -43938902029117:43938902029891 26086:26086 hsa_system_get_info(2, 0x7fc68dca52f0) = 0 -43938902030805:43938902031564 26086:26086 hsa_system_get_info(2, 0x7fc68dca52f8) = 0 -43938902033308:43938902034070 26086:26086 hsa_system_get_info(2, 0x7fc68dca5300) = 0 -43938902034987:43938902035749 26086:26086 hsa_system_get_info(2, 0x7fc68dca5308) = 0 -43938902036667:43938902037415 26086:26086 hsa_system_get_info(2, 0x7fc68dca5310) = 0 -43938902038332:43938902039084 26086:26086 hsa_system_get_info(2, 0x7fc68dca5318) = 0 -43938902040004:43938902040755 26086:26086 hsa_system_get_info(2, 0x7fc68dca5320) = 0 -43938902041673:43938902042428 26086:26086 hsa_system_get_info(2, 0x7fc68dca5328) = 0 -43938902043337:43938902044090 26086:26086 hsa_system_get_info(2, 0x7fc68dca5330) = 0 -43938902045004:43938902045755 26086:26086 hsa_system_get_info(2, 0x7fc68dca5338) = 0 -43938902046671:43938902047425 26086:26086 hsa_system_get_info(2, 0x7fc68dca5340) = 0 -43938902048342:43938902049097 26086:26086 hsa_system_get_info(2, 0x7fc68dca5348) = 0 -43938902050009:43938902050768 26086:26086 hsa_system_get_info(2, 0x7fc68dca5350) = 0 -43938902051685:43938902052445 26086:26086 hsa_system_get_info(2, 0x7fc68dca5358) = 0 -43938902053358:43938902054117 26086:26086 hsa_system_get_info(2, 0x7fc68dca5360) = 0 -43938902055051:43938902055828 26086:26086 hsa_system_get_info(2, 0x7fc68dca5368) = 0 -43938902056743:43938902057499 26086:26086 hsa_system_get_info(2, 0x7fc68dca5370) = 0 -43938902058414:43938902059171 26086:26086 hsa_system_get_info(2, 0x7fc68dca5378) = 0 -43938902060087:43938902060847 26086:26086 hsa_system_get_info(2, 0x7fc68dca5380) = 0 -43938902061763:43938902062521 26086:26086 hsa_system_get_info(2, 0x7fc68dca5388) = 0 -43938902063434:43938902064189 26086:26086 hsa_system_get_info(2, 0x7fc68dca5390) = 0 -43938902065105:43938902065858 26086:26086 hsa_system_get_info(2, 0x7fc68dca5398) = 0 -43938902066770:43938902067522 26086:26086 hsa_system_get_info(2, 0x7fc68dca53a0) = 0 -43938902068430:43938902069188 26086:26086 hsa_system_get_info(2, 0x7fc68dca53a8) = 0 -43938902070105:43938902070859 26086:26086 hsa_system_get_info(2, 0x7fc68dca53b0) = 0 -43938902071780:43938902072535 26086:26086 hsa_system_get_info(2, 0x7fc68dca53b8) = 0 -43938902073468:43938902074222 26086:26086 hsa_system_get_info(2, 0x7fc68dca53c0) = 0 -43938902075134:43938902075889 26086:26086 hsa_system_get_info(2, 0x7fc68dca53c8) = 0 -43938902076806:43938902077553 26086:26086 hsa_system_get_info(2, 0x7fc68dca53d0) = 0 -43938902078487:43938902079238 26086:26086 hsa_system_get_info(2, 0x7fc68dca53d8) = 0 -43938902080994:43938902081755 26086:26086 hsa_system_get_info(2, 0x7fc68dca53e0) = 0 -43938902082669:43938902083422 26086:26086 hsa_system_get_info(2, 0x7fc68dca53e8) = 0 -43938902084325:43938902085078 26086:26086 hsa_system_get_info(2, 0x7fc68dca53f0) = 0 -43938902085990:43938902086745 26086:26086 hsa_system_get_info(2, 0x7fc68dca53f8) = 0 -43938902087664:43938902088418 26086:26086 hsa_system_get_info(2, 0x7fc68dca5400) = 0 -43938902089334:43938902090084 26086:26086 hsa_system_get_info(2, 0x7fc68dca5408) = 0 -43938902091000:43938902091762 26086:26086 hsa_system_get_info(2, 0x7fc68dca5410) = 0 -43938902092682:43938902093432 26086:26086 hsa_system_get_info(2, 0x7fc68dca5418) = 0 -43938902094349:43938902095105 26086:26086 hsa_system_get_info(2, 0x7fc68dca5420) = 0 -43938902096025:43938902096773 26086:26086 hsa_system_get_info(2, 0x7fc68dca5428) = 0 -43938902097689:43938902098447 26086:26086 hsa_system_get_info(2, 0x7fc68dca5430) = 0 -43938902099374:43938902100127 26086:26086 hsa_system_get_info(2, 0x7fc68dca5438) = 0 -43938902101044:43938902101801 26086:26086 hsa_system_get_info(2, 0x7fc68dca5440) = 0 -43938902102714:43938902103470 26086:26086 hsa_system_get_info(2, 0x7fc68dca5448) = 0 -43938902104390:43938902105144 26086:26086 hsa_system_get_info(2, 0x7fc68dca5450) = 0 -43938902106057:43938902106805 26086:26086 hsa_system_get_info(2, 0x7fc68dca5458) = 0 -43938902107724:43938902108482 26086:26086 hsa_system_get_info(2, 0x7fc68dca5460) = 0 -43938902109400:43938902110155 26086:26086 hsa_system_get_info(2, 0x7fc68dca5468) = 0 -43938902111069:43938902111822 26086:26086 hsa_system_get_info(2, 0x7fc68dca5470) = 0 -43938902112733:43938902113486 26086:26086 hsa_system_get_info(2, 0x7fc68dca5478) = 0 -43938902114400:43938902115157 26086:26086 hsa_system_get_info(2, 0x7fc68dca5480) = 0 -43938902116072:43938902116823 26086:26086 hsa_system_get_info(2, 0x7fc68dca5488) = 0 -43938902117735:43938902118498 26086:26086 hsa_system_get_info(2, 0x7fc68dca5490) = 0 -43938902119410:43938902120166 26086:26086 hsa_system_get_info(2, 0x7fc68dca5498) = 0 -43938902121084:43938902121836 26086:26086 hsa_system_get_info(2, 0x7fc68dca54a0) = 0 -43938902122778:43938902123533 26086:26086 hsa_system_get_info(2, 0x7fc68dca54a8) = 0 -43938902124450:43938902125198 26086:26086 hsa_system_get_info(2, 0x7fc68dca54b0) = 0 -43938902126114:43938902126864 26086:26086 hsa_system_get_info(2, 0x7fc68dca54b8) = 0 -43938902127777:43938902128530 26086:26086 hsa_system_get_info(2, 0x7fc68dca54c0) = 0 -43938902130298:43938902131066 26086:26086 hsa_system_get_info(2, 0x7fc68dca54c8) = 0 -43938902131980:43938902132732 26086:26086 hsa_system_get_info(2, 0x7fc68dca54d0) = 0 -43938902133686:43938902134440 26086:26086 hsa_system_get_info(2, 0x7fc68dca54d8) = 0 -43938902135355:43938902136107 26086:26086 hsa_system_get_info(2, 0x7fc68dca54e0) = 0 -43938902137022:43938902137783 26086:26086 hsa_system_get_info(2, 0x7fc68dca54e8) = 0 -43938902138698:43938902139455 26086:26086 hsa_system_get_info(2, 0x7fc68dca54f0) = 0 -43938902140370:43938902141126 26086:26086 hsa_system_get_info(2, 0x7fc68dca54f8) = 0 -43938902142038:43938902142799 26086:26086 hsa_system_get_info(2, 0x7fc68dca5500) = 0 -43938902143717:43938902144475 26086:26086 hsa_system_get_info(2, 0x7fc68dca5508) = 0 -43938902145391:43938902146146 26086:26086 hsa_system_get_info(2, 0x7fc68dca5510) = 0 -43938902147062:43938902147820 26086:26086 hsa_system_get_info(2, 0x7fc68dca5518) = 0 -43938902148733:43938902149495 26086:26086 hsa_system_get_info(2, 0x7fc68dca5520) = 0 -43938902150409:43938902151161 26086:26086 hsa_system_get_info(2, 0x7fc68dca5528) = 0 -43938902152076:43938902152836 26086:26086 hsa_system_get_info(2, 0x7fc68dca5530) = 0 -43938902153750:43938902154504 26086:26086 hsa_system_get_info(2, 0x7fc68dca5538) = 0 -43938902155422:43938902156199 26086:26086 hsa_system_get_info(2, 0x7fc68dca5540) = 0 -43938902157120:43938902157879 26086:26086 hsa_system_get_info(2, 0x7fc68dca5548) = 0 -43938902158792:43938902159549 26086:26086 hsa_system_get_info(2, 0x7fc68dca5550) = 0 -43938902160466:43938902161224 26086:26086 hsa_system_get_info(2, 0x7fc68dca5558) = 0 -43938902162140:43938902162885 26086:26086 hsa_system_get_info(2, 0x7fc68dca5560) = 0 -43938902163798:43938902164554 26086:26086 hsa_system_get_info(2, 0x7fc68dca5568) = 0 -43938902165468:43938902166224 26086:26086 hsa_system_get_info(2, 0x7fc68dca5570) = 0 -43938902167132:43938902167889 26086:26086 hsa_system_get_info(2, 0x7fc68dca5578) = 0 -43938902168802:43938902169557 26086:26086 hsa_system_get_info(2, 0x7fc68dca5580) = 0 -43938902170473:43938902171226 26086:26086 hsa_system_get_info(2, 0x7fc68dca5588) = 0 -43938902172135:43938902172889 26086:26086 hsa_system_get_info(2, 0x7fc68dca5590) = 0 -43938902173801:43938902174551 26086:26086 hsa_system_get_info(2, 0x7fc68dca5598) = 0 -43938902175468:43938902176223 26086:26086 hsa_system_get_info(2, 0x7fc68dca55a0) = 0 -43938902178011:43938902178774 26086:26086 hsa_system_get_info(2, 0x7fc68dca55a8) = 0 -43938902179684:43938902180439 26086:26086 hsa_system_get_info(2, 0x7fc68dca55b0) = 0 -43938902181356:43938902182113 26086:26086 hsa_system_get_info(2, 0x7fc68dca55b8) = 0 -43938902183028:43938902183782 26086:26086 hsa_system_get_info(2, 0x7fc68dca55c0) = 0 -43938902184697:43938902185447 26086:26086 hsa_system_get_info(2, 0x7fc68dca55c8) = 0 -43938902186357:43938902187110 26086:26086 hsa_system_get_info(2, 0x7fc68dca55d0) = 0 -43938902188019:43938902188772 26086:26086 hsa_system_get_info(2, 0x7fc68dca55d8) = 0 -43938902189689:43938902190446 26086:26086 hsa_system_get_info(2, 0x7fc68dca55e0) = 0 -43938902191361:43938902192113 26086:26086 hsa_system_get_info(2, 0x7fc68dca55e8) = 0 -43938902193028:43938902193795 26086:26086 hsa_system_get_info(2, 0x7fc68dca55f0) = 0 -43938902194707:43938902195469 26086:26086 hsa_system_get_info(2, 0x7fc68dca55f8) = 0 -43938902196384:43938902197138 26086:26086 hsa_system_get_info(2, 0x7fc68dca5600) = 0 -43938902198050:43938902198807 26086:26086 hsa_system_get_info(2, 0x7fc68dca5608) = 0 -43938902199737:43938902200484 26086:26086 hsa_system_get_info(2, 0x7fc68dca5610) = 0 -43938902201392:43938902202147 26086:26086 hsa_system_get_info(2, 0x7fc68dca5618) = 0 -43938902203074:43938902203820 26086:26086 hsa_system_get_info(2, 0x7fc68dca5620) = 0 -43938902204737:43938902205492 26086:26086 hsa_system_get_info(2, 0x7fc68dca5628) = 0 -43938902206403:43938902207153 26086:26086 hsa_system_get_info(2, 0x7fc68dca5630) = 0 -43938902208064:43938902208820 26086:26086 hsa_system_get_info(2, 0x7fc68dca5638) = 0 -43938902209732:43938902210493 26086:26086 hsa_system_get_info(2, 0x7fc68dca5640) = 0 -43938902211408:43938902212167 26086:26086 hsa_system_get_info(2, 0x7fc68dca5648) = 0 -43938902213080:43938902213831 26086:26086 hsa_system_get_info(2, 0x7fc68dca5650) = 0 -43938902214750:43938902215503 26086:26086 hsa_system_get_info(2, 0x7fc68dca5658) = 0 -43938902216419:43938902217171 26086:26086 hsa_system_get_info(2, 0x7fc68dca5660) = 0 -43938902218089:43938902218842 26086:26086 hsa_system_get_info(2, 0x7fc68dca5668) = 0 -43938902219757:43938902220515 26086:26086 hsa_system_get_info(2, 0x7fc68dca5670) = 0 -43938902221431:43938902222184 26086:26086 hsa_system_get_info(2, 0x7fc68dca5678) = 0 -43938902223098:43938902223852 26086:26086 hsa_system_get_info(2, 0x7fc68dca5680) = 0 -43938902225634:43938902226390 26086:26086 hsa_system_get_info(2, 0x7fc68dca5688) = 0 -43938902227301:43938902228056 26086:26086 hsa_system_get_info(2, 0x7fc68dca5690) = 0 -43938902229004:43938902229758 26086:26086 hsa_system_get_info(2, 0x7fc68dca5698) = 0 -43938902230673:43938902231425 26086:26086 hsa_system_get_info(2, 0x7fc68dca56a0) = 0 -43938902232339:43938902233090 26086:26086 hsa_system_get_info(2, 0x7fc68dca56a8) = 0 -43938902234010:43938902234764 26086:26086 hsa_system_get_info(2, 0x7fc68dca56b0) = 0 -43938902235701:43938902236465 26086:26086 hsa_system_get_info(2, 0x7fc68dca56b8) = 0 -43938902237386:43938902238140 26086:26086 hsa_system_get_info(2, 0x7fc68dca56c0) = 0 -43938902239052:43938902239811 26086:26086 hsa_system_get_info(2, 0x7fc68dca56c8) = 0 -43938902240725:43938902241476 26086:26086 hsa_system_get_info(2, 0x7fc68dca56d0) = 0 -43938902242394:43938902243149 26086:26086 hsa_system_get_info(2, 0x7fc68dca56d8) = 0 -43938902244065:43938902244822 26086:26086 hsa_system_get_info(2, 0x7fc68dca56e0) = 0 -43938902245733:43938902246490 26086:26086 hsa_system_get_info(2, 0x7fc68dca56e8) = 0 -43938902247405:43938902248158 26086:26086 hsa_system_get_info(2, 0x7fc68dca56f0) = 0 -43938902249077:43938902249835 26086:26086 hsa_system_get_info(2, 0x7fc68dca56f8) = 0 -43938902250749:43938902251501 26086:26086 hsa_system_get_info(2, 0x7fc68dca5700) = 0 -43938902252445:43938902253209 26086:26086 hsa_system_get_info(2, 0x7fc68dca5708) = 0 -43938902254126:43938902254883 26086:26086 hsa_system_get_info(2, 0x7fc68dca5710) = 0 -43938902255803:43938902256560 26086:26086 hsa_system_get_info(2, 0x7fc68dca5718) = 0 -43938902257478:43938902258239 26086:26086 hsa_system_get_info(2, 0x7fc68dca5720) = 0 -43938902259157:43938902259904 26086:26086 hsa_system_get_info(2, 0x7fc68dca5728) = 0 -43938902260815:43938902261564 26086:26086 hsa_system_get_info(2, 0x7fc68dca5730) = 0 -43938902262493:43938902263245 26086:26086 hsa_system_get_info(2, 0x7fc68dca5738) = 0 -43938902264155:43938902264904 26086:26086 hsa_system_get_info(2, 0x7fc68dca5740) = 0 -43938902265829:43938902266577 26086:26086 hsa_system_get_info(2, 0x7fc68dca5748) = 0 -43938902267498:43938902268251 26086:26086 hsa_system_get_info(2, 0x7fc68dca5750) = 0 -43938902269168:43938902269919 26086:26086 hsa_system_get_info(2, 0x7fc68dca5758) = 0 -43938902270829:43938902271581 26086:26086 hsa_system_get_info(2, 0x7fc68dca5760) = 0 -43938902272495:43938902273248 26086:26086 hsa_system_get_info(2, 0x7fc68dca5768) = 0 -43938902275012:43938902275769 26086:26086 hsa_system_get_info(2, 0x7fc68dca5770) = 0 -43938902276684:43938902277435 26086:26086 hsa_system_get_info(2, 0x7fc68dca5778) = 0 -43938902278352:43938902279107 26086:26086 hsa_system_get_info(2, 0x7fc68dca5780) = 0 -43938902280022:43938902280773 26086:26086 hsa_system_get_info(2, 0x7fc68dca5788) = 0 -43938902281690:43938902282434 26086:26086 hsa_system_get_info(2, 0x7fc68dca5790) = 0 -43938902283348:43938902284099 26086:26086 hsa_system_get_info(2, 0x7fc68dca5798) = 0 -43938902285017:43938902285774 26086:26086 hsa_system_get_info(2, 0x7fc68dca57a0) = 0 -43938902286687:43938902287434 26086:26086 hsa_system_get_info(2, 0x7fc68dca57a8) = 0 -43938902288345:43938902289096 26086:26086 hsa_system_get_info(2, 0x7fc68dca57b0) = 0 -43938902290012:43938902290770 26086:26086 hsa_system_get_info(2, 0x7fc68dca57b8) = 0 -43938902291682:43938902292435 26086:26086 hsa_system_get_info(2, 0x7fc68dca57c0) = 0 -43938902293350:43938902294103 26086:26086 hsa_system_get_info(2, 0x7fc68dca57c8) = 0 -43938902295018:43938902295776 26086:26086 hsa_system_get_info(2, 0x7fc68dca57d0) = 0 -43938902296712:43938902297475 26086:26086 hsa_system_get_info(2, 0x7fc68dca57d8) = 0 -43938902298391:43938902299149 26086:26086 hsa_system_get_info(2, 0x7fc68dca57e0) = 0 -43938902300068:43938902300822 26086:26086 hsa_system_get_info(2, 0x7fc68dca57e8) = 0 -43938902301739:43938902302489 26086:26086 hsa_system_get_info(2, 0x7fc68dca57f0) = 0 -43938902303402:43938902304159 26086:26086 hsa_system_get_info(2, 0x7fc68dca57f8) = 0 -43938902305089:43938902305843 26086:26086 hsa_system_get_info(2, 0x7fc68dca5800) = 0 -43938902306759:43938902307515 26086:26086 hsa_system_get_info(2, 0x7fc68dca5808) = 0 -43938902308429:43938902309184 26086:26086 hsa_system_get_info(2, 0x7fc68dca5810) = 0 -43938902310091:43938902310842 26086:26086 hsa_system_get_info(2, 0x7fc68dca5818) = 0 -43938902311755:43938902312509 26086:26086 hsa_system_get_info(2, 0x7fc68dca5820) = 0 -43938902313425:43938902314173 26086:26086 hsa_system_get_info(2, 0x7fc68dca5828) = 0 -43938902315086:43938902315833 26086:26086 hsa_system_get_info(2, 0x7fc68dca5830) = 0 -43938902316752:43938902317505 26086:26086 hsa_system_get_info(2, 0x7fc68dca5838) = 0 -43938902318410:43938902319162 26086:26086 hsa_system_get_info(2, 0x7fc68dca5840) = 0 -43938902320076:43938902320827 26086:26086 hsa_system_get_info(2, 0x7fc68dca5848) = 0 -43938902322602:43938902323355 26086:26086 hsa_system_get_info(2, 0x7fc68dca5850) = 0 -43938902324270:43938902325020 26086:26086 hsa_system_get_info(2, 0x7fc68dca5858) = 0 -43938902325936:43938902326687 26086:26086 hsa_system_get_info(2, 0x7fc68dca5860) = 0 -43938902327601:43938902328355 26086:26086 hsa_system_get_info(2, 0x7fc68dca5868) = 0 -43938902329265:43938902330017 26086:26086 hsa_system_get_info(2, 0x7fc68dca5870) = 0 -43938902330933:43938902331686 26086:26086 hsa_system_get_info(2, 0x7fc68dca5878) = 0 -43938902332601:43938902333354 26086:26086 hsa_system_get_info(2, 0x7fc68dca5880) = 0 -43938902334275:43938902335034 26086:26086 hsa_system_get_info(2, 0x7fc68dca5888) = 0 -43938902335946:43938902336703 26086:26086 hsa_system_get_info(2, 0x7fc68dca5890) = 0 -43938902337620:43938902338376 26086:26086 hsa_system_get_info(2, 0x7fc68dca5898) = 0 -43938902339290:43938902340049 26086:26086 hsa_system_get_info(2, 0x7fc68dca58a0) = 0 -43938902340965:43938902341723 26086:26086 hsa_system_get_info(2, 0x7fc68dca58a8) = 0 -43938902342633:43938902343382 26086:26086 hsa_system_get_info(2, 0x7fc68dca58b0) = 0 -43938902344296:43938902345057 26086:26086 hsa_system_get_info(2, 0x7fc68dca58b8) = 0 -43938902345985:43938902346743 26086:26086 hsa_system_get_info(2, 0x7fc68dca58c0) = 0 -43938902347653:43938902348412 26086:26086 hsa_system_get_info(2, 0x7fc68dca58c8) = 0 -43938902349331:43938902350094 26086:26086 hsa_system_get_info(2, 0x7fc68dca58d0) = 0 -43938902351009:43938902351773 26086:26086 hsa_system_get_info(2, 0x7fc68dca58d8) = 0 -43938902352690:43938902353454 26086:26086 hsa_system_get_info(2, 0x7fc68dca58e0) = 0 -43938902354374:43938902355121 26086:26086 hsa_system_get_info(2, 0x7fc68dca58e8) = 0 -43938902356033:43938902356788 26086:26086 hsa_system_get_info(2, 0x7fc68dca58f0) = 0 -43938902357701:43938902358456 26086:26086 hsa_system_get_info(2, 0x7fc68dca58f8) = 0 -43938902359369:43938902360121 26086:26086 hsa_system_get_info(2, 0x7fc68dca5900) = 0 -43938902361036:43938902361791 26086:26086 hsa_system_get_info(2, 0x7fc68dca5908) = 0 -43938902362706:43938902363467 26086:26086 hsa_system_get_info(2, 0x7fc68dca5910) = 0 -43938902364389:43938902365144 26086:26086 hsa_system_get_info(2, 0x7fc68dca5918) = 0 -43938902366065:43938902366826 26086:26086 hsa_system_get_info(2, 0x7fc68dca5920) = 0 -43938902367745:43938902368505 26086:26086 hsa_system_get_info(2, 0x7fc68dca5928) = 0 -43938902369439:43938902370191 26086:26086 hsa_system_get_info(2, 0x7fc68dca5930) = 0 -43938902372044:43938902372812 26086:26086 hsa_system_get_info(2, 0x7fc68dca5938) = 0 -43938902373728:43938902374476 26086:26086 hsa_system_get_info(2, 0x7fc68dca5940) = 0 -43938902375390:43938902376141 26086:26086 hsa_system_get_info(2, 0x7fc68dca5948) = 0 -43938902377058:43938902377811 26086:26086 hsa_system_get_info(2, 0x7fc68dca5950) = 0 -43938902378726:43938902379479 26086:26086 hsa_system_get_info(2, 0x7fc68dca5958) = 0 -43938902380391:43938902381150 26086:26086 hsa_system_get_info(2, 0x7fc68dca5960) = 0 -43938902382064:43938902382817 26086:26086 hsa_system_get_info(2, 0x7fc68dca5968) = 0 -43938902383732:43938902384491 26086:26086 hsa_system_get_info(2, 0x7fc68dca5970) = 0 -43938902385409:43938902386167 26086:26086 hsa_system_get_info(2, 0x7fc68dca5978) = 0 -43938902387083:43938902387837 26086:26086 hsa_system_get_info(2, 0x7fc68dca5980) = 0 -43938902388754:43938902389510 26086:26086 hsa_system_get_info(2, 0x7fc68dca5988) = 0 -43938902390421:43938902391174 26086:26086 hsa_system_get_info(2, 0x7fc68dca5990) = 0 -43938902392093:43938902392874 26086:26086 hsa_system_get_info(2, 0x7fc68dca5998) = 0 -43938902393783:43938902394534 26086:26086 hsa_system_get_info(2, 0x7fc68dca59a0) = 0 -43938902395447:43938902396199 26086:26086 hsa_system_get_info(2, 0x7fc68dca59a8) = 0 -43938902397112:43938902397866 26086:26086 hsa_system_get_info(2, 0x7fc68dca59b0) = 0 -43938902398782:43938902399535 26086:26086 hsa_system_get_info(2, 0x7fc68dca59b8) = 0 -43938902400449:43938902401206 26086:26086 hsa_system_get_info(2, 0x7fc68dca59c0) = 0 -43938902402120:43938902402869 26086:26086 hsa_system_get_info(2, 0x7fc68dca59c8) = 0 -43938902403780:43938902404534 26086:26086 hsa_system_get_info(2, 0x7fc68dca59d0) = 0 -43938902405446:43938902406200 26086:26086 hsa_system_get_info(2, 0x7fc68dca59d8) = 0 -43938902407107:43938902407870 26086:26086 hsa_system_get_info(2, 0x7fc68dca59e0) = 0 -43938902408787:43938902409548 26086:26086 hsa_system_get_info(2, 0x7fc68dca59e8) = 0 -43938902410479:43938902411230 26086:26086 hsa_system_get_info(2, 0x7fc68dca59f0) = 0 -43938902412164:43938902412920 26086:26086 hsa_system_get_info(2, 0x7fc68dca59f8) = 0 -43938902413831:43938902414590 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a00) = 0 -43938902415527:43938902416284 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a08) = 0 -43938902417214:43938902417974 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a10) = 0 -43938902419712:43938902420473 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a18) = 0 -43938902421391:43938902422150 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a20) = 0 -43938902423063:43938902423820 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a28) = 0 -43938902424739:43938902425496 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a30) = 0 -43938902426411:43938902427171 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a38) = 0 -43938902428082:43938902428838 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a40) = 0 -43938902429755:43938902430513 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a48) = 0 -43938902431424:43938902432178 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a50) = 0 -43938902433091:43938902433840 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a58) = 0 -43938902434756:43938902435512 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a60) = 0 -43938902436424:43938902437179 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a68) = 0 -43938902438098:43938902438860 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a70) = 0 -43938902439770:43938902440527 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a78) = 0 -43938902441459:43938902442216 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a80) = 0 -43938902443126:43938902443881 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a88) = 0 -43938902444795:43938902445550 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a90) = 0 -43938902446461:43938902447208 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a98) = 0 -43938902448124:43938902448881 26086:26086 hsa_system_get_info(2, 0x7fc68dca5aa0) = 0 -43938902449796:43938902450553 26086:26086 hsa_system_get_info(2, 0x7fc68dca5aa8) = 0 -43938902451485:43938902452236 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ab0) = 0 -43938902453152:43938902453903 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ab8) = 0 -43938902454816:43938902455572 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ac0) = 0 -43938902456484:43938902457240 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ac8) = 0 -43938902458157:43938902458916 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ad0) = 0 -43938902459835:43938902460586 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ad8) = 0 -43938902461508:43938902462263 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ae0) = 0 -43938902463180:43938902463937 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ae8) = 0 -43938902464853:43938902465605 26086:26086 hsa_system_get_info(2, 0x7fc68dca5af0) = 0 -43938902466524:43938902467286 26086:26086 hsa_system_get_info(2, 0x7fc68dca5af8) = 0 -43938902469804:43938902470569 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b00) = 0 -43938902471507:43938902472263 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b08) = 0 -43938902473186:43938902473935 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b10) = 0 -43938902474850:43938902475605 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b18) = 0 -43938902476517:43938902477276 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b20) = 0 -43938902478185:43938902478943 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b28) = 0 -43938902479859:43938902480606 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b30) = 0 -43938902481520:43938902482272 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b38) = 0 -43938902483188:43938902483940 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b40) = 0 -43938902484856:43938902485611 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b48) = 0 -43938902486525:43938902487283 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b50) = 0 -43938902488195:43938902488948 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b58) = 0 -43938902489866:43938902490623 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b60) = 0 -43938902491536:43938902492280 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b68) = 0 -43938902493196:43938902493971 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b70) = 0 -43938902494880:43938902495633 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b78) = 0 -43938902496549:43938902497306 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b80) = 0 -43938902498220:43938902498973 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b88) = 0 -43938902499885:43938902500643 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b90) = 0 -43938902501558:43938902502315 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b98) = 0 -43938902503231:43938902503981 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ba0) = 0 -43938902504893:43938902505642 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ba8) = 0 -43938902506560:43938902507312 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bb0) = 0 -43938902508236:43938902508990 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bb8) = 0 -43938902509926:43938902510681 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bc0) = 0 -43938902511596:43938902512347 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bc8) = 0 -43938902513259:43938902514012 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bd0) = 0 -43938902514929:43938902515686 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bd8) = 0 -43938902519062:43938902519837 26086:26086 hsa_system_get_info(2, 0x7fc68dca5be0) = 0 -43938902520757:43938902521520 26086:26086 hsa_system_get_info(2, 0x7fc68dca5be8) = 0 -43938902522436:43938902523198 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bf0) = 0 -43938902524113:43938902524869 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bf8) = 0 -43938902525790:43938902526549 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c00) = 0 -43938902527459:43938902528213 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c08) = 0 -43938902529126:43938902529880 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c10) = 0 -43938902530795:43938902531554 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c18) = 0 -43938902532469:43938902533223 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c20) = 0 -43938902534141:43938902534897 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c28) = 0 -43938902535809:43938902536559 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c30) = 0 -43938902537475:43938902538233 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c38) = 0 -43938902539145:43938902539914 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c40) = 0 -43938902540826:43938902541614 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c48) = 0 -43938902542529:43938902543282 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c50) = 0 -43938902544196:43938902544948 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c58) = 0 -43938902545860:43938902546617 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c60) = 0 -43938902547534:43938902548291 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c68) = 0 -43938902549212:43938902549976 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c70) = 0 -43938902550895:43938902551658 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c78) = 0 -43938902552575:43938902553330 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c80) = 0 -43938902554248:43938902555009 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c88) = 0 -43938902555927:43938902556676 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c90) = 0 -43938902557591:43938902558344 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c98) = 0 -43938902559258:43938902560010 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ca0) = 0 -43938902560929:43938902561678 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ca8) = 0 -43938902562595:43938902563347 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cb0) = 0 -43938902564262:43938902565035 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cb8) = 0 -43938902565958:43938902566717 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cc0) = 0 -43938902568506:43938902569266 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cc8) = 0 -43938902570184:43938902570938 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cd0) = 0 -43938902571858:43938902572613 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cd8) = 0 -43938902573533:43938902574286 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ce0) = 0 -43938902575203:43938902575952 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ce8) = 0 -43938902576871:43938902577630 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cf0) = 0 -43938902578543:43938902579296 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cf8) = 0 -43938902580207:43938902580962 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d00) = 0 -43938902581875:43938902582634 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d08) = 0 -43938902583548:43938902584299 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d10) = 0 -43938902585210:43938902585967 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d18) = 0 -43938902586881:43938902587633 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d20) = 0 -43938902588563:43938902589322 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d28) = 0 -43938902590237:43938902590991 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d30) = 0 -43938902591904:43938902592648 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d38) = 0 -43938902593564:43938902594318 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d40) = 0 -43938902595229:43938902595987 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d48) = 0 -43938902596897:43938902597657 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d50) = 0 -43938902598590:43938902599354 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d58) = 0 -43938902600268:43938902601023 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d60) = 0 -43938902601935:43938902602696 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d68) = 0 -43938902603609:43938902604366 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d70) = 0 -43938902605281:43938902606032 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d78) = 0 -43938902606962:43938902607711 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d80) = 0 -43938902608640:43938902609386 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d88) = 0 -43938902610304:43938902611060 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d90) = 0 -43938902611978:43938902612735 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d98) = 0 -43938902613651:43938902614402 26086:26086 hsa_system_get_info(2, 0x7fc68dca5da0) = 0 -43938902616262:43938902617023 26086:26086 hsa_system_get_info(2, 0x7fc68dca5da8) = 0 -43938902617945:43938902618700 26086:26086 hsa_system_get_info(2, 0x7fc68dca5db0) = 0 -43938902619619:43938902620368 26086:26086 hsa_system_get_info(2, 0x7fc68dca5db8) = 0 -43938902621289:43938902622046 26086:26086 hsa_system_get_info(2, 0x7fc68dca5dc0) = 0 -43938902622968:43938902623731 26086:26086 hsa_system_get_info(2, 0x7fc68dca5dc8) = 0 -43938902624661:43938902625413 26086:26086 hsa_system_get_info(2, 0x7fc68dca5dd0) = 0 -43938902626326:43938902627074 26086:26086 hsa_system_get_info(2, 0x7fc68dca5dd8) = 0 -43938902627993:43938902628750 26086:26086 hsa_system_get_info(2, 0x7fc68dca5de0) = 0 -43938902629665:43938902630419 26086:26086 hsa_system_get_info(2, 0x7fc68dca5de8) = 0 -43938902631335:43938902632091 26086:26086 hsa_system_get_info(2, 0x7fc68dca5df0) = 0 -43938902633001:43938902633755 26086:26086 hsa_system_get_info(2, 0x7fc68dca5df8) = 0 -43938902634671:43938902635425 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e00) = 0 -43938902636344:43938902637106 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e08) = 0 -43938902638023:43938902638773 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e10) = 0 -43938902639685:43938902640435 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e18) = 0 -43938902641348:43938902642102 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e20) = 0 -43938902643015:43938902643765 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e28) = 0 -43938902644678:43938902645437 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e30) = 0 -43938902646365:43938902647117 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e38) = 0 -43938902648032:43938902648792 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e40) = 0 -43938902649712:43938902650466 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e48) = 0 -43938902651384:43938902652143 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e50) = 0 -43938902653062:43938902653819 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e58) = 0 -43938902654748:43938902655503 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e60) = 0 -43938902656415:43938902657171 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e68) = 0 -43938902658092:43938902658846 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e70) = 0 -43938902659761:43938902660512 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e78) = 0 -43938902661423:43938902662173 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e80) = 0 -43938902663924:43938902664680 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e88) = 0 -43938902665593:43938902666347 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e90) = 0 -43938902667256:43938902668015 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e98) = 0 -43938902668930:43938902669684 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ea0) = 0 -43938902670604:43938902671362 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ea8) = 0 -43938902672278:43938902673034 26086:26086 hsa_system_get_info(2, 0x7fc68dca5eb0) = 0 -43938902673949:43938902674702 26086:26086 hsa_system_get_info(2, 0x7fc68dca5eb8) = 0 -43938902675616:43938902676372 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ec0) = 0 -43938902677288:43938902678047 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ec8) = 0 -43938902678962:43938902679720 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ed0) = 0 -43938902680636:43938902681384 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ed8) = 0 -43938902682301:43938902683050 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ee0) = 0 -43938902683995:43938902684745 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ee8) = 0 -43938902685659:43938902686415 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ef0) = 0 -43938902687335:43938902688088 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ef8) = 0 -43938902689002:43938902689759 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f00) = 0 -43938902690698:43938902691457 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f08) = 0 -43938902692372:43938902693125 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f10) = 0 -43938902694043:43938902694796 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f18) = 0 -43938902695711:43938902696463 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f20) = 0 -43938902697377:43938902698129 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f28) = 0 -43938902699046:43938902699797 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f30) = 0 -43938902700709:43938902701455 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f38) = 0 -43938902702369:43938902703121 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f40) = 0 -43938902704050:43938902704808 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f48) = 0 -43938902705727:43938902706480 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f50) = 0 -43938902707395:43938902708153 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f58) = 0 -43938902709070:43938902709825 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f60) = 0 -43938902710739:43938902711491 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f68) = 0 -43938902713246:43938902714001 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f70) = 0 -43938902714915:43938902715664 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f78) = 0 -43938902716578:43938902717334 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f80) = 0 -43938902718279:43938902719031 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f88) = 0 -43938902719946:43938902720705 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f90) = 0 -43938902721621:43938902722371 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f98) = 0 -43938902723289:43938902724045 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fa0) = 0 -43938902724958:43938902725718 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fa8) = 0 -43938902726636:43938902727390 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fb0) = 0 -43938902728307:43938902729055 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fb8) = 0 -43938902729967:43938902730722 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fc0) = 0 -43938902731640:43938902732396 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fc8) = 0 -43938902733310:43938902734069 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fd0) = 0 -43938902734984:43938902735745 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fd8) = 0 -43938902736654:43938902737414 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fe0) = 0 -43938902738331:43938902739082 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fe8) = 0 -43938902739998:43938902740749 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ff0) = 0 -43938902741672:43938902742428 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ff8) = 0 -43938902743339:43938902744097 26086:26086 hsa_system_get_info(2, 0x7fc68dca6000) = 0 -43938902745011:43938902745768 26086:26086 hsa_system_get_info(2, 0x7fc68dca6008) = 0 -43938902746683:43938902747446 26086:26086 hsa_system_get_info(2, 0x7fc68dca6010) = 0 -43938902748356:43938902749113 26086:26086 hsa_system_get_info(2, 0x7fc68dca6018) = 0 -43938902750026:43938902750782 26086:26086 hsa_system_get_info(2, 0x7fc68dca6020) = 0 -43938902751698:43938902752456 26086:26086 hsa_system_get_info(2, 0x7fc68dca6028) = 0 -43938902753371:43938902754127 26086:26086 hsa_system_get_info(2, 0x7fc68dca6030) = 0 -43938902755048:43938902755807 26086:26086 hsa_system_get_info(2, 0x7fc68dca6038) = 0 -43938902756723:43938902757482 26086:26086 hsa_system_get_info(2, 0x7fc68dca6040) = 0 -43938902758392:43938902759149 26086:26086 hsa_system_get_info(2, 0x7fc68dca6048) = 0 -43938902760891:43938902761646 26086:26086 hsa_system_get_info(2, 0x7fc68dca6050) = 0 -43938902762563:43938902763313 26086:26086 hsa_system_get_info(2, 0x7fc68dca6058) = 0 -43938902764228:43938902764983 26086:26086 hsa_system_get_info(2, 0x7fc68dca6060) = 0 -43938902765900:43938902766652 26086:26086 hsa_system_get_info(2, 0x7fc68dca6068) = 0 -43938902767567:43938902768317 26086:26086 hsa_system_get_info(2, 0x7fc68dca6070) = 0 -43938902769231:43938902769983 26086:26086 hsa_system_get_info(2, 0x7fc68dca6078) = 0 -43938902770902:43938902771655 26086:26086 hsa_system_get_info(2, 0x7fc68dca6080) = 0 -43938902772572:43938902773330 26086:26086 hsa_system_get_info(2, 0x7fc68dca6088) = 0 -43938902774239:43938902774998 26086:26086 hsa_system_get_info(2, 0x7fc68dca6090) = 0 -43938902775915:43938902776678 26086:26086 hsa_system_get_info(2, 0x7fc68dca6098) = 0 -43938902777600:43938902778359 26086:26086 hsa_system_get_info(2, 0x7fc68dca60a0) = 0 -43938902779274:43938902780037 26086:26086 hsa_system_get_info(2, 0x7fc68dca60a8) = 0 -43938902780953:43938902781711 26086:26086 hsa_system_get_info(2, 0x7fc68dca60b0) = 0 -43938902782643:43938902783401 26086:26086 hsa_system_get_info(2, 0x7fc68dca60b8) = 0 -43938902784313:43938902785066 26086:26086 hsa_system_get_info(2, 0x7fc68dca60c0) = 0 -43938902785981:43938902786738 26086:26086 hsa_system_get_info(2, 0x7fc68dca60c8) = 0 -43938902787654:43938902788410 26086:26086 hsa_system_get_info(2, 0x7fc68dca60d0) = 0 -43938902789320:43938902790076 26086:26086 hsa_system_get_info(2, 0x7fc68dca60d8) = 0 -43938902791008:43938902791766 26086:26086 hsa_system_get_info(2, 0x7fc68dca60e0) = 0 -43938902792680:43938902793434 26086:26086 hsa_system_get_info(2, 0x7fc68dca60e8) = 0 -43938902794351:43938902795101 26086:26086 hsa_system_get_info(2, 0x7fc68dca60f0) = 0 -43938902796008:43938902796764 26086:26086 hsa_system_get_info(2, 0x7fc68dca60f8) = 0 -43938902797675:43938902798431 26086:26086 hsa_system_get_info(2, 0x7fc68dca6100) = 0 -43938902799342:43938902800091 26086:26086 hsa_system_get_info(2, 0x7fc68dca6108) = 0 -43938902801008:43938902801767 26086:26086 hsa_system_get_info(2, 0x7fc68dca6110) = 0 -43938902802685:43938902803442 26086:26086 hsa_system_get_info(2, 0x7fc68dca6118) = 0 -43938902804356:43938902805122 26086:26086 hsa_system_get_info(2, 0x7fc68dca6120) = 0 -43938902806038:43938902806794 26086:26086 hsa_system_get_info(2, 0x7fc68dca6128) = 0 -43938902807710:43938902808466 26086:26086 hsa_system_get_info(2, 0x7fc68dca6130) = 0 -43938902810232:43938902810988 26086:26086 hsa_system_get_info(2, 0x7fc68dca6138) = 0 -43938902811896:43938902812649 26086:26086 hsa_system_get_info(2, 0x7fc68dca6140) = 0 -43938902813572:43938902814333 26086:26086 hsa_system_get_info(2, 0x7fc68dca6148) = 0 -43938902815250:43938902816001 26086:26086 hsa_system_get_info(2, 0x7fc68dca6150) = 0 -43938902816917:43938902817673 26086:26086 hsa_system_get_info(2, 0x7fc68dca6158) = 0 -43938902818586:43938902819344 26086:26086 hsa_system_get_info(2, 0x7fc68dca6160) = 0 -43938902820260:43938902821007 26086:26086 hsa_system_get_info(2, 0x7fc68dca6168) = 0 -43938902821917:43938902822661 26086:26086 hsa_system_get_info(2, 0x7fc68dca6170) = 0 -43938902823573:43938902824328 26086:26086 hsa_system_get_info(2, 0x7fc68dca6178) = 0 -43938902825242:43938902825997 26086:26086 hsa_system_get_info(2, 0x7fc68dca6180) = 0 -43938902826908:43938902827664 26086:26086 hsa_system_get_info(2, 0x7fc68dca6188) = 0 -43938902828577:43938902829333 26086:26086 hsa_system_get_info(2, 0x7fc68dca6190) = 0 -43938902830250:43938902830995 26086:26086 hsa_system_get_info(2, 0x7fc68dca6198) = 0 -43938902831927:43938902832681 26086:26086 hsa_system_get_info(2, 0x7fc68dca61a0) = 0 -43938902833593:43938902834349 26086:26086 hsa_system_get_info(2, 0x7fc68dca61a8) = 0 -43938902835261:43938902836014 26086:26086 hsa_system_get_info(2, 0x7fc68dca61b0) = 0 -43938902836934:43938902837685 26086:26086 hsa_system_get_info(2, 0x7fc68dca61b8) = 0 -43938902838597:43938902839348 26086:26086 hsa_system_get_info(2, 0x7fc68dca61c0) = 0 -43938902840265:43938902841016 26086:26086 hsa_system_get_info(2, 0x7fc68dca61c8) = 0 -43938902841928:43938902842677 26086:26086 hsa_system_get_info(2, 0x7fc68dca61d0) = 0 -43938902843592:43938902844349 26086:26086 hsa_system_get_info(2, 0x7fc68dca61d8) = 0 -43938902845264:43938902846019 26086:26086 hsa_system_get_info(2, 0x7fc68dca61e0) = 0 -43938902846937:43938902847696 26086:26086 hsa_system_get_info(2, 0x7fc68dca61e8) = 0 -43938902848624:43938902849379 26086:26086 hsa_system_get_info(2, 0x7fc68dca61f0) = 0 -43938902850330:43938902851081 26086:26086 hsa_system_get_info(2, 0x7fc68dca61f8) = 0 -43938902852013:43938902852765 26086:26086 hsa_system_get_info(2, 0x7fc68dca6200) = 0 -43938902853677:43938902854424 26086:26086 hsa_system_get_info(2, 0x7fc68dca6208) = 0 -43938902855337:43938902856083 26086:26086 hsa_system_get_info(2, 0x7fc68dca6210) = 0 -43938902857843:43938902858599 26086:26086 hsa_system_get_info(2, 0x7fc68dca6218) = 0 -43938902859516:43938902860270 26086:26086 hsa_system_get_info(2, 0x7fc68dca6220) = 0 -43938902861183:43938902861924 26086:26086 hsa_system_get_info(2, 0x7fc68dca6228) = 0 -43938902862835:43938902863589 26086:26086 hsa_system_get_info(2, 0x7fc68dca6230) = 0 -43938902864508:43938902865252 26086:26086 hsa_system_get_info(2, 0x7fc68dca6238) = 0 -43938902866167:43938902866923 26086:26086 hsa_system_get_info(2, 0x7fc68dca6240) = 0 -43938902867843:43938902868595 26086:26086 hsa_system_get_info(2, 0x7fc68dca6248) = 0 -43938902869510:43938902870269 26086:26086 hsa_system_get_info(2, 0x7fc68dca6250) = 0 -43938902871186:43938902871947 26086:26086 hsa_system_get_info(2, 0x7fc68dca6258) = 0 -43938902872859:43938902873616 26086:26086 hsa_system_get_info(2, 0x7fc68dca6260) = 0 -43938902874531:43938902875288 26086:26086 hsa_system_get_info(2, 0x7fc68dca6268) = 0 -43938902876202:43938902876958 26086:26086 hsa_system_get_info(2, 0x7fc68dca6270) = 0 -43938902877869:43938902878618 26086:26086 hsa_system_get_info(2, 0x7fc68dca6278) = 0 -43938902879547:43938902880297 26086:26086 hsa_system_get_info(2, 0x7fc68dca6280) = 0 -43938902881210:43938902881963 26086:26086 hsa_system_get_info(2, 0x7fc68dca6288) = 0 -43938902882875:43938902883623 26086:26086 hsa_system_get_info(2, 0x7fc68dca6290) = 0 -43938902884541:43938902885293 26086:26086 hsa_system_get_info(2, 0x7fc68dca6298) = 0 -43938902886207:43938902886963 26086:26086 hsa_system_get_info(2, 0x7fc68dca62a0) = 0 -43938902887873:43938902888624 26086:26086 hsa_system_get_info(2, 0x7fc68dca62a8) = 0 -43938902889540:43938902890293 26086:26086 hsa_system_get_info(2, 0x7fc68dca62b0) = 0 -43938902891205:43938902891962 26086:26086 hsa_system_get_info(2, 0x7fc68dca62b8) = 0 -43938902892895:43938902893650 26086:26086 hsa_system_get_info(2, 0x7fc68dca62c0) = 0 -43938902894565:43938902895323 26086:26086 hsa_system_get_info(2, 0x7fc68dca62c8) = 0 -43938902896241:43938902897004 26086:26086 hsa_system_get_info(2, 0x7fc68dca62d0) = 0 -43938902897920:43938902898669 26086:26086 hsa_system_get_info(2, 0x7fc68dca62d8) = 0 -43938902899591:43938902900343 26086:26086 hsa_system_get_info(2, 0x7fc68dca62e0) = 0 -43938902901258:43938902902006 26086:26086 hsa_system_get_info(2, 0x7fc68dca62e8) = 0 -43938902902921:43938902903670 26086:26086 hsa_system_get_info(2, 0x7fc68dca62f0) = 0 -43938902904582:43938902905335 26086:26086 hsa_system_get_info(2, 0x7fc68dca62f8) = 0 -43938902907062:43938902907822 26086:26086 hsa_system_get_info(2, 0x7fc68dca6300) = 0 -43938902908742:43938902909502 26086:26086 hsa_system_get_info(2, 0x7fc68dca6308) = 0 -43938902910416:43938902911167 26086:26086 hsa_system_get_info(2, 0x7fc68dca6310) = 0 -43938902912077:43938902912836 26086:26086 hsa_system_get_info(2, 0x7fc68dca6318) = 0 -43938902913754:43938902914512 26086:26086 hsa_system_get_info(2, 0x7fc68dca6320) = 0 -43938902915423:43938902916176 26086:26086 hsa_system_get_info(2, 0x7fc68dca6328) = 0 -43938902917090:43938902917842 26086:26086 hsa_system_get_info(2, 0x7fc68dca6330) = 0 -43938902918754:43938902919507 26086:26086 hsa_system_get_info(2, 0x7fc68dca6338) = 0 -43938902920422:43938902921178 26086:26086 hsa_system_get_info(2, 0x7fc68dca6340) = 0 -43938902922092:43938902922838 26086:26086 hsa_system_get_info(2, 0x7fc68dca6348) = 0 -43938902923753:43938902924509 26086:26086 hsa_system_get_info(2, 0x7fc68dca6350) = 0 -43938902925427:43938902926191 26086:26086 hsa_system_get_info(2, 0x7fc68dca6358) = 0 -43938902927111:43938902927872 26086:26086 hsa_system_get_info(2, 0x7fc68dca6360) = 0 -43938902928802:43938902929560 26086:26086 hsa_system_get_info(2, 0x7fc68dca6368) = 0 -43938902930481:43938902931236 26086:26086 hsa_system_get_info(2, 0x7fc68dca6370) = 0 -43938902932152:43938902932909 26086:26086 hsa_system_get_info(2, 0x7fc68dca6378) = 0 -43938902933825:43938902934572 26086:26086 hsa_system_get_info(2, 0x7fc68dca6380) = 0 -43938902935486:43938902936241 26086:26086 hsa_system_get_info(2, 0x7fc68dca6388) = 0 -43938902937157:43938902937911 26086:26086 hsa_system_get_info(2, 0x7fc68dca6390) = 0 -43938902938825:43938902939577 26086:26086 hsa_system_get_info(2, 0x7fc68dca6398) = 0 -43938902940491:43938902941257 26086:26086 hsa_system_get_info(2, 0x7fc68dca63a0) = 0 -43938902942173:43938902942936 26086:26086 hsa_system_get_info(2, 0x7fc68dca63a8) = 0 -43938902943852:43938902944617 26086:26086 hsa_system_get_info(2, 0x7fc68dca63b0) = 0 -43938902945552:43938902946311 26086:26086 hsa_system_get_info(2, 0x7fc68dca63b8) = 0 -43938902947248:43938902948009 26086:26086 hsa_system_get_info(2, 0x7fc68dca63c0) = 0 -43938902948939:43938902949701 26086:26086 hsa_system_get_info(2, 0x7fc68dca63c8) = 0 -43938902950615:43938902951366 26086:26086 hsa_system_get_info(2, 0x7fc68dca63d0) = 0 -43938902952281:43938902953035 26086:26086 hsa_system_get_info(2, 0x7fc68dca63d8) = 0 -43938902954805:43938902955553 26086:26086 hsa_system_get_info(2, 0x7fc68dca63e0) = 0 -43938902956465:43938902957220 26086:26086 hsa_system_get_info(2, 0x7fc68dca63e8) = 0 -43938902958134:43938902958885 26086:26086 hsa_system_get_info(2, 0x7fc68dca63f0) = 0 -43938902959805:43938902960567 26086:26086 hsa_system_get_info(2, 0x7fc68dca63f8) = 0 -43938902961484:43938902962239 26086:26086 hsa_system_get_info(2, 0x7fc68dca6400) = 0 -43938902963151:43938902963906 26086:26086 hsa_system_get_info(2, 0x7fc68dca6408) = 0 -43938902964821:43938902965573 26086:26086 hsa_system_get_info(2, 0x7fc68dca6410) = 0 -43938902966486:43938902967243 26086:26086 hsa_system_get_info(2, 0x7fc68dca6418) = 0 -43938902968158:43938902968912 26086:26086 hsa_system_get_info(2, 0x7fc68dca6420) = 0 -43938902969828:43938902970577 26086:26086 hsa_system_get_info(2, 0x7fc68dca6428) = 0 -43938902971492:43938902972247 26086:26086 hsa_system_get_info(2, 0x7fc68dca6430) = 0 -43938902973164:43938902973917 26086:26086 hsa_system_get_info(2, 0x7fc68dca6438) = 0 -43938902974831:43938902975584 26086:26086 hsa_system_get_info(2, 0x7fc68dca6440) = 0 -43938902976503:43938902977279 26086:26086 hsa_system_get_info(2, 0x7fc68dca6448) = 0 -43938902978192:43938902978947 26086:26086 hsa_system_get_info(2, 0x7fc68dca6450) = 0 -43938902979864:43938902980614 26086:26086 hsa_system_get_info(2, 0x7fc68dca6458) = 0 -43938902981533:43938902982290 26086:26086 hsa_system_get_info(2, 0x7fc68dca6460) = 0 -43938902983207:43938902983961 26086:26086 hsa_system_get_info(2, 0x7fc68dca6468) = 0 -43938902984876:43938902985629 26086:26086 hsa_system_get_info(2, 0x7fc68dca6470) = 0 -43938902986545:43938902987301 26086:26086 hsa_system_get_info(2, 0x7fc68dca6478) = 0 -43938902988216:43938902988972 26086:26086 hsa_system_get_info(2, 0x7fc68dca6480) = 0 -43938902989891:43938902990643 26086:26086 hsa_system_get_info(2, 0x7fc68dca6488) = 0 -43938902991557:43938902992312 26086:26086 hsa_system_get_info(2, 0x7fc68dca6490) = 0 -43938902993226:43938902993986 26086:26086 hsa_system_get_info(2, 0x7fc68dca6498) = 0 -43938902994900:43938902995655 26086:26086 hsa_system_get_info(2, 0x7fc68dca64a0) = 0 -43938902996569:43938902997322 26086:26086 hsa_system_get_info(2, 0x7fc68dca64a8) = 0 -43938902998236:43938902998991 26086:26086 hsa_system_get_info(2, 0x7fc68dca64b0) = 0 -43938902999922:43938903000676 26086:26086 hsa_system_get_info(2, 0x7fc68dca64b8) = 0 -43938903001591:43938903002347 26086:26086 hsa_system_get_info(2, 0x7fc68dca64c0) = 0 -43938903004091:43938903004845 26086:26086 hsa_system_get_info(2, 0x7fc68dca64c8) = 0 -43938903005761:43938903006511 26086:26086 hsa_system_get_info(2, 0x7fc68dca64d0) = 0 -43938903007425:43938903008182 26086:26086 hsa_system_get_info(2, 0x7fc68dca64d8) = 0 -43938903009095:43938903009851 26086:26086 hsa_system_get_info(2, 0x7fc68dca64e0) = 0 -43938903010767:43938903011526 26086:26086 hsa_system_get_info(2, 0x7fc68dca64e8) = 0 -43938903012441:43938903013203 26086:26086 hsa_system_get_info(2, 0x7fc68dca64f0) = 0 -43938903014115:43938903014870 26086:26086 hsa_system_get_info(2, 0x7fc68dca64f8) = 0 -43938903015786:43938903016536 26086:26086 hsa_system_get_info(2, 0x7fc68dca6500) = 0 -43938903017450:43938903018201 26086:26086 hsa_system_get_info(2, 0x7fc68dca6508) = 0 -43938903019112:43938903019868 26086:26086 hsa_system_get_info(2, 0x7fc68dca6510) = 0 -43938903020778:43938903021541 26086:26086 hsa_system_get_info(2, 0x7fc68dca6518) = 0 -43938903022456:43938903023212 26086:26086 hsa_system_get_info(2, 0x7fc68dca6520) = 0 -43938903024138:43938903024893 26086:26086 hsa_system_get_info(2, 0x7fc68dca6528) = 0 -43938903025801:43938903026554 26086:26086 hsa_system_get_info(2, 0x7fc68dca6530) = 0 -43938903027465:43938903028221 26086:26086 hsa_system_get_info(2, 0x7fc68dca6538) = 0 -43938903029130:43938903029881 26086:26086 hsa_system_get_info(2, 0x7fc68dca6540) = 0 -43938903030798:43938903031546 26086:26086 hsa_system_get_info(2, 0x7fc68dca6548) = 0 -43938903032462:43938903033220 26086:26086 hsa_system_get_info(2, 0x7fc68dca6550) = 0 -43938903034138:43938903034892 26086:26086 hsa_system_get_info(2, 0x7fc68dca6558) = 0 -43938903035807:43938903036561 26086:26086 hsa_system_get_info(2, 0x7fc68dca6560) = 0 -43938903037478:43938903038227 26086:26086 hsa_system_get_info(2, 0x7fc68dca6568) = 0 -43938903039140:43938903039896 26086:26086 hsa_system_get_info(2, 0x7fc68dca6570) = 0 -43938903040813:43938903041569 26086:26086 hsa_system_get_info(2, 0x7fc68dca6578) = 0 -43938903042489:43938903043241 26086:26086 hsa_system_get_info(2, 0x7fc68dca6580) = 0 -43938903044170:43938903044922 26086:26086 hsa_system_get_info(2, 0x7fc68dca6588) = 0 -43938903045863:43938903046614 26086:26086 hsa_system_get_info(2, 0x7fc68dca6590) = 0 -43938903047535:43938903048292 26086:26086 hsa_system_get_info(2, 0x7fc68dca6598) = 0 -43938903049208:43938903049971 26086:26086 hsa_system_get_info(2, 0x7fc68dca65a0) = 0 -43938903051731:43938903052479 26086:26086 hsa_system_get_info(2, 0x7fc68dca65a8) = 0 -43938903053393:43938903054147 26086:26086 hsa_system_get_info(2, 0x7fc68dca65b0) = 0 -43938903055060:43938903055821 26086:26086 hsa_system_get_info(2, 0x7fc68dca65b8) = 0 -43938903056736:43938903057495 26086:26086 hsa_system_get_info(2, 0x7fc68dca65c0) = 0 -43938903058406:43938903059166 26086:26086 hsa_system_get_info(2, 0x7fc68dca65c8) = 0 -43938903060081:43938903060838 26086:26086 hsa_system_get_info(2, 0x7fc68dca65d0) = 0 -43938903061753:43938903062514 26086:26086 hsa_system_get_info(2, 0x7fc68dca65d8) = 0 -43938903063430:43938903064186 26086:26086 hsa_system_get_info(2, 0x7fc68dca65e0) = 0 -43938903065103:43938903065864 26086:26086 hsa_system_get_info(2, 0x7fc68dca65e8) = 0 -43938903066778:43938903067535 26086:26086 hsa_system_get_info(2, 0x7fc68dca65f0) = 0 -43938903068444:43938903069199 26086:26086 hsa_system_get_info(2, 0x7fc68dca65f8) = 0 -43938903070116:43938903070876 26086:26086 hsa_system_get_info(2, 0x7fc68dca6600) = 0 -43938903071793:43938903072552 26086:26086 hsa_system_get_info(2, 0x7fc68dca6608) = 0 -43938903073464:43938903074238 26086:26086 hsa_system_get_info(2, 0x7fc68dca6610) = 0 -43938903075152:43938903075906 26086:26086 hsa_system_get_info(2, 0x7fc68dca6618) = 0 -43938903076812:43938903077568 26086:26086 hsa_system_get_info(2, 0x7fc68dca6620) = 0 -43938903078483:43938903079237 26086:26086 hsa_system_get_info(2, 0x7fc68dca6628) = 0 -43938903080151:43938903080909 26086:26086 hsa_system_get_info(2, 0x7fc68dca6630) = 0 -43938903081818:43938903082575 26086:26086 hsa_system_get_info(2, 0x7fc68dca6638) = 0 -43938903083492:43938903084250 26086:26086 hsa_system_get_info(2, 0x7fc68dca6640) = 0 -43938903085165:43938903085927 26086:26086 hsa_system_get_info(2, 0x7fc68dca6648) = 0 -43938903086841:43938903087596 26086:26086 hsa_system_get_info(2, 0x7fc68dca6650) = 0 -43938903088509:43938903089254 26086:26086 hsa_system_get_info(2, 0x7fc68dca6658) = 0 -43938903090168:43938903090918 26086:26086 hsa_system_get_info(2, 0x7fc68dca6660) = 0 -43938903091847:43938903092603 26086:26086 hsa_system_get_info(2, 0x7fc68dca6668) = 0 -43938903093520:43938903094275 26086:26086 hsa_system_get_info(2, 0x7fc68dca6670) = 0 -43938903095187:43938903095936 26086:26086 hsa_system_get_info(2, 0x7fc68dca6678) = 0 -43938903096849:43938903097603 26086:26086 hsa_system_get_info(2, 0x7fc68dca6680) = 0 -43938903099341:43938903100096 26086:26086 hsa_system_get_info(2, 0x7fc68dca6688) = 0 -43938903101009:43938903101766 26086:26086 hsa_system_get_info(2, 0x7fc68dca6690) = 0 -43938903102681:43938903103437 26086:26086 hsa_system_get_info(2, 0x7fc68dca6698) = 0 -43938903104346:43938903105102 26086:26086 hsa_system_get_info(2, 0x7fc68dca66a0) = 0 -43938903106017:43938903106770 26086:26086 hsa_system_get_info(2, 0x7fc68dca66a8) = 0 -43938903107683:43938903108433 26086:26086 hsa_system_get_info(2, 0x7fc68dca66b0) = 0 -43938903109347:43938903110101 26086:26086 hsa_system_get_info(2, 0x7fc68dca66b8) = 0 -43938903111018:43938903111772 26086:26086 hsa_system_get_info(2, 0x7fc68dca66c0) = 0 -43938903112687:43938903113447 26086:26086 hsa_system_get_info(2, 0x7fc68dca66c8) = 0 -43938903114362:43938903115116 26086:26086 hsa_system_get_info(2, 0x7fc68dca66d0) = 0 -43938903116031:43938903116796 26086:26086 hsa_system_get_info(2, 0x7fc68dca66d8) = 0 -43938903117713:43938903118468 26086:26086 hsa_system_get_info(2, 0x7fc68dca66e0) = 0 -43938903119381:43938903120151 26086:26086 hsa_system_get_info(2, 0x7fc68dca66e8) = 0 -43938903121067:43938903121825 26086:26086 hsa_system_get_info(2, 0x7fc68dca66f0) = 0 -43938903122738:43938903123491 26086:26086 hsa_system_get_info(2, 0x7fc68dca66f8) = 0 -43938903124396:43938903125150 26086:26086 hsa_system_get_info(2, 0x7fc68dca6700) = 0 -43938903126066:43938903126825 26086:26086 hsa_system_get_info(2, 0x7fc68dca6708) = 0 -43938903127743:43938903128499 26086:26086 hsa_system_get_info(2, 0x7fc68dca6710) = 0 -43938903129413:43938903130158 26086:26086 hsa_system_get_info(2, 0x7fc68dca6718) = 0 -43938903131072:43938903131826 26086:26086 hsa_system_get_info(2, 0x7fc68dca6720) = 0 -43938903132742:43938903133501 26086:26086 hsa_system_get_info(2, 0x7fc68dca6728) = 0 -43938903134415:43938903135163 26086:26086 hsa_system_get_info(2, 0x7fc68dca6730) = 0 -43938903136348:43938903137328 26086:26086 hsa_system_get_info(2, 0x7fc68dca6738) = 0 -43938903138479:43938903139482 26086:26086 hsa_system_get_info(2, 0x7fc68dca6740) = 0 -43938903140667:43938903141650 26086:26086 hsa_system_get_info(2, 0x7fc68dca6748) = 0 -43938903142879:43938903143885 26086:26086 hsa_system_get_info(2, 0x7fc68dca6750) = 0 -43938903145107:43938903146121 26086:26086 hsa_system_get_info(2, 0x7fc68dca6758) = 0 -43938903147317:43938903148316 26086:26086 hsa_system_get_info(2, 0x7fc68dca6760) = 0 -43938903149534:43938903150576 26086:26086 hsa_system_get_info(2, 0x7fc68dca6768) = 0 -43938903154484:43938903155607 26086:26086 hsa_system_get_info(2, 0x7fc68dca6770) = 0 -43938903156918:43938903157930 26086:26086 hsa_system_get_info(2, 0x7fc68dca6778) = 0 -43938903159070:43938903160062 26086:26086 hsa_system_get_info(2, 0x7fc68dca6780) = 0 -43938903161259:43938903162279 26086:26086 hsa_system_get_info(2, 0x7fc68dca6788) = 0 -43938903163455:43938903164560 26086:26086 hsa_system_get_info(2, 0x7fc68dca6790) = 0 -43938903165542:43938903166297 26086:26086 hsa_system_get_info(2, 0x7fc68dca6798) = 0 -43938903167204:43938903167953 26086:26086 hsa_system_get_info(2, 0x7fc68dca67a0) = 0 -43938903168861:43938903169614 26086:26086 hsa_system_get_info(2, 0x7fc68dca67a8) = 0 -43938903170526:43938903171285 26086:26086 hsa_system_get_info(2, 0x7fc68dca67b0) = 0 -43938903172195:43938903172945 26086:26086 hsa_system_get_info(2, 0x7fc68dca67b8) = 0 -43938903173854:43938903174606 26086:26086 hsa_system_get_info(2, 0x7fc68dca67c0) = 0 -43938903175519:43938903176264 26086:26086 hsa_system_get_info(2, 0x7fc68dca67c8) = 0 -43938903177175:43938903177925 26086:26086 hsa_system_get_info(2, 0x7fc68dca67d0) = 0 -43938903178833:43938903179585 26086:26086 hsa_system_get_info(2, 0x7fc68dca67d8) = 0 -43938903180492:43938903181243 26086:26086 hsa_system_get_info(2, 0x7fc68dca67e0) = 0 -43938903182156:43938903182912 26086:26086 hsa_system_get_info(2, 0x7fc68dca67e8) = 0 -43938903183820:43938903184573 26086:26086 hsa_system_get_info(2, 0x7fc68dca67f0) = 0 -43938903185486:43938903186232 26086:26086 hsa_system_get_info(2, 0x7fc68dca67f8) = 0 -43938903187143:43938903187898 26086:26086 hsa_system_get_info(2, 0x7fc68dca6800) = 0 -43938903188808:43938903189561 26086:26086 hsa_system_get_info(2, 0x7fc68dca6808) = 0 -43938903190486:43938903191248 26086:26086 hsa_system_get_info(2, 0x7fc68dca6810) = 0 -43938903192150:43938903192906 26086:26086 hsa_system_get_info(2, 0x7fc68dca6818) = 0 -43938903193815:43938903194562 26086:26086 hsa_system_get_info(2, 0x7fc68dca6820) = 0 -43938903195472:43938903196228 26086:26086 hsa_system_get_info(2, 0x7fc68dca6828) = 0 -43938903197204:43938903198190 26086:26086 hsa_system_get_info(2, 0x7fc68dca6830) = 0 -43938903199294:43938903200333 26086:26086 hsa_system_get_info(2, 0x7fc68dca6838) = 0 -43938903201415:43938903202460 26086:26086 hsa_system_get_info(2, 0x7fc68dca6840) = 0 -43938903203678:43938903204681 26086:26086 hsa_system_get_info(2, 0x7fc68dca6848) = 0 -43938903206689:43938903207450 26086:26086 hsa_system_get_info(2, 0x7fc68dca6850) = 0 -43938903208367:43938903209130 26086:26086 hsa_system_get_info(2, 0x7fc68dca6858) = 0 -43938903210042:43938903210802 26086:26086 hsa_system_get_info(2, 0x7fc68dca6860) = 0 -43938903211713:43938903212465 26086:26086 hsa_system_get_info(2, 0x7fc68dca6868) = 0 -43938903213393:43938903214143 26086:26086 hsa_system_get_info(2, 0x7fc68dca6870) = 0 -43938903215050:43938903215802 26086:26086 hsa_system_get_info(2, 0x7fc68dca6878) = 0 -43938903216713:43938903217464 26086:26086 hsa_system_get_info(2, 0x7fc68dca6880) = 0 -43938903218366:43938903219118 26086:26086 hsa_system_get_info(2, 0x7fc68dca6888) = 0 -43938903220031:43938903220778 26086:26086 hsa_system_get_info(2, 0x7fc68dca6890) = 0 -43938903221685:43938903222441 26086:26086 hsa_system_get_info(2, 0x7fc68dca6898) = 0 -43938903223350:43938903224101 26086:26086 hsa_system_get_info(2, 0x7fc68dca68a0) = 0 -43938903225009:43938903225762 26086:26086 hsa_system_get_info(2, 0x7fc68dca68a8) = 0 -43938903226673:43938903227421 26086:26086 hsa_system_get_info(2, 0x7fc68dca68b0) = 0 -43938903228329:43938903229085 26086:26086 hsa_system_get_info(2, 0x7fc68dca68b8) = 0 -43938903229993:43938903230742 26086:26086 hsa_system_get_info(2, 0x7fc68dca68c0) = 0 -43938903231649:43938903232399 26086:26086 hsa_system_get_info(2, 0x7fc68dca68c8) = 0 -43938903233305:43938903234071 26086:26086 hsa_system_get_info(2, 0x7fc68dca68d0) = 0 -43938903234975:43938903235733 26086:26086 hsa_system_get_info(2, 0x7fc68dca68d8) = 0 -43938903236657:43938903237415 26086:26086 hsa_system_get_info(2, 0x7fc68dca68e0) = 0 -43938903238322:43938903239069 26086:26086 hsa_system_get_info(2, 0x7fc68dca68e8) = 0 -43938903239978:43938903240727 26086:26086 hsa_system_get_info(2, 0x7fc68dca68f0) = 0 -43938903241631:43938903242385 26086:26086 hsa_system_get_info(2, 0x7fc68dca68f8) = 0 -43938903243291:43938903244048 26086:26086 hsa_system_get_info(2, 0x7fc68dca6900) = 0 -43938903244957:43938903245707 26086:26086 hsa_system_get_info(2, 0x7fc68dca6908) = 0 -43938903246619:43938903247371 26086:26086 hsa_system_get_info(2, 0x7fc68dca6910) = 0 -43938903248280:43938903249029 26086:26086 hsa_system_get_info(2, 0x7fc68dca6918) = 0 -43938903249936:43938903250689 26086:26086 hsa_system_get_info(2, 0x7fc68dca6920) = 0 -43938903251591:43938903252345 26086:26086 hsa_system_get_info(2, 0x7fc68dca6928) = 0 -43938903253254:43938903254008 26086:26086 hsa_system_get_info(2, 0x7fc68dca6930) = 0 -43938903255786:43938903256547 26086:26086 hsa_system_get_info(2, 0x7fc68dca6938) = 0 -43938903257454:43938903258212 26086:26086 hsa_system_get_info(2, 0x7fc68dca6940) = 0 -43938903259128:43938903259879 26086:26086 hsa_system_get_info(2, 0x7fc68dca6948) = 0 -43938903260790:43938903261540 26086:26086 hsa_system_get_info(2, 0x7fc68dca6950) = 0 -43938903262448:43938903263203 26086:26086 hsa_system_get_info(2, 0x7fc68dca6958) = 0 -43938903264113:43938903264869 26086:26086 hsa_system_get_info(2, 0x7fc68dca6960) = 0 -43938903265780:43938903266531 26086:26086 hsa_system_get_info(2, 0x7fc68dca6968) = 0 -43938903267440:43938903268191 26086:26086 hsa_system_get_info(2, 0x7fc68dca6970) = 0 -43938903269105:43938903269856 26086:26086 hsa_system_get_info(2, 0x7fc68dca6978) = 0 -43938903270762:43938903271513 26086:26086 hsa_system_get_info(2, 0x7fc68dca6980) = 0 -43938903272420:43938903273169 26086:26086 hsa_system_get_info(2, 0x7fc68dca6988) = 0 -43938903274078:43938903274829 26086:26086 hsa_system_get_info(2, 0x7fc68dca6990) = 0 -43938903275737:43938903276484 26086:26086 hsa_system_get_info(2, 0x7fc68dca6998) = 0 -43938903277394:43938903278142 26086:26086 hsa_system_get_info(2, 0x7fc68dca69a0) = 0 -43938903279064:43938903279822 26086:26086 hsa_system_get_info(2, 0x7fc68dca69a8) = 0 -43938903280725:43938903281477 26086:26086 hsa_system_get_info(2, 0x7fc68dca69b0) = 0 -43938903282390:43938903283133 26086:26086 hsa_system_get_info(2, 0x7fc68dca69b8) = 0 -43938903284048:43938903284805 26086:26086 hsa_system_get_info(2, 0x7fc68dca69c0) = 0 -43938903285719:43938903286471 26086:26086 hsa_system_get_info(2, 0x7fc68dca69c8) = 0 -43938903287376:43938903288124 26086:26086 hsa_system_get_info(2, 0x7fc68dca69d0) = 0 -43938903289034:43938903289788 26086:26086 hsa_system_get_info(2, 0x7fc68dca69d8) = 0 -43938903290694:43938903291444 26086:26086 hsa_system_get_info(2, 0x7fc68dca69e0) = 0 -43938903292353:43938903293099 26086:26086 hsa_system_get_info(2, 0x7fc68dca69e8) = 0 -43938903294033:43938903294789 26086:26086 hsa_system_get_info(2, 0x7fc68dca69f0) = 0 -43938903295725:43938903296475 26086:26086 hsa_system_get_info(2, 0x7fc68dca69f8) = 0 -43938903297379:43938903298131 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a00) = 0 -43938903299045:43938903299796 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a08) = 0 -43938903300705:43938903301451 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a10) = 0 -43938903303186:43938903303946 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a18) = 0 -43938903304857:43938903305606 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a20) = 0 -43938903306515:43938903307262 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a28) = 0 -43938903308170:43938903308925 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a30) = 0 -43938903309825:43938903310574 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a38) = 0 -43938903311484:43938903312239 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a40) = 0 -43938903313145:43938903313898 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a48) = 0 -43938903314810:43938903315571 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a50) = 0 -43938903316480:43938903317229 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a58) = 0 -43938903318143:43938903318894 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a60) = 0 -43938903319805:43938903320547 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a68) = 0 -43938903321457:43938903322208 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a70) = 0 -43938903323122:43938903323872 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a78) = 0 -43938903324782:43938903325536 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a80) = 0 -43938903326457:43938903327212 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a88) = 0 -43938903328117:43938903328869 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a90) = 0 -43938903329779:43938903330538 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a98) = 0 -43938903331448:43938903332194 26086:26086 hsa_system_get_info(2, 0x7fc68dca6aa0) = 0 -43938903333106:43938903333857 26086:26086 hsa_system_get_info(2, 0x7fc68dca6aa8) = 0 -43938903334764:43938903335516 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ab0) = 0 -43938903336428:43938903337184 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ab8) = 0 -43938903338095:43938903338847 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ac0) = 0 -43938903339755:43938903340507 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ac8) = 0 -43938903341417:43938903342173 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ad0) = 0 -43938903343086:43938903343843 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ad8) = 0 -43938903344752:43938903345507 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ae0) = 0 -43938903346419:43938903347172 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ae8) = 0 -43938903348082:43938903348833 26086:26086 hsa_system_get_info(2, 0x7fc68dca6af0) = 0 -43938903349744:43938903350515 26086:26086 hsa_system_get_info(2, 0x7fc68dca6af8) = 0 -43938903352299:43938903353079 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b00) = 0 -43938903353989:43938903354745 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b08) = 0 -43938903355650:43938903356401 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b10) = 0 -43938903357314:43938903358076 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b18) = 0 -43938903359003:43938903359757 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b20) = 0 -43938903360665:43938903361411 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b28) = 0 -43938903362319:43938903363076 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b30) = 0 -43938903363986:43938903364732 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b38) = 0 -43938903365638:43938903366395 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b40) = 0 -43938903367297:43938903368053 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b48) = 0 -43938903368961:43938903369722 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b50) = 0 -43938903370624:43938903371380 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b58) = 0 -43938903372282:43938903373035 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b60) = 0 -43938903373937:43938903374702 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b68) = 0 -43938903375611:43938903376373 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b70) = 0 -43938903377282:43938903378046 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b78) = 0 -43938903378957:43938903379709 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b80) = 0 -43938903380619:43938903381369 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b88) = 0 -43938903382286:43938903383037 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b90) = 0 -43938903383943:43938903384697 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b98) = 0 -43938903385606:43938903386363 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ba0) = 0 -43938903387265:43938903388016 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ba8) = 0 -43938903388946:43938903389699 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bb0) = 0 -43938903390608:43938903391356 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bb8) = 0 -43938903392268:43938903393021 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bc0) = 0 -43938903393945:43938903394701 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bc8) = 0 -43938903395613:43938903396367 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bd0) = 0 -43938903397268:43938903398021 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bd8) = 0 -43938903399790:43938903400550 26086:26086 hsa_system_get_info(2, 0x7fc68dca6be0) = 0 -43938903401458:43938903402208 26086:26086 hsa_system_get_info(2, 0x7fc68dca6be8) = 0 -43938903403112:43938903403860 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bf0) = 0 -43938903404763:43938903405515 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bf8) = 0 -43938903406422:43938903407174 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c00) = 0 -43938903408080:43938903408830 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c08) = 0 -43938903409738:43938903410487 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c10) = 0 -43938903411397:43938903412152 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c18) = 0 -43938903413058:43938903413804 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c20) = 0 -43938903414713:43938903415461 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c28) = 0 -43938903416366:43938903417117 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c30) = 0 -43938903418025:43938903418772 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c38) = 0 -43938903419682:43938903420436 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c40) = 0 -43938903421344:43938903422117 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c48) = 0 -43938903423029:43938903423785 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c50) = 0 -43938903424686:43938903425435 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c58) = 0 -43938903426343:43938903427086 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c60) = 0 -43938903427995:43938903428750 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c68) = 0 -43938903429656:43938903430405 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c70) = 0 -43938903431311:43938903432068 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c78) = 0 -43938903432972:43938903433728 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c80) = 0 -43938903434639:43938903435395 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c88) = 0 -43938903436301:43938903437061 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c90) = 0 -43938903437970:43938903438723 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c98) = 0 -43938903439629:43938903440381 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ca0) = 0 -43938903441290:43938903442039 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ca8) = 0 -43938903442946:43938903443699 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cb0) = 0 -43938903444605:43938903445366 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cb8) = 0 -43938903446297:43938903447045 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cc0) = 0 -43938903448790:43938903449550 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cc8) = 0 -43938903450462:43938903451216 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cd0) = 0 -43938903452126:43938903452885 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cd8) = 0 -43938903453813:43938903454568 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ce0) = 0 -43938903455474:43938903456223 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ce8) = 0 -43938903457133:43938903457885 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cf0) = 0 -43938903458788:43938903459538 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cf8) = 0 -43938903460447:43938903461202 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d00) = 0 -43938903462107:43938903462855 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d08) = 0 -43938903463765:43938903464514 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d10) = 0 -43938903465422:43938903466176 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d18) = 0 -43938903467085:43938903467830 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d20) = 0 -43938903468736:43938903469490 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d28) = 0 -43938903470396:43938903471146 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d30) = 0 -43938903472055:43938903472808 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d38) = 0 -43938903473730:43938903474484 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d40) = 0 -43938903475393:43938903476146 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d48) = 0 -43938903477052:43938903477806 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d50) = 0 -43938903478733:43938903479482 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d58) = 0 -43938903480392:43938903481141 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d60) = 0 -43938903482042:43938903482794 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d68) = 0 -43938903483700:43938903484455 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d70) = 0 -43938903485361:43938903486113 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d78) = 0 -43938903487030:43938903487784 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d80) = 0 -43938903488710:43938903489462 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d88) = 0 -43938903490372:43938903491123 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d90) = 0 -43938903492030:43938903492785 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d98) = 0 -43938903493694:43938903494451 26086:26086 hsa_system_get_info(2, 0x7fc68dca6da0) = 0 -43938903496212:43938903496976 26086:26086 hsa_system_get_info(2, 0x7fc68dca6da8) = 0 -43938903497887:43938903498635 26086:26086 hsa_system_get_info(2, 0x7fc68dca6db0) = 0 -43938903499538:43938903500291 26086:26086 hsa_system_get_info(2, 0x7fc68dca6db8) = 0 -43938903501199:43938903501951 26086:26086 hsa_system_get_info(2, 0x7fc68dca6dc0) = 0 -43938903502854:43938903503607 26086:26086 hsa_system_get_info(2, 0x7fc68dca6dc8) = 0 -43938903504519:43938903505270 26086:26086 hsa_system_get_info(2, 0x7fc68dca6dd0) = 0 -43938903506172:43938903506927 26086:26086 hsa_system_get_info(2, 0x7fc68dca6dd8) = 0 -43938903507832:43938903508578 26086:26086 hsa_system_get_info(2, 0x7fc68dca6de0) = 0 -43938903509489:43938903510235 26086:26086 hsa_system_get_info(2, 0x7fc68dca6de8) = 0 -43938903511136:43938903511890 26086:26086 hsa_system_get_info(2, 0x7fc68dca6df0) = 0 -43938903512802:43938903513554 26086:26086 hsa_system_get_info(2, 0x7fc68dca6df8) = 0 -43938903514462:43938903515217 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e00) = 0 -43938903516125:43938903516880 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e08) = 0 -43938903517789:43938903518568 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e10) = 0 -43938903519475:43938903520226 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e18) = 0 -43938903521137:43938903521893 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e20) = 0 -43938903522797:43938903523541 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e28) = 0 -43938903524450:43938903525194 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e30) = 0 -43938903526107:43938903526862 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e38) = 0 -43938903527772:43938903528523 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e40) = 0 -43938903529426:43938903530170 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e48) = 0 -43938903531076:43938903531827 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e50) = 0 -43938903532737:43938903533494 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e58) = 0 -43938903534397:43938903535151 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e60) = 0 -43938903536056:43938903536808 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e68) = 0 -43938903537721:43938903538476 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e70) = 0 -43938903539382:43938903540134 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e78) = 0 -43938903541041:43938903541799 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e80) = 0 -43938903543598:43938903544361 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e88) = 0 -43938903545272:43938903546029 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e90) = 0 -43938903546938:43938903547684 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e98) = 0 -43938903562645:43938903563444 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f60) = 0 -43938903564437:43938903565187 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f68) = 0 -43938903566092:43938903566845 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f70) = 0 -43938903567755:43938903568508 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f78) = 0 -43938903569413:43938903570169 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f80) = 0 -43938903571080:43938903571839 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f88) = 0 -43938903572764:43938903573520 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f90) = 0 -43938903574434:43938903575192 26086:26086 hsa_system_get_info(2, 0x7fc68dca4f98) = 0 -43938903576102:43938903576853 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fa0) = 0 -43938903577760:43938903578512 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fa8) = 0 -43938903579420:43938903580171 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fb0) = 0 -43938903581079:43938903581832 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fb8) = 0 -43938903582739:43938903583504 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fc0) = 0 -43938903584414:43938903585168 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fc8) = 0 -43938903586079:43938903586834 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fd0) = 0 -43938903587739:43938903588495 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fd8) = 0 -43938903589405:43938903590161 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fe0) = 0 -43938903591065:43938903591812 26086:26086 hsa_system_get_info(2, 0x7fc68dca4fe8) = 0 -43938903592722:43938903593470 26086:26086 hsa_system_get_info(2, 0x7fc68dca4ff0) = 0 -43938903594378:43938903595127 26086:26086 hsa_system_get_info(2, 0x7fc68dca4ff8) = 0 -43938903596054:43938903596812 26086:26086 hsa_system_get_info(2, 0x7fc68dca5000) = 0 -43938903597722:43938903598469 26086:26086 hsa_system_get_info(2, 0x7fc68dca5008) = 0 -43938903599389:43938903600143 26086:26086 hsa_system_get_info(2, 0x7fc68dca5010) = 0 -43938903601049:43938903601807 26086:26086 hsa_system_get_info(2, 0x7fc68dca5018) = 0 -43938903602716:43938903603471 26086:26086 hsa_system_get_info(2, 0x7fc68dca5020) = 0 -43938903604385:43938903605145 26086:26086 hsa_system_get_info(2, 0x7fc68dca5028) = 0 -43938903606960:43938903607716 26086:26086 hsa_system_get_info(2, 0x7fc68dca5030) = 0 -43938903608625:43938903609380 26086:26086 hsa_system_get_info(2, 0x7fc68dca5038) = 0 -43938903610290:43938903611050 26086:26086 hsa_system_get_info(2, 0x7fc68dca5040) = 0 -43938903611954:43938903612708 26086:26086 hsa_system_get_info(2, 0x7fc68dca5048) = 0 -43938903613618:43938903614371 26086:26086 hsa_system_get_info(2, 0x7fc68dca5050) = 0 -43938903615277:43938903616029 26086:26086 hsa_system_get_info(2, 0x7fc68dca5058) = 0 -43938903616944:43938903617696 26086:26086 hsa_system_get_info(2, 0x7fc68dca5060) = 0 -43938903618599:43938903619351 26086:26086 hsa_system_get_info(2, 0x7fc68dca5068) = 0 -43938903620264:43938903621028 26086:26086 hsa_system_get_info(2, 0x7fc68dca5070) = 0 -43938903621941:43938903622688 26086:26086 hsa_system_get_info(2, 0x7fc68dca5078) = 0 -43938903623598:43938903624352 26086:26086 hsa_system_get_info(2, 0x7fc68dca5080) = 0 -43938903625261:43938903626019 26086:26086 hsa_system_get_info(2, 0x7fc68dca5088) = 0 -43938903626926:43938903627677 26086:26086 hsa_system_get_info(2, 0x7fc68dca5090) = 0 -43938903628586:43938903629363 26086:26086 hsa_system_get_info(2, 0x7fc68dca5098) = 0 -43938903630270:43938903631031 26086:26086 hsa_system_get_info(2, 0x7fc68dca50a0) = 0 -43938903631935:43938903632690 26086:26086 hsa_system_get_info(2, 0x7fc68dca50a8) = 0 -43938903633621:43938903634383 26086:26086 hsa_system_get_info(2, 0x7fc68dca50b0) = 0 -43938903635291:43938903636043 26086:26086 hsa_system_get_info(2, 0x7fc68dca50b8) = 0 -43938903636950:43938903637703 26086:26086 hsa_system_get_info(2, 0x7fc68dca50c0) = 0 -43938903638608:43938903639355 26086:26086 hsa_system_get_info(2, 0x7fc68dca50c8) = 0 -43938903640260:43938903641025 26086:26086 hsa_system_get_info(2, 0x7fc68dca50d0) = 0 -43938903641934:43938903642684 26086:26086 hsa_system_get_info(2, 0x7fc68dca50d8) = 0 -43938903643594:43938903644340 26086:26086 hsa_system_get_info(2, 0x7fc68dca50e0) = 0 -43938903645250:43938903646009 26086:26086 hsa_system_get_info(2, 0x7fc68dca50e8) = 0 -43938903646918:43938903647672 26086:26086 hsa_system_get_info(2, 0x7fc68dca50f0) = 0 -43938903648577:43938903649338 26086:26086 hsa_system_get_info(2, 0x7fc68dca50f8) = 0 -43938903650242:43938903651002 26086:26086 hsa_system_get_info(2, 0x7fc68dca5100) = 0 -43938903651905:43938903652657 26086:26086 hsa_system_get_info(2, 0x7fc68dca5108) = 0 -43938903654406:43938903655160 26086:26086 hsa_system_get_info(2, 0x7fc68dca5110) = 0 -43938903656066:43938903656817 26086:26086 hsa_system_get_info(2, 0x7fc68dca5118) = 0 -43938903657726:43938903658468 26086:26086 hsa_system_get_info(2, 0x7fc68dca5120) = 0 -43938903659374:43938903660121 26086:26086 hsa_system_get_info(2, 0x7fc68dca5128) = 0 -43938903661028:43938903661776 26086:26086 hsa_system_get_info(2, 0x7fc68dca5130) = 0 -43938903662685:43938903663441 26086:26086 hsa_system_get_info(2, 0x7fc68dca5138) = 0 -43938903664345:43938903665099 26086:26086 hsa_system_get_info(2, 0x7fc68dca5140) = 0 -43938903666008:43938903666761 26086:26086 hsa_system_get_info(2, 0x7fc68dca5148) = 0 -43938903667666:43938903668420 26086:26086 hsa_system_get_info(2, 0x7fc68dca5150) = 0 -43938903669328:43938903670077 26086:26086 hsa_system_get_info(2, 0x7fc68dca5158) = 0 -43938903670983:43938903671740 26086:26086 hsa_system_get_info(2, 0x7fc68dca5160) = 0 -43938903672646:43938903673404 26086:26086 hsa_system_get_info(2, 0x7fc68dca5168) = 0 -43938903674305:43938903675059 26086:26086 hsa_system_get_info(2, 0x7fc68dca5170) = 0 -43938903675988:43938903676743 26086:26086 hsa_system_get_info(2, 0x7fc68dca5178) = 0 -43938903677655:43938903678408 26086:26086 hsa_system_get_info(2, 0x7fc68dca5180) = 0 -43938903679310:43938903680063 26086:26086 hsa_system_get_info(2, 0x7fc68dca5188) = 0 -43938903680972:43938903681723 26086:26086 hsa_system_get_info(2, 0x7fc68dca5190) = 0 -43938903682629:43938903683382 26086:26086 hsa_system_get_info(2, 0x7fc68dca5198) = 0 -43938903684285:43938903685037 26086:26086 hsa_system_get_info(2, 0x7fc68dca51a0) = 0 -43938903685942:43938903686696 26086:26086 hsa_system_get_info(2, 0x7fc68dca51a8) = 0 -43938903687601:43938903688351 26086:26086 hsa_system_get_info(2, 0x7fc68dca51b0) = 0 -43938903689257:43938903690005 26086:26086 hsa_system_get_info(2, 0x7fc68dca51b8) = 0 -43938903690911:43938903691664 26086:26086 hsa_system_get_info(2, 0x7fc68dca51c0) = 0 -43938903692570:43938903693321 26086:26086 hsa_system_get_info(2, 0x7fc68dca51c8) = 0 -43938903694237:43938903694995 26086:26086 hsa_system_get_info(2, 0x7fc68dca51d0) = 0 -43938903695908:43938903696667 26086:26086 hsa_system_get_info(2, 0x7fc68dca51d8) = 0 -43938903697573:43938903698328 26086:26086 hsa_system_get_info(2, 0x7fc68dca51e0) = 0 -43938903699238:43938903700010 26086:26086 hsa_system_get_info(2, 0x7fc68dca51e8) = 0 -43938903700921:43938903701676 26086:26086 hsa_system_get_info(2, 0x7fc68dca51f0) = 0 -43938903703443:43938903704199 26086:26086 hsa_system_get_info(2, 0x7fc68dca51f8) = 0 -43938903705108:43938903705853 26086:26086 hsa_system_get_info(2, 0x7fc68dca5200) = 0 -43938903706766:43938903707518 26086:26086 hsa_system_get_info(2, 0x7fc68dca5208) = 0 -43938903708418:43938903709179 26086:26086 hsa_system_get_info(2, 0x7fc68dca5210) = 0 -43938903710088:43938903710838 26086:26086 hsa_system_get_info(2, 0x7fc68dca5218) = 0 -43938903711753:43938903712499 26086:26086 hsa_system_get_info(2, 0x7fc68dca5220) = 0 -43938903713404:43938903714167 26086:26086 hsa_system_get_info(2, 0x7fc68dca5228) = 0 -43938903715073:43938903715824 26086:26086 hsa_system_get_info(2, 0x7fc68dca5230) = 0 -43938903716728:43938903717481 26086:26086 hsa_system_get_info(2, 0x7fc68dca5238) = 0 -43938903718389:43938903719140 26086:26086 hsa_system_get_info(2, 0x7fc68dca5240) = 0 -43938903720046:43938903720799 26086:26086 hsa_system_get_info(2, 0x7fc68dca5248) = 0 -43938903721705:43938903722463 26086:26086 hsa_system_get_info(2, 0x7fc68dca5250) = 0 -43938903723371:43938903724125 26086:26086 hsa_system_get_info(2, 0x7fc68dca5258) = 0 -43938903725034:43938903725787 26086:26086 hsa_system_get_info(2, 0x7fc68dca5260) = 0 -43938903726698:43938903727454 26086:26086 hsa_system_get_info(2, 0x7fc68dca5268) = 0 -43938903728364:43938903729132 26086:26086 hsa_system_get_info(2, 0x7fc68dca5270) = 0 -43938903730041:43938903730802 26086:26086 hsa_system_get_info(2, 0x7fc68dca5278) = 0 -43938903731708:43938903732462 26086:26086 hsa_system_get_info(2, 0x7fc68dca5280) = 0 -43938903733374:43938903734131 26086:26086 hsa_system_get_info(2, 0x7fc68dca5288) = 0 -43938903735042:43938903735791 26086:26086 hsa_system_get_info(2, 0x7fc68dca5290) = 0 -43938903736694:43938903737447 26086:26086 hsa_system_get_info(2, 0x7fc68dca5298) = 0 -43938903738353:43938903739112 26086:26086 hsa_system_get_info(2, 0x7fc68dca52a0) = 0 -43938903740043:43938903740792 26086:26086 hsa_system_get_info(2, 0x7fc68dca52a8) = 0 -43938903741710:43938903742470 26086:26086 hsa_system_get_info(2, 0x7fc68dca52b0) = 0 -43938903743418:43938903744172 26086:26086 hsa_system_get_info(2, 0x7fc68dca52b8) = 0 -43938903745075:43938903745827 26086:26086 hsa_system_get_info(2, 0x7fc68dca52c0) = 0 -43938903746735:43938903747487 26086:26086 hsa_system_get_info(2, 0x7fc68dca52c8) = 0 -43938903748391:43938903749152 26086:26086 hsa_system_get_info(2, 0x7fc68dca52d0) = 0 -43938903750903:43938903751660 26086:26086 hsa_system_get_info(2, 0x7fc68dca52d8) = 0 -43938903752561:43938903753310 26086:26086 hsa_system_get_info(2, 0x7fc68dca52e0) = 0 -43938903754217:43938903754963 26086:26086 hsa_system_get_info(2, 0x7fc68dca52e8) = 0 -43938903755868:43938903756620 26086:26086 hsa_system_get_info(2, 0x7fc68dca52f0) = 0 -43938903757527:43938903758278 26086:26086 hsa_system_get_info(2, 0x7fc68dca52f8) = 0 -43938903759182:43938903759937 26086:26086 hsa_system_get_info(2, 0x7fc68dca5300) = 0 -43938903760845:43938903761599 26086:26086 hsa_system_get_info(2, 0x7fc68dca5308) = 0 -43938903762505:43938903763251 26086:26086 hsa_system_get_info(2, 0x7fc68dca5310) = 0 -43938903764164:43938903764923 26086:26086 hsa_system_get_info(2, 0x7fc68dca5318) = 0 -43938903765833:43938903766588 26086:26086 hsa_system_get_info(2, 0x7fc68dca5320) = 0 -43938903767498:43938903768241 26086:26086 hsa_system_get_info(2, 0x7fc68dca5328) = 0 -43938903769153:43938903769895 26086:26086 hsa_system_get_info(2, 0x7fc68dca5330) = 0 -43938903770801:43938903771556 26086:26086 hsa_system_get_info(2, 0x7fc68dca5338) = 0 -43938903772462:43938903773209 26086:26086 hsa_system_get_info(2, 0x7fc68dca5340) = 0 -43938903774134:43938903774890 26086:26086 hsa_system_get_info(2, 0x7fc68dca5348) = 0 -43938903775799:43938903776558 26086:26086 hsa_system_get_info(2, 0x7fc68dca5350) = 0 -43938903777473:43938903778225 26086:26086 hsa_system_get_info(2, 0x7fc68dca5358) = 0 -43938903779131:43938903779883 26086:26086 hsa_system_get_info(2, 0x7fc68dca5360) = 0 -43938903780790:43938903781536 26086:26086 hsa_system_get_info(2, 0x7fc68dca5368) = 0 -43938903782443:43938903783196 26086:26086 hsa_system_get_info(2, 0x7fc68dca5370) = 0 -43938903784103:43938903784849 26086:26086 hsa_system_get_info(2, 0x7fc68dca5378) = 0 -43938903785756:43938903786510 26086:26086 hsa_system_get_info(2, 0x7fc68dca5380) = 0 -43938903787416:43938903788173 26086:26086 hsa_system_get_info(2, 0x7fc68dca5388) = 0 -43938903789083:43938903789836 26086:26086 hsa_system_get_info(2, 0x7fc68dca5390) = 0 -43938903790742:43938903791491 26086:26086 hsa_system_get_info(2, 0x7fc68dca5398) = 0 -43938903792405:43938903793161 26086:26086 hsa_system_get_info(2, 0x7fc68dca53a0) = 0 -43938903794074:43938903794819 26086:26086 hsa_system_get_info(2, 0x7fc68dca53a8) = 0 -43938903795748:43938903796504 26086:26086 hsa_system_get_info(2, 0x7fc68dca53b0) = 0 -43938903797419:43938903798172 26086:26086 hsa_system_get_info(2, 0x7fc68dca53b8) = 0 -43938903799943:43938903800701 26086:26086 hsa_system_get_info(2, 0x7fc68dca53c0) = 0 -43938903801618:43938903802368 26086:26086 hsa_system_get_info(2, 0x7fc68dca53c8) = 0 -43938903803279:43938903804030 26086:26086 hsa_system_get_info(2, 0x7fc68dca53d0) = 0 -43938903804936:43938903805699 26086:26086 hsa_system_get_info(2, 0x7fc68dca53d8) = 0 -43938903806627:43938903807378 26086:26086 hsa_system_get_info(2, 0x7fc68dca53e0) = 0 -43938903808289:43938903809037 26086:26086 hsa_system_get_info(2, 0x7fc68dca53e8) = 0 -43938903809947:43938903810704 26086:26086 hsa_system_get_info(2, 0x7fc68dca53f0) = 0 -43938903811614:43938903812373 26086:26086 hsa_system_get_info(2, 0x7fc68dca53f8) = 0 -43938903813277:43938903814032 26086:26086 hsa_system_get_info(2, 0x7fc68dca5400) = 0 -43938903814944:43938903815700 26086:26086 hsa_system_get_info(2, 0x7fc68dca5408) = 0 -43938903816606:43938903817353 26086:26086 hsa_system_get_info(2, 0x7fc68dca5410) = 0 -43938903818264:43938903819018 26086:26086 hsa_system_get_info(2, 0x7fc68dca5418) = 0 -43938903819922:43938903820679 26086:26086 hsa_system_get_info(2, 0x7fc68dca5420) = 0 -43938903821591:43938903822341 26086:26086 hsa_system_get_info(2, 0x7fc68dca5428) = 0 -43938903823244:43938903823999 26086:26086 hsa_system_get_info(2, 0x7fc68dca5430) = 0 -43938903824905:43938903825658 26086:26086 hsa_system_get_info(2, 0x7fc68dca5438) = 0 -43938903826560:43938903827319 26086:26086 hsa_system_get_info(2, 0x7fc68dca5440) = 0 -43938903828228:43938903828985 26086:26086 hsa_system_get_info(2, 0x7fc68dca5448) = 0 -43938903829912:43938903830672 26086:26086 hsa_system_get_info(2, 0x7fc68dca5450) = 0 -43938903831581:43938903832339 26086:26086 hsa_system_get_info(2, 0x7fc68dca5458) = 0 -43938903833243:43938903833998 26086:26086 hsa_system_get_info(2, 0x7fc68dca5460) = 0 -43938903834905:43938903835661 26086:26086 hsa_system_get_info(2, 0x7fc68dca5468) = 0 -43938903836565:43938903837320 26086:26086 hsa_system_get_info(2, 0x7fc68dca5470) = 0 -43938903838243:43938903839004 26086:26086 hsa_system_get_info(2, 0x7fc68dca5478) = 0 -43938903839919:43938903840672 26086:26086 hsa_system_get_info(2, 0x7fc68dca5480) = 0 -43938903841575:43938903842331 26086:26086 hsa_system_get_info(2, 0x7fc68dca5488) = 0 -43938903843236:43938903843991 26086:26086 hsa_system_get_info(2, 0x7fc68dca5490) = 0 -43938903844893:43938903845653 26086:26086 hsa_system_get_info(2, 0x7fc68dca5498) = 0 -43938903848317:43938903849081 26086:26086 hsa_system_get_info(2, 0x7fc68dca54a0) = 0 -43938903849992:43938903850750 26086:26086 hsa_system_get_info(2, 0x7fc68dca54a8) = 0 -43938903851654:43938903852401 26086:26086 hsa_system_get_info(2, 0x7fc68dca54b0) = 0 -43938903853307:43938903854056 26086:26086 hsa_system_get_info(2, 0x7fc68dca54b8) = 0 -43938903854967:43938903855715 26086:26086 hsa_system_get_info(2, 0x7fc68dca54c0) = 0 -43938903856620:43938903857370 26086:26086 hsa_system_get_info(2, 0x7fc68dca54c8) = 0 -43938903858279:43938903859026 26086:26086 hsa_system_get_info(2, 0x7fc68dca54d0) = 0 -43938903859936:43938903860689 26086:26086 hsa_system_get_info(2, 0x7fc68dca54d8) = 0 -43938903861598:43938903862352 26086:26086 hsa_system_get_info(2, 0x7fc68dca54e0) = 0 -43938903863256:43938903864010 26086:26086 hsa_system_get_info(2, 0x7fc68dca54e8) = 0 -43938903864919:43938903865670 26086:26086 hsa_system_get_info(2, 0x7fc68dca54f0) = 0 -43938903866578:43938903867328 26086:26086 hsa_system_get_info(2, 0x7fc68dca54f8) = 0 -43938903868251:43938903869007 26086:26086 hsa_system_get_info(2, 0x7fc68dca5500) = 0 -43938903869919:43938903870681 26086:26086 hsa_system_get_info(2, 0x7fc68dca5508) = 0 -43938903871585:43938903872341 26086:26086 hsa_system_get_info(2, 0x7fc68dca5510) = 0 -43938903873252:43938903874007 26086:26086 hsa_system_get_info(2, 0x7fc68dca5518) = 0 -43938903874913:43938903875668 26086:26086 hsa_system_get_info(2, 0x7fc68dca5520) = 0 -43938903876573:43938903877335 26086:26086 hsa_system_get_info(2, 0x7fc68dca5528) = 0 -43938903878245:43938903878996 26086:26086 hsa_system_get_info(2, 0x7fc68dca5530) = 0 -43938903879906:43938903880659 26086:26086 hsa_system_get_info(2, 0x7fc68dca5538) = 0 -43938903881565:43938903882325 26086:26086 hsa_system_get_info(2, 0x7fc68dca5540) = 0 -43938903883231:43938903883990 26086:26086 hsa_system_get_info(2, 0x7fc68dca5548) = 0 -43938903884905:43938903885658 26086:26086 hsa_system_get_info(2, 0x7fc68dca5550) = 0 -43938903886562:43938903887318 26086:26086 hsa_system_get_info(2, 0x7fc68dca5558) = 0 -43938903888228:43938903888985 26086:26086 hsa_system_get_info(2, 0x7fc68dca5560) = 0 -43938903889895:43938903890643 26086:26086 hsa_system_get_info(2, 0x7fc68dca5568) = 0 -43938903891552:43938903892301 26086:26086 hsa_system_get_info(2, 0x7fc68dca5570) = 0 -43938903893210:43938903893966 26086:26086 hsa_system_get_info(2, 0x7fc68dca5578) = 0 -43938903894904:43938903895654 26086:26086 hsa_system_get_info(2, 0x7fc68dca5580) = 0 -43938903897452:43938903898216 26086:26086 hsa_system_get_info(2, 0x7fc68dca5588) = 0 -43938903899128:43938903899883 26086:26086 hsa_system_get_info(2, 0x7fc68dca5590) = 0 -43938903900791:43938903901549 26086:26086 hsa_system_get_info(2, 0x7fc68dca5598) = 0 -43938903902463:43938903903217 26086:26086 hsa_system_get_info(2, 0x7fc68dca55a0) = 0 -43938903904121:43938903904879 26086:26086 hsa_system_get_info(2, 0x7fc68dca55a8) = 0 -43938903905788:43938903906543 26086:26086 hsa_system_get_info(2, 0x7fc68dca55b0) = 0 -43938903907459:43938903908212 26086:26086 hsa_system_get_info(2, 0x7fc68dca55b8) = 0 -43938903909120:43938903909875 26086:26086 hsa_system_get_info(2, 0x7fc68dca55c0) = 0 -43938903910786:43938903911535 26086:26086 hsa_system_get_info(2, 0x7fc68dca55c8) = 0 -43938903912447:43938903913200 26086:26086 hsa_system_get_info(2, 0x7fc68dca55d0) = 0 -43938903914112:43938903914865 26086:26086 hsa_system_get_info(2, 0x7fc68dca55d8) = 0 -43938903915768:43938903916521 26086:26086 hsa_system_get_info(2, 0x7fc68dca55e0) = 0 -43938903917434:43938903918191 26086:26086 hsa_system_get_info(2, 0x7fc68dca55e8) = 0 -43938903919097:43938903919854 26086:26086 hsa_system_get_info(2, 0x7fc68dca55f0) = 0 -43938903920786:43938903921536 26086:26086 hsa_system_get_info(2, 0x7fc68dca55f8) = 0 -43938903922443:43938903923205 26086:26086 hsa_system_get_info(2, 0x7fc68dca5600) = 0 -43938903924117:43938903924879 26086:26086 hsa_system_get_info(2, 0x7fc68dca5608) = 0 -43938903925789:43938903926545 26086:26086 hsa_system_get_info(2, 0x7fc68dca5610) = 0 -43938903927456:43938903928211 26086:26086 hsa_system_get_info(2, 0x7fc68dca5618) = 0 -43938903929124:43938903929880 26086:26086 hsa_system_get_info(2, 0x7fc68dca5620) = 0 -43938903930785:43938903931543 26086:26086 hsa_system_get_info(2, 0x7fc68dca5628) = 0 -43938903932450:43938903933214 26086:26086 hsa_system_get_info(2, 0x7fc68dca5630) = 0 -43938903934121:43938903934878 26086:26086 hsa_system_get_info(2, 0x7fc68dca5638) = 0 -43938903935780:43938903936533 26086:26086 hsa_system_get_info(2, 0x7fc68dca5640) = 0 -43938903937453:43938903938206 26086:26086 hsa_system_get_info(2, 0x7fc68dca5648) = 0 -43938903939116:43938903939869 26086:26086 hsa_system_get_info(2, 0x7fc68dca5650) = 0 -43938903940781:43938903941529 26086:26086 hsa_system_get_info(2, 0x7fc68dca5658) = 0 -43938903942430:43938903943183 26086:26086 hsa_system_get_info(2, 0x7fc68dca5660) = 0 -43938903944992:43938903945760 26086:26086 hsa_system_get_info(2, 0x7fc68dca5668) = 0 -43938903946665:43938903947413 26086:26086 hsa_system_get_info(2, 0x7fc68dca5670) = 0 -43938903948322:43938903949071 26086:26086 hsa_system_get_info(2, 0x7fc68dca5678) = 0 -43938903949978:43938903950732 26086:26086 hsa_system_get_info(2, 0x7fc68dca5680) = 0 -43938903951635:43938903952386 26086:26086 hsa_system_get_info(2, 0x7fc68dca5688) = 0 -43938903953297:43938903954048 26086:26086 hsa_system_get_info(2, 0x7fc68dca5690) = 0 -43938903954957:43938903955717 26086:26086 hsa_system_get_info(2, 0x7fc68dca5698) = 0 -43938903956626:43938903957376 26086:26086 hsa_system_get_info(2, 0x7fc68dca56a0) = 0 -43938903958288:43938903959038 26086:26086 hsa_system_get_info(2, 0x7fc68dca56a8) = 0 -43938903959947:43938903960702 26086:26086 hsa_system_get_info(2, 0x7fc68dca56b0) = 0 -43938903961613:43938903962359 26086:26086 hsa_system_get_info(2, 0x7fc68dca56b8) = 0 -43938903963269:43938903964021 26086:26086 hsa_system_get_info(2, 0x7fc68dca56c0) = 0 -43938903964924:43938903965678 26086:26086 hsa_system_get_info(2, 0x7fc68dca56c8) = 0 -43938903966591:43938903967346 26086:26086 hsa_system_get_info(2, 0x7fc68dca56d0) = 0 -43938903968275:43938903969028 26086:26086 hsa_system_get_info(2, 0x7fc68dca56d8) = 0 -43938903969940:43938903970694 26086:26086 hsa_system_get_info(2, 0x7fc68dca56e0) = 0 -43938903971602:43938903972358 26086:26086 hsa_system_get_info(2, 0x7fc68dca56e8) = 0 -43938903973269:43938903974026 26086:26086 hsa_system_get_info(2, 0x7fc68dca56f0) = 0 -43938903974958:43938903975722 26086:26086 hsa_system_get_info(2, 0x7fc68dca56f8) = 0 -43938903976628:43938903977378 26086:26086 hsa_system_get_info(2, 0x7fc68dca5700) = 0 -43938903978285:43938903979044 26086:26086 hsa_system_get_info(2, 0x7fc68dca5708) = 0 -43938903979950:43938903980706 26086:26086 hsa_system_get_info(2, 0x7fc68dca5710) = 0 -43938903981612:43938903982367 26086:26086 hsa_system_get_info(2, 0x7fc68dca5718) = 0 -43938903983277:43938903984027 26086:26086 hsa_system_get_info(2, 0x7fc68dca5720) = 0 -43938903984932:43938903985676 26086:26086 hsa_system_get_info(2, 0x7fc68dca5728) = 0 -43938903986602:43938903987355 26086:26086 hsa_system_get_info(2, 0x7fc68dca5730) = 0 -43938903988265:43938903989016 26086:26086 hsa_system_get_info(2, 0x7fc68dca5738) = 0 -43938903989927:43938903990679 26086:26086 hsa_system_get_info(2, 0x7fc68dca5740) = 0 -43938903992427:43938903993182 26086:26086 hsa_system_get_info(2, 0x7fc68dca5748) = 0 -43938903994095:43938903994847 26086:26086 hsa_system_get_info(2, 0x7fc68dca5750) = 0 -43938903995760:43938903996514 26086:26086 hsa_system_get_info(2, 0x7fc68dca5758) = 0 -43938903997438:43938903998186 26086:26086 hsa_system_get_info(2, 0x7fc68dca5760) = 0 -43938903999094:43938903999846 26086:26086 hsa_system_get_info(2, 0x7fc68dca5768) = 0 -43938904007221:43938904007998 26086:26086 hsa_system_get_info(2, 0x7fc68dca5770) = 0 -43938904008910:43938904009670 26086:26086 hsa_system_get_info(2, 0x7fc68dca5778) = 0 -43938904010577:43938904011330 26086:26086 hsa_system_get_info(2, 0x7fc68dca5780) = 0 -43938904027700:43938904028341 26086:26086 hsa_system_get_info(2, 0x7fc68dca5788) = 0 -43938904029101:43938904029723 26086:26086 hsa_system_get_info(2, 0x7fc68dca5790) = 0 -43938904030474:43938904031092 26086:26086 hsa_system_get_info(2, 0x7fc68dca5798) = 0 -43938904031842:43938904032465 26086:26086 hsa_system_get_info(2, 0x7fc68dca57a0) = 0 -43938904033220:43938904033841 26086:26086 hsa_system_get_info(2, 0x7fc68dca57a8) = 0 -43938904034589:43938904035210 26086:26086 hsa_system_get_info(2, 0x7fc68dca57b0) = 0 -43938904035961:43938904036581 26086:26086 hsa_system_get_info(2, 0x7fc68dca57b8) = 0 -43938904037332:43938904037951 26086:26086 hsa_system_get_info(2, 0x7fc68dca57c0) = 0 -43938904038702:43938904039323 26086:26086 hsa_system_get_info(2, 0x7fc68dca57c8) = 0 -43938904040069:43938904040685 26086:26086 hsa_system_get_info(2, 0x7fc68dca57d0) = 0 -43938904041440:43938904042059 26086:26086 hsa_system_get_info(2, 0x7fc68dca57d8) = 0 -43938904042807:43938904043426 26086:26086 hsa_system_get_info(2, 0x7fc68dca57e0) = 0 -43938904044171:43938904044790 26086:26086 hsa_system_get_info(2, 0x7fc68dca57e8) = 0 -43938904045541:43938904046158 26086:26086 hsa_system_get_info(2, 0x7fc68dca57f0) = 0 -43938904046904:43938904047524 26086:26086 hsa_system_get_info(2, 0x7fc68dca57f8) = 0 -43938904048284:43938904048908 26086:26086 hsa_system_get_info(2, 0x7fc68dca5800) = 0 -43938904049664:43938904050285 26086:26086 hsa_system_get_info(2, 0x7fc68dca5808) = 0 -43938904051040:43938904051660 26086:26086 hsa_system_get_info(2, 0x7fc68dca5810) = 0 -43938904052406:43938904053027 26086:26086 hsa_system_get_info(2, 0x7fc68dca5818) = 0 -43938904053775:43938904054398 26086:26086 hsa_system_get_info(2, 0x7fc68dca5820) = 0 -43938904055144:43938904055767 26086:26086 hsa_system_get_info(2, 0x7fc68dca5828) = 0 -43938904058785:43938904059420 26086:26086 hsa_system_get_info(2, 0x7fc68dca5830) = 0 -43938904060175:43938904060791 26086:26086 hsa_system_get_info(2, 0x7fc68dca5838) = 0 -43938904061537:43938904062156 26086:26086 hsa_system_get_info(2, 0x7fc68dca5840) = 0 -43938904062906:43938904063523 26086:26086 hsa_system_get_info(2, 0x7fc68dca5848) = 0 -43938904064300:43938904064923 26086:26086 hsa_system_get_info(2, 0x7fc68dca5850) = 0 -43938904065673:43938904066290 26086:26086 hsa_system_get_info(2, 0x7fc68dca5858) = 0 -43938904067041:43938904067665 26086:26086 hsa_system_get_info(2, 0x7fc68dca5860) = 0 -43938904068420:43938904069041 26086:26086 hsa_system_get_info(2, 0x7fc68dca5868) = 0 -43938904069791:43938904070411 26086:26086 hsa_system_get_info(2, 0x7fc68dca5870) = 0 -43938904071162:43938904071781 26086:26086 hsa_system_get_info(2, 0x7fc68dca5878) = 0 -43938904072531:43938904073147 26086:26086 hsa_system_get_info(2, 0x7fc68dca5880) = 0 -43938904073896:43938904074517 26086:26086 hsa_system_get_info(2, 0x7fc68dca5888) = 0 -43938904075268:43938904075889 26086:26086 hsa_system_get_info(2, 0x7fc68dca5890) = 0 -43938904076638:43938904077255 26086:26086 hsa_system_get_info(2, 0x7fc68dca5898) = 0 -43938904078001:43938904078619 26086:26086 hsa_system_get_info(2, 0x7fc68dca58a0) = 0 -43938904079367:43938904079985 26086:26086 hsa_system_get_info(2, 0x7fc68dca58a8) = 0 -43938904080732:43938904081351 26086:26086 hsa_system_get_info(2, 0x7fc68dca58b0) = 0 -43938904082102:43938904082727 26086:26086 hsa_system_get_info(2, 0x7fc68dca58b8) = 0 -43938904083474:43938904084114 26086:26086 hsa_system_get_info(2, 0x7fc68dca58c0) = 0 -43938904084860:43938904085483 26086:26086 hsa_system_get_info(2, 0x7fc68dca58c8) = 0 -43938904086232:43938904086856 26086:26086 hsa_system_get_info(2, 0x7fc68dca58d0) = 0 -43938904087604:43938904088222 26086:26086 hsa_system_get_info(2, 0x7fc68dca58d8) = 0 -43938904088971:43938904089586 26086:26086 hsa_system_get_info(2, 0x7fc68dca58e0) = 0 -43938904090365:43938904090987 26086:26086 hsa_system_get_info(2, 0x7fc68dca58e8) = 0 -43938904091737:43938904092356 26086:26086 hsa_system_get_info(2, 0x7fc68dca58f0) = 0 -43938904093105:43938904093724 26086:26086 hsa_system_get_info(2, 0x7fc68dca58f8) = 0 -43938904094475:43938904095092 26086:26086 hsa_system_get_info(2, 0x7fc68dca5900) = 0 -43938904095840:43938904096461 26086:26086 hsa_system_get_info(2, 0x7fc68dca5908) = 0 -43938904097919:43938904098543 26086:26086 hsa_system_get_info(2, 0x7fc68dca5910) = 0 -43938904099297:43938904099912 26086:26086 hsa_system_get_info(2, 0x7fc68dca5918) = 0 -43938904100667:43938904101294 26086:26086 hsa_system_get_info(2, 0x7fc68dca5920) = 0 -43938904102049:43938904102671 26086:26086 hsa_system_get_info(2, 0x7fc68dca5928) = 0 -43938904103423:43938904104043 26086:26086 hsa_system_get_info(2, 0x7fc68dca5930) = 0 -43938904104795:43938904105421 26086:26086 hsa_system_get_info(2, 0x7fc68dca5938) = 0 -43938904106172:43938904106793 26086:26086 hsa_system_get_info(2, 0x7fc68dca5940) = 0 -43938904107545:43938904108175 26086:26086 hsa_system_get_info(2, 0x7fc68dca5948) = 0 -43938904108929:43938904109554 26086:26086 hsa_system_get_info(2, 0x7fc68dca5950) = 0 -43938904110307:43938904110927 26086:26086 hsa_system_get_info(2, 0x7fc68dca5958) = 0 -43938904111679:43938904112310 26086:26086 hsa_system_get_info(2, 0x7fc68dca5960) = 0 -43938904113059:43938904113685 26086:26086 hsa_system_get_info(2, 0x7fc68dca5968) = 0 -43938904114435:43938904115055 26086:26086 hsa_system_get_info(2, 0x7fc68dca5970) = 0 -43938904115803:43938904116439 26086:26086 hsa_system_get_info(2, 0x7fc68dca5978) = 0 -43938904117190:43938904117809 26086:26086 hsa_system_get_info(2, 0x7fc68dca5980) = 0 -43938904118555:43938904119173 26086:26086 hsa_system_get_info(2, 0x7fc68dca5988) = 0 -43938904119916:43938904120542 26086:26086 hsa_system_get_info(2, 0x7fc68dca5990) = 0 -43938904121293:43938904121919 26086:26086 hsa_system_get_info(2, 0x7fc68dca5998) = 0 -43938904122665:43938904123290 26086:26086 hsa_system_get_info(2, 0x7fc68dca59a0) = 0 -43938904124042:43938904124659 26086:26086 hsa_system_get_info(2, 0x7fc68dca59a8) = 0 -43938904125428:43938904126048 26086:26086 hsa_system_get_info(2, 0x7fc68dca59b0) = 0 -43938904126802:43938904127419 26086:26086 hsa_system_get_info(2, 0x7fc68dca59b8) = 0 -43938904128166:43938904128796 26086:26086 hsa_system_get_info(2, 0x7fc68dca59c0) = 0 -43938904129544:43938904130161 26086:26086 hsa_system_get_info(2, 0x7fc68dca59c8) = 0 -43938904130908:43938904131528 26086:26086 hsa_system_get_info(2, 0x7fc68dca59d0) = 0 -43938904132279:43938904132900 26086:26086 hsa_system_get_info(2, 0x7fc68dca59d8) = 0 -43938904133652:43938904134277 26086:26086 hsa_system_get_info(2, 0x7fc68dca59e0) = 0 -43938904135024:43938904135651 26086:26086 hsa_system_get_info(2, 0x7fc68dca59e8) = 0 -43938904136401:43938904137025 26086:26086 hsa_system_get_info(2, 0x7fc68dca59f0) = 0 -43938904138474:43938904139103 26086:26086 hsa_system_get_info(2, 0x7fc68dca59f8) = 0 -43938904139852:43938904140464 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a00) = 0 -43938904141216:43938904141842 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a08) = 0 -43938904142595:43938904143215 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a10) = 0 -43938904143968:43938904144588 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a18) = 0 -43938904145335:43938904145958 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a20) = 0 -43938904146705:43938904147327 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a28) = 0 -43938904148077:43938904148699 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a30) = 0 -43938904149449:43938904150072 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a38) = 0 -43938904150824:43938904151442 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a40) = 0 -43938904152188:43938904152809 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a48) = 0 -43938904153558:43938904154180 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a50) = 0 -43938904154932:43938904155552 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a58) = 0 -43938904156301:43938904156923 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a60) = 0 -43938904157686:43938904158307 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a68) = 0 -43938904159056:43938904159673 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a70) = 0 -43938904160424:43938904161046 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a78) = 0 -43938904161813:43938904162437 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a80) = 0 -43938904163189:43938904163809 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a88) = 0 -43938904164555:43938904165172 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a90) = 0 -43938904165921:43938904166543 26086:26086 hsa_system_get_info(2, 0x7fc68dca5a98) = 0 -43938904167297:43938904167916 26086:26086 hsa_system_get_info(2, 0x7fc68dca5aa0) = 0 -43938904168668:43938904169287 26086:26086 hsa_system_get_info(2, 0x7fc68dca5aa8) = 0 -43938904170033:43938904170655 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ab0) = 0 -43938904171430:43938904172050 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ab8) = 0 -43938904172800:43938904173421 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ac0) = 0 -43938904174173:43938904174795 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ac8) = 0 -43938904175542:43938904176162 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ad0) = 0 -43938904177615:43938904178235 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ad8) = 0 -43938904178978:43938904179599 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ae0) = 0 -43938904180350:43938904180968 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ae8) = 0 -43938904181719:43938904182337 26086:26086 hsa_system_get_info(2, 0x7fc68dca5af0) = 0 -43938904183082:43938904183702 26086:26086 hsa_system_get_info(2, 0x7fc68dca5af8) = 0 -43938904184450:43938904185072 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b00) = 0 -43938904185819:43938904186447 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b08) = 0 -43938904187194:43938904187820 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b10) = 0 -43938904188565:43938904189191 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b18) = 0 -43938904189942:43938904190570 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b20) = 0 -43938904191316:43938904191942 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b28) = 0 -43938904192690:43938904193306 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b30) = 0 -43938904194054:43938904194675 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b38) = 0 -43938904195442:43938904196065 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b40) = 0 -43938904196813:43938904197435 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b48) = 0 -43938904198181:43938904198807 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b50) = 0 -43938904199556:43938904200177 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b58) = 0 -43938904200930:43938904201553 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b60) = 0 -43938904202300:43938904202922 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b68) = 0 -43938904203678:43938904204298 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b70) = 0 -43938904205045:43938904205669 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b78) = 0 -43938904206420:43938904207041 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b80) = 0 -43938904207794:43938904208416 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b88) = 0 -43938904209163:43938904209787 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b90) = 0 -43938904210537:43938904211161 26086:26086 hsa_system_get_info(2, 0x7fc68dca5b98) = 0 -43938904211914:43938904212528 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ba0) = 0 -43938904213276:43938904213896 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ba8) = 0 -43938904214654:43938904215276 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bb0) = 0 -43938904216039:43938904216661 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bb8) = 0 -43938904218101:43938904218731 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bc0) = 0 -43938904219483:43938904220113 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bc8) = 0 -43938904220867:43938904221491 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bd0) = 0 -43938904222240:43938904222859 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bd8) = 0 -43938904223605:43938904224226 26086:26086 hsa_system_get_info(2, 0x7fc68dca5be0) = 0 -43938904224976:43938904225600 26086:26086 hsa_system_get_info(2, 0x7fc68dca5be8) = 0 -43938904226349:43938904226965 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bf0) = 0 -43938904227714:43938904228341 26086:26086 hsa_system_get_info(2, 0x7fc68dca5bf8) = 0 -43938904229092:43938904229705 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c00) = 0 -43938904230453:43938904231075 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c08) = 0 -43938904231823:43938904232440 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c10) = 0 -43938904233188:43938904233808 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c18) = 0 -43938904234556:43938904235175 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c20) = 0 -43938904235937:43938904236555 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c28) = 0 -43938904237302:43938904237916 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c30) = 0 -43938904238667:43938904239282 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c38) = 0 -43938904240031:43938904240652 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c40) = 0 -43938904241401:43938904242021 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c48) = 0 -43938904242765:43938904243389 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c50) = 0 -43938904244141:43938904244760 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c58) = 0 -43938904245508:43938904246124 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c60) = 0 -43938904246873:43938904247492 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c68) = 0 -43938904248243:43938904248865 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c70) = 0 -43938904249610:43938904250231 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c78) = 0 -43938904250994:43938904251608 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c80) = 0 -43938904252358:43938904252986 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c88) = 0 -43938904253737:43938904254361 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c90) = 0 -43938904255123:43938904255744 26086:26086 hsa_system_get_info(2, 0x7fc68dca5c98) = 0 -43938904257188:43938904257819 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ca0) = 0 -43938904258568:43938904259182 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ca8) = 0 -43938904259930:43938904260546 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cb0) = 0 -43938904261300:43938904261917 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cb8) = 0 -43938904262671:43938904263293 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cc0) = 0 -43938904264044:43938904264666 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cc8) = 0 -43938904265415:43938904266045 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cd0) = 0 -43938904266793:43938904267416 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cd8) = 0 -43938904268168:43938904268791 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ce0) = 0 -43938904269540:43938904270165 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ce8) = 0 -43938904270913:43938904271539 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cf0) = 0 -43938904272287:43938904272910 26086:26086 hsa_system_get_info(2, 0x7fc68dca5cf8) = 0 -43938904273658:43938904274280 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d00) = 0 -43938904275027:43938904275649 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d08) = 0 -43938904276412:43938904277052 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d10) = 0 -43938904277797:43938904278423 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d18) = 0 -43938904279175:43938904279800 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d20) = 0 -43938904280551:43938904281174 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d28) = 0 -43938904281923:43938904282546 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d30) = 0 -43938904283292:43938904283918 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d38) = 0 -43938904284667:43938904285289 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d40) = 0 -43938904286040:43938904286664 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d48) = 0 -43938904287410:43938904288038 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d50) = 0 -43938904288787:43938904289412 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d58) = 0 -43938904290167:43938904290789 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d60) = 0 -43938904291542:43938904292171 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d68) = 0 -43938904292923:43938904293548 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d70) = 0 -43938904294300:43938904294924 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d78) = 0 -43938904295692:43938904296320 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d80) = 0 -43938904297750:43938904298377 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d88) = 0 -43938904299135:43938904299755 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d90) = 0 -43938904300502:43938904301120 26086:26086 hsa_system_get_info(2, 0x7fc68dca5d98) = 0 -43938904301869:43938904302491 26086:26086 hsa_system_get_info(2, 0x7fc68dca5da0) = 0 -43938904303240:43938904303860 26086:26086 hsa_system_get_info(2, 0x7fc68dca5da8) = 0 -43938904304609:43938904305227 26086:26086 hsa_system_get_info(2, 0x7fc68dca5db0) = 0 -43938904305975:43938904306592 26086:26086 hsa_system_get_info(2, 0x7fc68dca5db8) = 0 -43938904307338:43938904307960 26086:26086 hsa_system_get_info(2, 0x7fc68dca5dc0) = 0 -43938904308708:43938904309327 26086:26086 hsa_system_get_info(2, 0x7fc68dca5dc8) = 0 -43938904310075:43938904310694 26086:26086 hsa_system_get_info(2, 0x7fc68dca5dd0) = 0 -43938904311442:43938904312059 26086:26086 hsa_system_get_info(2, 0x7fc68dca5dd8) = 0 -43938904312805:43938904313432 26086:26086 hsa_system_get_info(2, 0x7fc68dca5de0) = 0 -43938904314181:43938904314802 26086:26086 hsa_system_get_info(2, 0x7fc68dca5de8) = 0 -43938904315566:43938904316186 26086:26086 hsa_system_get_info(2, 0x7fc68dca5df0) = 0 -43938904316937:43938904317559 26086:26086 hsa_system_get_info(2, 0x7fc68dca5df8) = 0 -43938904318308:43938904318930 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e00) = 0 -43938904319683:43938904320306 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e08) = 0 -43938904321055:43938904321674 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e10) = 0 -43938904322419:43938904323043 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e18) = 0 -43938904323795:43938904324418 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e20) = 0 -43938904325168:43938904325782 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e28) = 0 -43938904326529:43938904327154 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e30) = 0 -43938904327904:43938904328526 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e38) = 0 -43938904329275:43938904329896 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e40) = 0 -43938904330650:43938904331271 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e48) = 0 -43938904332018:43938904332641 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e50) = 0 -43938904333392:43938904334013 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e58) = 0 -43938904334763:43938904335403 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e60) = 0 -43938904336875:43938904337499 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e68) = 0 -43938904338247:43938904338868 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e70) = 0 -43938904339619:43938904340242 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e78) = 0 -43938904340993:43938904341613 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e80) = 0 -43938904342360:43938904342982 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e88) = 0 -43938904343729:43938904344355 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e90) = 0 -43938904345108:43938904345729 26086:26086 hsa_system_get_info(2, 0x7fc68dca5e98) = 0 -43938904346476:43938904347099 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ea0) = 0 -43938904347843:43938904348465 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ea8) = 0 -43938904349212:43938904349833 26086:26086 hsa_system_get_info(2, 0x7fc68dca5eb0) = 0 -43938904350578:43938904351202 26086:26086 hsa_system_get_info(2, 0x7fc68dca5eb8) = 0 -43938904351947:43938904352565 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ec0) = 0 -43938904353310:43938904353934 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ec8) = 0 -43938904354680:43938904355299 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ed0) = 0 -43938904356068:43938904356689 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ed8) = 0 -43938904357460:43938904358080 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ee0) = 0 -43938904358830:43938904359448 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ee8) = 0 -43938904360197:43938904360813 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ef0) = 0 -43938904361563:43938904362183 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ef8) = 0 -43938904362930:43938904363549 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f00) = 0 -43938904364315:43938904364945 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f08) = 0 -43938904365695:43938904366317 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f10) = 0 -43938904367070:43938904367687 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f18) = 0 -43938904368437:43938904369061 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f20) = 0 -43938904369813:43938904370436 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f28) = 0 -43938904371187:43938904371810 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f30) = 0 -43938904372560:43938904373189 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f38) = 0 -43938904373938:43938904374559 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f40) = 0 -43938904376001:43938904376627 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f48) = 0 -43938904377373:43938904377993 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f50) = 0 -43938904378745:43938904379365 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f58) = 0 -43938904380120:43938904380742 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f60) = 0 -43938904381494:43938904382114 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f68) = 0 -43938904382864:43938904383487 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f70) = 0 -43938904384243:43938904384861 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f78) = 0 -43938904385611:43938904386233 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f80) = 0 -43938904386983:43938904387606 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f88) = 0 -43938904388358:43938904388977 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f90) = 0 -43938904389727:43938904390345 26086:26086 hsa_system_get_info(2, 0x7fc68dca5f98) = 0 -43938904391097:43938904391722 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fa0) = 0 -43938904392477:43938904393100 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fa8) = 0 -43938904393850:43938904394473 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fb0) = 0 -43938904395234:43938904395854 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fb8) = 0 -43938904396608:43938904397228 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fc0) = 0 -43938904397978:43938904398593 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fc8) = 0 -43938904399344:43938904399961 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fd0) = 0 -43938904400706:43938904401324 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fd8) = 0 -43938904402074:43938904402696 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fe0) = 0 -43938904403447:43938904404067 26086:26086 hsa_system_get_info(2, 0x7fc68dca5fe8) = 0 -43938904404817:43938904405437 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ff0) = 0 -43938904406187:43938904406807 26086:26086 hsa_system_get_info(2, 0x7fc68dca5ff8) = 0 -43938904407557:43938904408176 26086:26086 hsa_system_get_info(2, 0x7fc68dca6000) = 0 -43938904408925:43938904409542 26086:26086 hsa_system_get_info(2, 0x7fc68dca6008) = 0 -43938904410297:43938904410917 26086:26086 hsa_system_get_info(2, 0x7fc68dca6010) = 0 -43938904411680:43938904412303 26086:26086 hsa_system_get_info(2, 0x7fc68dca6018) = 0 -43938904413052:43938904413675 26086:26086 hsa_system_get_info(2, 0x7fc68dca6020) = 0 -43938904414423:43938904415041 26086:26086 hsa_system_get_info(2, 0x7fc68dca6028) = 0 -43938904416510:43938904417139 26086:26086 hsa_system_get_info(2, 0x7fc68dca6030) = 0 -43938904417893:43938904418517 26086:26086 hsa_system_get_info(2, 0x7fc68dca6038) = 0 -43938904419270:43938904419898 26086:26086 hsa_system_get_info(2, 0x7fc68dca6040) = 0 -43938904420653:43938904421279 26086:26086 hsa_system_get_info(2, 0x7fc68dca6048) = 0 -43938904422032:43938904422663 26086:26086 hsa_system_get_info(2, 0x7fc68dca6050) = 0 -43938904423413:43938904424035 26086:26086 hsa_system_get_info(2, 0x7fc68dca6058) = 0 -43938904424789:43938904425414 26086:26086 hsa_system_get_info(2, 0x7fc68dca6060) = 0 -43938904426164:43938904426777 26086:26086 hsa_system_get_info(2, 0x7fc68dca6068) = 0 -43938904427528:43938904428146 26086:26086 hsa_system_get_info(2, 0x7fc68dca6070) = 0 -43938904428898:43938904429513 26086:26086 hsa_system_get_info(2, 0x7fc68dca6078) = 0 -43938904430262:43938904430880 26086:26086 hsa_system_get_info(2, 0x7fc68dca6080) = 0 -43938904431632:43938904432248 26086:26086 hsa_system_get_info(2, 0x7fc68dca6088) = 0 -43938904432999:43938904433614 26086:26086 hsa_system_get_info(2, 0x7fc68dca6090) = 0 -43938904434373:43938904434991 26086:26086 hsa_system_get_info(2, 0x7fc68dca6098) = 0 -43938904435742:43938904436360 26086:26086 hsa_system_get_info(2, 0x7fc68dca60a0) = 0 -43938904437111:43938904437727 26086:26086 hsa_system_get_info(2, 0x7fc68dca60a8) = 0 -43938904438475:43938904439093 26086:26086 hsa_system_get_info(2, 0x7fc68dca60b0) = 0 -43938904439843:43938904440466 26086:26086 hsa_system_get_info(2, 0x7fc68dca60b8) = 0 -43938904441216:43938904441838 26086:26086 hsa_system_get_info(2, 0x7fc68dca60c0) = 0 -43938904442589:43938904443208 26086:26086 hsa_system_get_info(2, 0x7fc68dca60c8) = 0 -43938904443956:43938904444572 26086:26086 hsa_system_get_info(2, 0x7fc68dca60d0) = 0 -43938904445319:43938904445937 26086:26086 hsa_system_get_info(2, 0x7fc68dca60d8) = 0 -43938904446689:43938904447310 26086:26086 hsa_system_get_info(2, 0x7fc68dca60e0) = 0 -43938904448077:43938904448692 26086:26086 hsa_system_get_info(2, 0x7fc68dca60e8) = 0 -43938904449440:43938904450059 26086:26086 hsa_system_get_info(2, 0x7fc68dca60f0) = 0 -43938904450826:43938904451446 26086:26086 hsa_system_get_info(2, 0x7fc68dca60f8) = 0 -43938904452199:43938904452821 26086:26086 hsa_system_get_info(2, 0x7fc68dca6100) = 0 -43938904453573:43938904454196 26086:26086 hsa_system_get_info(2, 0x7fc68dca6108) = 0 -43938904456348:43938904456977 26086:26086 hsa_system_get_info(2, 0x7fc68dca6110) = 0 -43938904457728:43938904458350 26086:26086 hsa_system_get_info(2, 0x7fc68dca6118) = 0 -43938904459106:43938904459724 26086:26086 hsa_system_get_info(2, 0x7fc68dca6120) = 0 -43938904460475:43938904461090 26086:26086 hsa_system_get_info(2, 0x7fc68dca6128) = 0 -43938904461839:43938904462455 26086:26086 hsa_system_get_info(2, 0x7fc68dca6130) = 0 -43938904463200:43938904463823 26086:26086 hsa_system_get_info(2, 0x7fc68dca6138) = 0 -43938904464572:43938904465198 26086:26086 hsa_system_get_info(2, 0x7fc68dca6140) = 0 -43938904465945:43938904466564 26086:26086 hsa_system_get_info(2, 0x7fc68dca6148) = 0 -43938904467315:43938904467938 26086:26086 hsa_system_get_info(2, 0x7fc68dca6150) = 0 -43938904468685:43938904469307 26086:26086 hsa_system_get_info(2, 0x7fc68dca6158) = 0 -43938904470055:43938904470674 26086:26086 hsa_system_get_info(2, 0x7fc68dca6160) = 0 -43938904471424:43938904472047 26086:26086 hsa_system_get_info(2, 0x7fc68dca6168) = 0 -43938904472794:43938904473414 26086:26086 hsa_system_get_info(2, 0x7fc68dca6170) = 0 -43938904474158:43938904474776 26086:26086 hsa_system_get_info(2, 0x7fc68dca6178) = 0 -43938904475525:43938904476157 26086:26086 hsa_system_get_info(2, 0x7fc68dca6180) = 0 -43938904476909:43938904477529 26086:26086 hsa_system_get_info(2, 0x7fc68dca6188) = 0 -43938904478277:43938904478896 26086:26086 hsa_system_get_info(2, 0x7fc68dca6190) = 0 -43938904479648:43938904480268 26086:26086 hsa_system_get_info(2, 0x7fc68dca6198) = 0 -43938904481016:43938904481632 26086:26086 hsa_system_get_info(2, 0x7fc68dca61a0) = 0 -43938904482382:43938904483003 26086:26086 hsa_system_get_info(2, 0x7fc68dca61a8) = 0 -43938904483755:43938904484373 26086:26086 hsa_system_get_info(2, 0x7fc68dca61b0) = 0 -43938904485122:43938904485744 26086:26086 hsa_system_get_info(2, 0x7fc68dca61b8) = 0 -43938904486492:43938904487115 26086:26086 hsa_system_get_info(2, 0x7fc68dca61c0) = 0 -43938904487863:43938904488486 26086:26086 hsa_system_get_info(2, 0x7fc68dca61c8) = 0 -43938904489242:43938904489861 26086:26086 hsa_system_get_info(2, 0x7fc68dca61d0) = 0 -43938904490613:43938904491232 26086:26086 hsa_system_get_info(2, 0x7fc68dca61d8) = 0 -43938904491982:43938904492600 26086:26086 hsa_system_get_info(2, 0x7fc68dca61e0) = 0 -43938904493349:43938904493966 26086:26086 hsa_system_get_info(2, 0x7fc68dca61e8) = 0 -43938904494711:43938904495330 26086:26086 hsa_system_get_info(2, 0x7fc68dca61f0) = 0 -43938904496789:43938904497420 26086:26086 hsa_system_get_info(2, 0x7fc68dca61f8) = 0 -43938904498169:43938904498794 26086:26086 hsa_system_get_info(2, 0x7fc68dca6200) = 0 -43938904499549:43938904500172 26086:26086 hsa_system_get_info(2, 0x7fc68dca6208) = 0 -43938904500921:43938904501543 26086:26086 hsa_system_get_info(2, 0x7fc68dca6210) = 0 -43938904502291:43938904502921 26086:26086 hsa_system_get_info(2, 0x7fc68dca6218) = 0 -43938904503669:43938904504310 26086:26086 hsa_system_get_info(2, 0x7fc68dca6220) = 0 -43938904505057:43938904505680 26086:26086 hsa_system_get_info(2, 0x7fc68dca6228) = 0 -43938904506431:43938904507051 26086:26086 hsa_system_get_info(2, 0x7fc68dca6230) = 0 -43938904507797:43938904508418 26086:26086 hsa_system_get_info(2, 0x7fc68dca6238) = 0 -43938904509165:43938904509787 26086:26086 hsa_system_get_info(2, 0x7fc68dca6240) = 0 -43938904510536:43938904511157 26086:26086 hsa_system_get_info(2, 0x7fc68dca6248) = 0 -43938904511905:43938904512525 26086:26086 hsa_system_get_info(2, 0x7fc68dca6250) = 0 -43938904513272:43938904513888 26086:26086 hsa_system_get_info(2, 0x7fc68dca6258) = 0 -43938904514643:43938904515263 26086:26086 hsa_system_get_info(2, 0x7fc68dca6260) = 0 -43938904516018:43938904516640 26086:26086 hsa_system_get_info(2, 0x7fc68dca6268) = 0 -43938904517388:43938904518011 26086:26086 hsa_system_get_info(2, 0x7fc68dca6270) = 0 -43938904518761:43938904519385 26086:26086 hsa_system_get_info(2, 0x7fc68dca6278) = 0 -43938904520138:43938904520755 26086:26086 hsa_system_get_info(2, 0x7fc68dca6280) = 0 -43938904521502:43938904522126 26086:26086 hsa_system_get_info(2, 0x7fc68dca6288) = 0 -43938904522896:43938904523514 26086:26086 hsa_system_get_info(2, 0x7fc68dca6290) = 0 -43938904524262:43938904524885 26086:26086 hsa_system_get_info(2, 0x7fc68dca6298) = 0 -43938904525634:43938904526256 26086:26086 hsa_system_get_info(2, 0x7fc68dca62a0) = 0 -43938904527005:43938904527630 26086:26086 hsa_system_get_info(2, 0x7fc68dca62a8) = 0 -43938904528377:43938904529011 26086:26086 hsa_system_get_info(2, 0x7fc68dca62b0) = 0 -43938904529785:43938904530408 26086:26086 hsa_system_get_info(2, 0x7fc68dca62b8) = 0 -43938904531157:43938904531786 26086:26086 hsa_system_get_info(2, 0x7fc68dca62c0) = 0 -43938904532537:43938904533160 26086:26086 hsa_system_get_info(2, 0x7fc68dca62c8) = 0 -43938904533913:43938904534542 26086:26086 hsa_system_get_info(2, 0x7fc68dca62d0) = 0 -43938904535985:43938904536618 26086:26086 hsa_system_get_info(2, 0x7fc68dca62d8) = 0 -43938904537368:43938904537985 26086:26086 hsa_system_get_info(2, 0x7fc68dca62e0) = 0 -43938904538734:43938904539359 26086:26086 hsa_system_get_info(2, 0x7fc68dca62e8) = 0 -43938904540106:43938904540727 26086:26086 hsa_system_get_info(2, 0x7fc68dca62f0) = 0 -43938904541476:43938904542102 26086:26086 hsa_system_get_info(2, 0x7fc68dca62f8) = 0 -43938904542852:43938904543473 26086:26086 hsa_system_get_info(2, 0x7fc68dca6300) = 0 -43938904544219:43938904544839 26086:26086 hsa_system_get_info(2, 0x7fc68dca6308) = 0 -43938904545587:43938904546213 26086:26086 hsa_system_get_info(2, 0x7fc68dca6310) = 0 -43938904546967:43938904547588 26086:26086 hsa_system_get_info(2, 0x7fc68dca6318) = 0 -43938904548337:43938904548959 26086:26086 hsa_system_get_info(2, 0x7fc68dca6320) = 0 -43938904549710:43938904550332 26086:26086 hsa_system_get_info(2, 0x7fc68dca6328) = 0 -43938904551083:43938904551709 26086:26086 hsa_system_get_info(2, 0x7fc68dca6330) = 0 -43938904552457:43938904553081 26086:26086 hsa_system_get_info(2, 0x7fc68dca6338) = 0 -43938904553830:43938904554449 26086:26086 hsa_system_get_info(2, 0x7fc68dca6340) = 0 -43938904555196:43938904555833 26086:26086 hsa_system_get_info(2, 0x7fc68dca6348) = 0 -43938904556597:43938904557220 26086:26086 hsa_system_get_info(2, 0x7fc68dca6350) = 0 -43938904557974:43938904558600 26086:26086 hsa_system_get_info(2, 0x7fc68dca6358) = 0 -43938904559351:43938904559975 26086:26086 hsa_system_get_info(2, 0x7fc68dca6360) = 0 -43938904560725:43938904561349 26086:26086 hsa_system_get_info(2, 0x7fc68dca6368) = 0 -43938904562099:43938904562720 26086:26086 hsa_system_get_info(2, 0x7fc68dca6370) = 0 -43938904563474:43938904564097 26086:26086 hsa_system_get_info(2, 0x7fc68dca6378) = 0 -43938904564851:43938904565477 26086:26086 hsa_system_get_info(2, 0x7fc68dca6380) = 0 -43938904566231:43938904566853 26086:26086 hsa_system_get_info(2, 0x7fc68dca6388) = 0 -43938904567601:43938904568227 26086:26086 hsa_system_get_info(2, 0x7fc68dca6390) = 0 -43938904568979:43938904569601 26086:26086 hsa_system_get_info(2, 0x7fc68dca6398) = 0 -43938904570357:43938904570983 26086:26086 hsa_system_get_info(2, 0x7fc68dca63a0) = 0 -43938904571734:43938904572363 26086:26086 hsa_system_get_info(2, 0x7fc68dca63a8) = 0 -43938904573113:43938904573739 26086:26086 hsa_system_get_info(2, 0x7fc68dca63b0) = 0 -43938904574487:43938904575111 26086:26086 hsa_system_get_info(2, 0x7fc68dca63b8) = 0 -43938904576581:43938904577216 26086:26086 hsa_system_get_info(2, 0x7fc68dca63c0) = 0 -43938904577967:43938904578594 26086:26086 hsa_system_get_info(2, 0x7fc68dca63c8) = 0 -43938904579343:43938904579966 26086:26086 hsa_system_get_info(2, 0x7fc68dca63d0) = 0 -43938904580711:43938904581333 26086:26086 hsa_system_get_info(2, 0x7fc68dca63d8) = 0 -43938904582077:43938904582694 26086:26086 hsa_system_get_info(2, 0x7fc68dca63e0) = 0 -43938904583447:43938904584072 26086:26086 hsa_system_get_info(2, 0x7fc68dca63e8) = 0 -43938904584822:43938904585447 26086:26086 hsa_system_get_info(2, 0x7fc68dca63f0) = 0 -43938904586196:43938904586814 26086:26086 hsa_system_get_info(2, 0x7fc68dca63f8) = 0 -43938904587564:43938904588184 26086:26086 hsa_system_get_info(2, 0x7fc68dca6400) = 0 -43938904588935:43938904589562 26086:26086 hsa_system_get_info(2, 0x7fc68dca6408) = 0 -43938904590312:43938904590927 26086:26086 hsa_system_get_info(2, 0x7fc68dca6410) = 0 -43938904591675:43938904592296 26086:26086 hsa_system_get_info(2, 0x7fc68dca6418) = 0 -43938904593045:43938904593668 26086:26086 hsa_system_get_info(2, 0x7fc68dca6420) = 0 -43938904594417:43938904595038 26086:26086 hsa_system_get_info(2, 0x7fc68dca6428) = 0 -43938904595803:43938904596426 26086:26086 hsa_system_get_info(2, 0x7fc68dca6430) = 0 -43938904597173:43938904597793 26086:26086 hsa_system_get_info(2, 0x7fc68dca6438) = 0 -43938904598540:43938904599160 26086:26086 hsa_system_get_info(2, 0x7fc68dca6440) = 0 -43938904599909:43938904600530 26086:26086 hsa_system_get_info(2, 0x7fc68dca6448) = 0 -43938904601280:43938904601902 26086:26086 hsa_system_get_info(2, 0x7fc68dca6450) = 0 -43938904602650:43938904603271 26086:26086 hsa_system_get_info(2, 0x7fc68dca6458) = 0 -43938904604019:43938904604637 26086:26086 hsa_system_get_info(2, 0x7fc68dca6460) = 0 -43938904605381:43938904606001 26086:26086 hsa_system_get_info(2, 0x7fc68dca6468) = 0 -43938904606748:43938904607366 26086:26086 hsa_system_get_info(2, 0x7fc68dca6470) = 0 -43938904608114:43938904608734 26086:26086 hsa_system_get_info(2, 0x7fc68dca6478) = 0 -43938904609486:43938904610104 26086:26086 hsa_system_get_info(2, 0x7fc68dca6480) = 0 -43938904610856:43938904611478 26086:26086 hsa_system_get_info(2, 0x7fc68dca6488) = 0 -43938904612225:43938904612843 26086:26086 hsa_system_get_info(2, 0x7fc68dca6490) = 0 -43938904613589:43938904614207 26086:26086 hsa_system_get_info(2, 0x7fc68dca6498) = 0 -43938904615667:43938904616290 26086:26086 hsa_system_get_info(2, 0x7fc68dca64a0) = 0 -43938904617040:43938904617659 26086:26086 hsa_system_get_info(2, 0x7fc68dca64a8) = 0 -43938904618406:43938904619031 26086:26086 hsa_system_get_info(2, 0x7fc68dca64b0) = 0 -43938904619780:43938904620403 26086:26086 hsa_system_get_info(2, 0x7fc68dca64b8) = 0 -43938904621151:43938904621764 26086:26086 hsa_system_get_info(2, 0x7fc68dca64c0) = 0 -43938904622510:43938904623134 26086:26086 hsa_system_get_info(2, 0x7fc68dca64c8) = 0 -43938904623880:43938904624496 26086:26086 hsa_system_get_info(2, 0x7fc68dca64d0) = 0 -43938904625243:43938904625864 26086:26086 hsa_system_get_info(2, 0x7fc68dca64d8) = 0 -43938904626616:43938904627240 26086:26086 hsa_system_get_info(2, 0x7fc68dca64e0) = 0 -43938904627987:43938904628608 26086:26086 hsa_system_get_info(2, 0x7fc68dca64e8) = 0 -43938904629356:43938904629977 26086:26086 hsa_system_get_info(2, 0x7fc68dca64f0) = 0 -43938904630729:43938904631354 26086:26086 hsa_system_get_info(2, 0x7fc68dca64f8) = 0 -43938904632100:43938904632718 26086:26086 hsa_system_get_info(2, 0x7fc68dca6500) = 0 -43938904633468:43938904634091 26086:26086 hsa_system_get_info(2, 0x7fc68dca6508) = 0 -43938904634880:43938904635501 26086:26086 hsa_system_get_info(2, 0x7fc68dca6510) = 0 -43938904636253:43938904636873 26086:26086 hsa_system_get_info(2, 0x7fc68dca6518) = 0 -43938904637620:43938904638239 26086:26086 hsa_system_get_info(2, 0x7fc68dca6520) = 0 -43938904638988:43938904639609 26086:26086 hsa_system_get_info(2, 0x7fc68dca6528) = 0 -43938904640362:43938904640984 26086:26086 hsa_system_get_info(2, 0x7fc68dca6530) = 0 -43938904641736:43938904642359 26086:26086 hsa_system_get_info(2, 0x7fc68dca6538) = 0 -43938904643106:43938904643729 26086:26086 hsa_system_get_info(2, 0x7fc68dca6540) = 0 -43938904644481:43938904645100 26086:26086 hsa_system_get_info(2, 0x7fc68dca6548) = 0 -43938904645852:43938904646473 26086:26086 hsa_system_get_info(2, 0x7fc68dca6550) = 0 -43938904647223:43938904647839 26086:26086 hsa_system_get_info(2, 0x7fc68dca6558) = 0 -43938904648592:43938904649213 26086:26086 hsa_system_get_info(2, 0x7fc68dca6560) = 0 -43938904649965:43938904650584 26086:26086 hsa_system_get_info(2, 0x7fc68dca6568) = 0 -43938904651335:43938904651957 26086:26086 hsa_system_get_info(2, 0x7fc68dca6570) = 0 -43938904652709:43938904653330 26086:26086 hsa_system_get_info(2, 0x7fc68dca6578) = 0 -43938904654077:43938904654696 26086:26086 hsa_system_get_info(2, 0x7fc68dca6580) = 0 -43938904656171:43938904656800 26086:26086 hsa_system_get_info(2, 0x7fc68dca6588) = 0 -43938904657551:43938904658171 26086:26086 hsa_system_get_info(2, 0x7fc68dca6590) = 0 -43938904658921:43938904659542 26086:26086 hsa_system_get_info(2, 0x7fc68dca6598) = 0 -43938904660291:43938904660917 26086:26086 hsa_system_get_info(2, 0x7fc68dca65a0) = 0 -43938904661666:43938904662283 26086:26086 hsa_system_get_info(2, 0x7fc68dca65a8) = 0 -43938904663032:43938904663651 26086:26086 hsa_system_get_info(2, 0x7fc68dca65b0) = 0 -43938904664401:43938904665022 26086:26086 hsa_system_get_info(2, 0x7fc68dca65b8) = 0 -43938904665767:43938904666385 26086:26086 hsa_system_get_info(2, 0x7fc68dca65c0) = 0 -43938904667133:43938904667749 26086:26086 hsa_system_get_info(2, 0x7fc68dca65c8) = 0 -43938904668495:43938904669115 26086:26086 hsa_system_get_info(2, 0x7fc68dca65d0) = 0 -43938904669860:43938904670479 26086:26086 hsa_system_get_info(2, 0x7fc68dca65d8) = 0 -43938904671222:43938904671846 26086:26086 hsa_system_get_info(2, 0x7fc68dca65e0) = 0 -43938904672599:43938904673223 26086:26086 hsa_system_get_info(2, 0x7fc68dca65e8) = 0 -43938904673971:43938904674617 26086:26086 hsa_system_get_info(2, 0x7fc68dca65f0) = 0 -43938904675363:43938904675985 26086:26086 hsa_system_get_info(2, 0x7fc68dca65f8) = 0 -43938904676738:43938904677359 26086:26086 hsa_system_get_info(2, 0x7fc68dca6600) = 0 -43938904678106:43938904678726 26086:26086 hsa_system_get_info(2, 0x7fc68dca6608) = 0 -43938904679474:43938904680092 26086:26086 hsa_system_get_info(2, 0x7fc68dca6610) = 0 -43938904680842:43938904681466 26086:26086 hsa_system_get_info(2, 0x7fc68dca6618) = 0 -43938904682216:43938904682835 26086:26086 hsa_system_get_info(2, 0x7fc68dca6620) = 0 -43938904683586:43938904684213 26086:26086 hsa_system_get_info(2, 0x7fc68dca6628) = 0 -43938904684958:43938904685579 26086:26086 hsa_system_get_info(2, 0x7fc68dca6630) = 0 -43938904686331:43938904686949 26086:26086 hsa_system_get_info(2, 0x7fc68dca6638) = 0 -43938904687698:43938904688322 26086:26086 hsa_system_get_info(2, 0x7fc68dca6640) = 0 -43938904689098:43938904689723 26086:26086 hsa_system_get_info(2, 0x7fc68dca6648) = 0 -43938904690472:43938904691098 26086:26086 hsa_system_get_info(2, 0x7fc68dca6650) = 0 -43938904691844:43938904692469 26086:26086 hsa_system_get_info(2, 0x7fc68dca6658) = 0 -43938904693219:43938904693836 26086:26086 hsa_system_get_info(2, 0x7fc68dca6660) = 0 -43938904695290:43938904695919 26086:26086 hsa_system_get_info(2, 0x7fc68dca6668) = 0 -43938904696671:43938904697296 26086:26086 hsa_system_get_info(2, 0x7fc68dca6670) = 0 -43938904698046:43938904698672 26086:26086 hsa_system_get_info(2, 0x7fc68dca6678) = 0 -43938904699419:43938904700038 26086:26086 hsa_system_get_info(2, 0x7fc68dca6680) = 0 -43938904700786:43938904701407 26086:26086 hsa_system_get_info(2, 0x7fc68dca6688) = 0 -43938904702154:43938904702778 26086:26086 hsa_system_get_info(2, 0x7fc68dca6690) = 0 -43938904703530:43938904704150 26086:26086 hsa_system_get_info(2, 0x7fc68dca6698) = 0 -43938904704900:43938904705526 26086:26086 hsa_system_get_info(2, 0x7fc68dca66a0) = 0 -43938904706276:43938904706902 26086:26086 hsa_system_get_info(2, 0x7fc68dca66a8) = 0 -43938904707653:43938904708279 26086:26086 hsa_system_get_info(2, 0x7fc68dca66b0) = 0 -43938904709029:43938904709649 26086:26086 hsa_system_get_info(2, 0x7fc68dca66b8) = 0 -43938904710399:43938904711021 26086:26086 hsa_system_get_info(2, 0x7fc68dca66c0) = 0 -43938904711773:43938904712400 26086:26086 hsa_system_get_info(2, 0x7fc68dca66c8) = 0 -43938904713153:43938904713783 26086:26086 hsa_system_get_info(2, 0x7fc68dca66d0) = 0 -43938904714552:43938904715178 26086:26086 hsa_system_get_info(2, 0x7fc68dca66d8) = 0 -43938904715953:43938904716575 26086:26086 hsa_system_get_info(2, 0x7fc68dca66e0) = 0 -43938904717325:43938904717949 26086:26086 hsa_system_get_info(2, 0x7fc68dca66e8) = 0 -43938904718700:43938904719326 26086:26086 hsa_system_get_info(2, 0x7fc68dca66f0) = 0 -43938904720075:43938904720698 26086:26086 hsa_system_get_info(2, 0x7fc68dca66f8) = 0 -43938904721449:43938904722075 26086:26086 hsa_system_get_info(2, 0x7fc68dca6700) = 0 -43938904722845:43938904723469 26086:26086 hsa_system_get_info(2, 0x7fc68dca6708) = 0 -43938904724219:43938904724837 26086:26086 hsa_system_get_info(2, 0x7fc68dca6710) = 0 -43938904725584:43938904726201 26086:26086 hsa_system_get_info(2, 0x7fc68dca6718) = 0 -43938904726950:43938904727570 26086:26086 hsa_system_get_info(2, 0x7fc68dca6720) = 0 -43938904728318:43938904728939 26086:26086 hsa_system_get_info(2, 0x7fc68dca6728) = 0 -43938904729691:43938904730312 26086:26086 hsa_system_get_info(2, 0x7fc68dca6730) = 0 -43938904731062:43938904731677 26086:26086 hsa_system_get_info(2, 0x7fc68dca6738) = 0 -43938904732430:43938904733056 26086:26086 hsa_system_get_info(2, 0x7fc68dca6740) = 0 -43938904734503:43938904735129 26086:26086 hsa_system_get_info(2, 0x7fc68dca6748) = 0 -43938904735877:43938904736499 26086:26086 hsa_system_get_info(2, 0x7fc68dca6750) = 0 -43938904737251:43938904737876 26086:26086 hsa_system_get_info(2, 0x7fc68dca6758) = 0 -43938904738624:43938904739240 26086:26086 hsa_system_get_info(2, 0x7fc68dca6760) = 0 -43938904739990:43938904740610 26086:26086 hsa_system_get_info(2, 0x7fc68dca6768) = 0 -43938904741360:43938904741977 26086:26086 hsa_system_get_info(2, 0x7fc68dca6770) = 0 -43938904742722:43938904743342 26086:26086 hsa_system_get_info(2, 0x7fc68dca6778) = 0 -43938904744090:43938904744710 26086:26086 hsa_system_get_info(2, 0x7fc68dca6780) = 0 -43938904745460:43938904746079 26086:26086 hsa_system_get_info(2, 0x7fc68dca6788) = 0 -43938904746826:43938904747444 26086:26086 hsa_system_get_info(2, 0x7fc68dca6790) = 0 -43938904748194:43938904748814 26086:26086 hsa_system_get_info(2, 0x7fc68dca6798) = 0 -43938904749562:43938904750186 26086:26086 hsa_system_get_info(2, 0x7fc68dca67a0) = 0 -43938904750933:43938904751552 26086:26086 hsa_system_get_info(2, 0x7fc68dca67a8) = 0 -43938904752299:43938904752935 26086:26086 hsa_system_get_info(2, 0x7fc68dca67b0) = 0 -43938904753684:43938904754306 26086:26086 hsa_system_get_info(2, 0x7fc68dca67b8) = 0 -43938904755054:43938904755677 26086:26086 hsa_system_get_info(2, 0x7fc68dca67c0) = 0 -43938904756424:43938904757047 26086:26086 hsa_system_get_info(2, 0x7fc68dca67c8) = 0 -43938904757798:43938904758419 26086:26086 hsa_system_get_info(2, 0x7fc68dca67d0) = 0 -43938904759169:43938904759789 26086:26086 hsa_system_get_info(2, 0x7fc68dca67d8) = 0 -43938904760536:43938904761157 26086:26086 hsa_system_get_info(2, 0x7fc68dca67e0) = 0 -43938904761904:43938904762520 26086:26086 hsa_system_get_info(2, 0x7fc68dca67e8) = 0 -43938904763268:43938904763886 26086:26086 hsa_system_get_info(2, 0x7fc68dca67f0) = 0 -43938904764636:43938904765251 26086:26086 hsa_system_get_info(2, 0x7fc68dca67f8) = 0 -43938904766000:43938904766617 26086:26086 hsa_system_get_info(2, 0x7fc68dca6800) = 0 -43938904767365:43938904767982 26086:26086 hsa_system_get_info(2, 0x7fc68dca6808) = 0 -43938904768735:43938904769353 26086:26086 hsa_system_get_info(2, 0x7fc68dca6810) = 0 -43938904770105:43938904770725 26086:26086 hsa_system_get_info(2, 0x7fc68dca6818) = 0 -43938904771470:43938904772096 26086:26086 hsa_system_get_info(2, 0x7fc68dca6820) = 0 -43938904772859:43938904773476 26086:26086 hsa_system_get_info(2, 0x7fc68dca6828) = 0 -43938904774936:43938904775561 26086:26086 hsa_system_get_info(2, 0x7fc68dca6830) = 0 -43938904776327:43938904776948 26086:26086 hsa_system_get_info(2, 0x7fc68dca6838) = 0 -43938904777700:43938904778314 26086:26086 hsa_system_get_info(2, 0x7fc68dca6840) = 0 -43938904779063:43938904779680 26086:26086 hsa_system_get_info(2, 0x7fc68dca6848) = 0 -43938904780430:43938904781051 26086:26086 hsa_system_get_info(2, 0x7fc68dca6850) = 0 -43938904781802:43938904782417 26086:26086 hsa_system_get_info(2, 0x7fc68dca6858) = 0 -43938904783167:43938904783780 26086:26086 hsa_system_get_info(2, 0x7fc68dca6860) = 0 -43938904784528:43938904785146 26086:26086 hsa_system_get_info(2, 0x7fc68dca6868) = 0 -43938904785896:43938904786514 26086:26086 hsa_system_get_info(2, 0x7fc68dca6870) = 0 -43938904787262:43938904787878 26086:26086 hsa_system_get_info(2, 0x7fc68dca6878) = 0 -43938904788624:43938904789247 26086:26086 hsa_system_get_info(2, 0x7fc68dca6880) = 0 -43938904789994:43938904790616 26086:26086 hsa_system_get_info(2, 0x7fc68dca6888) = 0 -43938904791365:43938904791982 26086:26086 hsa_system_get_info(2, 0x7fc68dca6890) = 0 -43938904792732:43938904793351 26086:26086 hsa_system_get_info(2, 0x7fc68dca6898) = 0 -43938904794100:43938904794717 26086:26086 hsa_system_get_info(2, 0x7fc68dca68a0) = 0 -43938904795464:43938904796089 26086:26086 hsa_system_get_info(2, 0x7fc68dca68a8) = 0 -43938904796855:43938904797474 26086:26086 hsa_system_get_info(2, 0x7fc68dca68b0) = 0 -43938904798224:43938904798841 26086:26086 hsa_system_get_info(2, 0x7fc68dca68b8) = 0 -43938904799595:43938904800215 26086:26086 hsa_system_get_info(2, 0x7fc68dca68c0) = 0 -43938904800966:43938904801594 26086:26086 hsa_system_get_info(2, 0x7fc68dca68c8) = 0 -43938904802343:43938904802963 26086:26086 hsa_system_get_info(2, 0x7fc68dca68d0) = 0 -43938904803711:43938904804332 26086:26086 hsa_system_get_info(2, 0x7fc68dca68d8) = 0 -43938904805082:43938904805700 26086:26086 hsa_system_get_info(2, 0x7fc68dca68e0) = 0 -43938904806449:43938904807067 26086:26086 hsa_system_get_info(2, 0x7fc68dca68e8) = 0 -43938904807815:43938904808437 26086:26086 hsa_system_get_info(2, 0x7fc68dca68f0) = 0 -43938904809181:43938904809801 26086:26086 hsa_system_get_info(2, 0x7fc68dca68f8) = 0 -43938904810550:43938904811168 26086:26086 hsa_system_get_info(2, 0x7fc68dca6900) = 0 -43938904811914:43938904812531 26086:26086 hsa_system_get_info(2, 0x7fc68dca6908) = 0 -43938904813987:43938904814609 26086:26086 hsa_system_get_info(2, 0x7fc68dca6910) = 0 -43938904815355:43938904815972 26086:26086 hsa_system_get_info(2, 0x7fc68dca6918) = 0 -43938904816722:43938904817342 26086:26086 hsa_system_get_info(2, 0x7fc68dca6920) = 0 -43938904818090:43938904818715 26086:26086 hsa_system_get_info(2, 0x7fc68dca6928) = 0 -43938904819465:43938904820088 26086:26086 hsa_system_get_info(2, 0x7fc68dca6930) = 0 -43938904820834:43938904821459 26086:26086 hsa_system_get_info(2, 0x7fc68dca6938) = 0 -43938904822212:43938904822833 26086:26086 hsa_system_get_info(2, 0x7fc68dca6940) = 0 -43938904823579:43938904824200 26086:26086 hsa_system_get_info(2, 0x7fc68dca6948) = 0 -43938904824949:43938904825577 26086:26086 hsa_system_get_info(2, 0x7fc68dca6950) = 0 -43938904826328:43938904826945 26086:26086 hsa_system_get_info(2, 0x7fc68dca6958) = 0 -43938904827693:43938904828316 26086:26086 hsa_system_get_info(2, 0x7fc68dca6960) = 0 -43938904829068:43938904829687 26086:26086 hsa_system_get_info(2, 0x7fc68dca6968) = 0 -43938904830437:43938904831054 26086:26086 hsa_system_get_info(2, 0x7fc68dca6970) = 0 -43938904831803:43938904832435 26086:26086 hsa_system_get_info(2, 0x7fc68dca6978) = 0 -43938904833185:43938904833806 26086:26086 hsa_system_get_info(2, 0x7fc68dca6980) = 0 -43938904834555:43938904835172 26086:26086 hsa_system_get_info(2, 0x7fc68dca6988) = 0 -43938904835920:43938904836536 26086:26086 hsa_system_get_info(2, 0x7fc68dca6990) = 0 -43938904837286:43938904837908 26086:26086 hsa_system_get_info(2, 0x7fc68dca6998) = 0 -43938904838656:43938904839279 26086:26086 hsa_system_get_info(2, 0x7fc68dca69a0) = 0 -43938904840030:43938904840649 26086:26086 hsa_system_get_info(2, 0x7fc68dca69a8) = 0 -43938904841399:43938904842024 26086:26086 hsa_system_get_info(2, 0x7fc68dca69b0) = 0 -43938904842770:43938904843390 26086:26086 hsa_system_get_info(2, 0x7fc68dca69b8) = 0 -43938904844139:43938904844761 26086:26086 hsa_system_get_info(2, 0x7fc68dca69c0) = 0 -43938904845510:43938904846128 26086:26086 hsa_system_get_info(2, 0x7fc68dca69c8) = 0 -43938904846877:43938904847499 26086:26086 hsa_system_get_info(2, 0x7fc68dca69d0) = 0 -43938904848251:43938904848871 26086:26086 hsa_system_get_info(2, 0x7fc68dca69d8) = 0 -43938904849621:43938904850243 26086:26086 hsa_system_get_info(2, 0x7fc68dca69e0) = 0 -43938904850992:43938904851614 26086:26086 hsa_system_get_info(2, 0x7fc68dca69e8) = 0 -43938904852375:43938904853000 26086:26086 hsa_system_get_info(2, 0x7fc68dca69f0) = 0 -43938904854555:43938904855188 26086:26086 hsa_system_get_info(2, 0x7fc68dca69f8) = 0 -43938904855939:43938904856568 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a00) = 0 -43938904857320:43938904857944 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a08) = 0 -43938904858695:43938904859323 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a10) = 0 -43938904860074:43938904860698 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a18) = 0 -43938904861450:43938904862070 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a20) = 0 -43938904862821:43938904863443 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a28) = 0 -43938904864193:43938904864814 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a30) = 0 -43938904865564:43938904866185 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a38) = 0 -43938904866935:43938904867562 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a40) = 0 -43938904868328:43938904868951 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a48) = 0 -43938904869703:43938904870325 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a50) = 0 -43938904871075:43938904871695 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a58) = 0 -43938904872443:43938904873065 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a60) = 0 -43938904873815:43938904874434 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a68) = 0 -43938904875184:43938904875803 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a70) = 0 -43938904876548:43938904877169 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a78) = 0 -43938904877920:43938904878538 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a80) = 0 -43938904879299:43938904879925 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a88) = 0 -43938904880672:43938904881299 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a90) = 0 -43938904882051:43938904882678 26086:26086 hsa_system_get_info(2, 0x7fc68dca6a98) = 0 -43938904883427:43938904884048 26086:26086 hsa_system_get_info(2, 0x7fc68dca6aa0) = 0 -43938904884798:43938904885418 26086:26086 hsa_system_get_info(2, 0x7fc68dca6aa8) = 0 -43938904886173:43938904886801 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ab0) = 0 -43938904887585:43938904888207 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ab8) = 0 -43938904888955:43938904889575 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ac0) = 0 -43938904890324:43938904890939 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ac8) = 0 -43938904891688:43938904892307 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ad0) = 0 -43938904893829:43938904894465 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ad8) = 0 -43938904895216:43938904895836 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ae0) = 0 -43938904896585:43938904897201 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ae8) = 0 -43938904897950:43938904898573 26086:26086 hsa_system_get_info(2, 0x7fc68dca6af0) = 0 -43938904899326:43938904899942 26086:26086 hsa_system_get_info(2, 0x7fc68dca6af8) = 0 -43938904900689:43938904901313 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b00) = 0 -43938904902064:43938904902692 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b08) = 0 -43938904903443:43938904904063 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b10) = 0 -43938904904812:43938904905436 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b18) = 0 -43938904906182:43938904906801 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b20) = 0 -43938904907551:43938904908169 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b28) = 0 -43938904908918:43938904909535 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b30) = 0 -43938904910283:43938904910903 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b38) = 0 -43938904911651:43938904912270 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b40) = 0 -43938904913031:43938904913649 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b48) = 0 -43938904914398:43938904915017 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b50) = 0 -43938904915766:43938904916384 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b58) = 0 -43938904917133:43938904917754 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b60) = 0 -43938904918504:43938904919121 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b68) = 0 -43938904919865:43938904920482 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b70) = 0 -43938904921231:43938904921851 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b78) = 0 -43938904922600:43938904923220 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b80) = 0 -43938904923972:43938904924595 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b88) = 0 -43938904925343:43938904925973 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b90) = 0 -43938904926730:43938904927348 26086:26086 hsa_system_get_info(2, 0x7fc68dca6b98) = 0 -43938904928099:43938904928720 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ba0) = 0 -43938904929467:43938904930089 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ba8) = 0 -43938904930837:43938904931461 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bb0) = 0 -43938904932226:43938904932842 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bb8) = 0 -43938904934292:43938904934919 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bc0) = 0 -43938904935664:43938904936291 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bc8) = 0 -43938904937038:43938904937664 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bd0) = 0 -43938904938413:43938904939039 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bd8) = 0 -43938904939787:43938904940420 26086:26086 hsa_system_get_info(2, 0x7fc68dca6be0) = 0 -43938904941170:43938904941796 26086:26086 hsa_system_get_info(2, 0x7fc68dca6be8) = 0 -43938904942545:43938904943167 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bf0) = 0 -43938904943919:43938904944546 26086:26086 hsa_system_get_info(2, 0x7fc68dca6bf8) = 0 -43938904945297:43938904945918 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c00) = 0 -43938904946667:43938904947287 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c08) = 0 -43938904948038:43938904948660 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c10) = 0 -43938904949408:43938904950031 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c18) = 0 -43938904950799:43938904951424 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c20) = 0 -43938904952172:43938904952793 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c28) = 0 -43938904953542:43938904954163 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c30) = 0 -43938904954912:43938904955530 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c38) = 0 -43938904956291:43938904956913 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c40) = 0 -43938904957662:43938904958284 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c48) = 0 -43938904959033:43938904959654 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c50) = 0 -43938904960403:43938904961028 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c58) = 0 -43938904961778:43938904962390 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c60) = 0 -43938904963135:43938904963751 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c68) = 0 -43938904964500:43938904965119 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c70) = 0 -43938904965869:43938904966487 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c78) = 0 -43938904967249:43938904967870 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c80) = 0 -43938904968623:43938904969241 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c88) = 0 -43938904969991:43938904970615 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c90) = 0 -43938904971365:43938904971986 26086:26086 hsa_system_get_info(2, 0x7fc68dca6c98) = 0 -43938904973452:43938904974085 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ca0) = 0 -43938904974834:43938904975460 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ca8) = 0 -43938904976207:43938904976833 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cb0) = 0 -43938904977581:43938904978204 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cb8) = 0 -43938904978954:43938904979573 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cc0) = 0 -43938904980319:43938904980947 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cc8) = 0 -43938904981699:43938904982317 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cd0) = 0 -43938904983067:43938904983686 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cd8) = 0 -43938904984433:43938904985051 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ce0) = 0 -43938904985801:43938904986423 26086:26086 hsa_system_get_info(2, 0x7fc68dca6ce8) = 0 -43938904987193:43938904987817 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cf0) = 0 -43938904988565:43938904989188 26086:26086 hsa_system_get_info(2, 0x7fc68dca6cf8) = 0 -43938904989933:43938904990555 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d00) = 0 -43938904991304:43938904991929 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d08) = 0 -43938904992677:43938904993294 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d10) = 0 -43938904994042:43938904994664 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d18) = 0 -43938904995416:43938904996037 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d20) = 0 -43938904996786:43938904997404 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d28) = 0 -43938904998156:43938904998775 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d30) = 0 -43938904999524:43938905000142 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d38) = 0 -43938905000891:43938905001509 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d40) = 0 -43938905002257:43938905002878 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d48) = 0 -43938905003626:43938905004247 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d50) = 0 -43938905004998:43938905005639 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d58) = 0 -43938905006390:43938905007010 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d60) = 0 -43938905007764:43938905008379 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d68) = 0 -43938905009131:43938905009753 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d70) = 0 -43938905010503:43938905011128 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d78) = 0 -43938905011884:43938905012504 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d80) = 0 -43938905014560:43938905015190 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d88) = 0 -43938905015961:43938905016585 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d90) = 0 -43938905017332:43938905017955 26086:26086 hsa_system_get_info(2, 0x7fc68dca6d98) = 0 -43938905018702:43938905019325 26086:26086 hsa_system_get_info(2, 0x7fc68dca6da0) = 0 -43938905020072:43938905020692 26086:26086 hsa_system_get_info(2, 0x7fc68dca6da8) = 0 -43938905021440:43938905022059 26086:26086 hsa_system_get_info(2, 0x7fc68dca6db0) = 0 -43938905022804:43938905023429 26086:26086 hsa_system_get_info(2, 0x7fc68dca6db8) = 0 -43938905024181:43938905024805 26086:26086 hsa_system_get_info(2, 0x7fc68dca6dc0) = 0 -43938905025556:43938905026174 26086:26086 hsa_system_get_info(2, 0x7fc68dca6dc8) = 0 -43938905026925:43938905027543 26086:26086 hsa_system_get_info(2, 0x7fc68dca6dd0) = 0 -43938905028296:43938905028915 26086:26086 hsa_system_get_info(2, 0x7fc68dca6dd8) = 0 -43938905029665:43938905030282 26086:26086 hsa_system_get_info(2, 0x7fc68dca6de0) = 0 -43938905031029:43938905031649 26086:26086 hsa_system_get_info(2, 0x7fc68dca6de8) = 0 -43938905032396:43938905033016 26086:26086 hsa_system_get_info(2, 0x7fc68dca6df0) = 0 -43938905033766:43938905034381 26086:26086 hsa_system_get_info(2, 0x7fc68dca6df8) = 0 -43938905035128:43938905035746 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e00) = 0 -43938905036510:43938905037130 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e08) = 0 -43938905037881:43938905038501 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e10) = 0 -43938905039249:43938905039867 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e18) = 0 -43938905040612:43938905041230 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e20) = 0 -43938905041982:43938905042605 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e28) = 0 -43938905043361:43938905043986 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e30) = 0 -43938905044736:43938905045362 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e38) = 0 -43938905046111:43938905046728 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e40) = 0 -43938905047482:43938905048098 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e48) = 0 -43938905048846:43938905049463 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e50) = 0 -43938905050215:43938905050829 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e58) = 0 -43938905051580:43938905052206 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e60) = 0 -43938905053675:43938905054302 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e68) = 0 -43938905055077:43938905055706 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e70) = 0 -43938905056461:43938905057089 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e78) = 0 -43938905057841:43938905058459 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e80) = 0 -43938905059208:43938905059832 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e88) = 0 -43938905060579:43938905061201 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e90) = 0 -43938905061951:43938905062573 26086:26086 hsa_system_get_info(2, 0x7fc68dca6e98) = 0 -43938905326949:43938911557871 26086:26091 hsa_queue_create(, , , 0, 0, , , ) = 0 -43939189530234:43939189533202 26086:26091 hsa_signal_create(1, , 0, 0x7fc634002190) = 0 -43939189567727:43939189587617 26086:26091 hsa_code_object_reader_create_from_file(7, 0x7fc689f98b70) = 0 -43939189588813:43939189596519 26086:26091 hsa_executable_create_alt(1, 0, -43939189597514:43939189750707 26086:26091 hsa_executable_load_agent_code_object(, , , -43939189752889:43939189889592 26086:26091 hsa_executable_freeze(, ) = 0 -43939189890968:43939189892392 26086:26091 hsa_executable_get_symbol(, -43939189899247:43939189899810 26086:26091 hsa_executable_symbol_get_info(, 13, 0x7fc689f98bd0) = 0 -43939189900627:43939189900981 26086:26091 hsa_executable_symbol_get_info(, 14, 0x7fc689f98bd4) = 0 -43939189912972:43939189913406 26086:26091 hsa_executable_symbol_get_info(, 22, 0x7fc689f98be0) = 0 -43939189915866:43939189916344 26086:26091 hsa_signal_store_relaxed(, 1) = void -43939189924130:43939189924969 26086:26091 hsa_queue_load_write_index_relaxed(0x2421000) = 0 -43939189926058:43939189926649 26086:26091 hsa_queue_store_write_index_relaxed(0x2421000, ) = void -43939189927811:43939189928345 26086:26091 hsa_queue_load_read_index_relaxed(0x2421000) = 0 -43939189931129:43939189931996 26086:26091 hsa_signal_store_relaxed(, 0) = void -43939189947661:43939189948388 26086:26091 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43939190016817:43939190053550 26086:26091 hsa_executable_destroy() = 0 -43939190054760:43939190056006 26086:26091 hsa_signal_destroy() = 0 -43939468014346:43939468015082 26086:26091 hsa_signal_create(1, , 0, 0x7fc634002190) = 0 -43939468023006:43939468039445 26086:26091 hsa_code_object_reader_create_from_file(8, 0x7fc689f98b60) = 0 -43939468040482:43939468041650 26086:26091 hsa_executable_create_alt(1, 0, -43939468043766:43939468118495 26086:26091 hsa_executable_load_agent_code_object(, , , -43939468120062:43939468139621 26086:26091 hsa_executable_freeze(, ) = 0 -43939468140624:43939468141841 26086:26091 hsa_executable_get_symbol(, -43939468143811:43939468171528 26086:26091 hsa_amd_memory_pool_allocate(, , , 0x7fc689f98ba0) = 0 -43939468172551:43939468193591 26086:26091 hsa_amd_agents_allow_access(, 0x7fc689f98bb0, 0, 0x801b18000) = 0 -43939468195069:43939468196055 26086:26091 hsa_amd_memory_pool_allocate(, , , 0x7fc689f98ba8) = 0 -43939468197026:43939468205099 26086:26091 hsa_amd_memory_pool_allocate(, , , 0x7fc689f98ba0) = 0 -43939468205947:43939468213321 26086:26091 hsa_amd_agents_allow_access(, 0x7fc689f98bb0, 0, 0x801b01000) = 0 -43939468214340:43939468214810 26086:26091 hsa_executable_symbol_get_info(, 11, 0x7fc689f98c00) = 0 -43939468215682:43939468222815 26086:26091 hsa_amd_memory_pool_allocate(, , , 0x7fc689f98ba0) = 0 -43939468223649:43939468230864 26086:26091 hsa_amd_agents_allow_access(, 0x7fc689f98bb0, 0, 0x243f000) = 0 -43939468681739:43939468682141 26086:26091 hsa_executable_symbol_get_info(, 13, 0x7fc689f98bc0) = 0 -43939468683042:43939468683393 26086:26091 hsa_executable_symbol_get_info(, 14, 0x7fc689f98bc4) = 0 -43939468684136:43939468684561 26086:26091 hsa_executable_symbol_get_info(, 22, 0x7fc689f98bd0) = 0 -43939468695823:43939468696284 26086:26091 hsa_signal_store_relaxed(, 1) = void -43939468701460:43939468702104 26086:26091 hsa_queue_load_write_index_relaxed(0x2421000) = 1 -43939468703177:43939468703718 26086:26091 hsa_queue_store_write_index_relaxed(0x2421000, ) = void -43939468704617:43939468705031 26086:26091 hsa_queue_load_read_index_relaxed(0x2421000) = 1 -43939468705929:43939468706517 26086:26091 hsa_signal_store_relaxed(, 1) = void -43939468711313:43939468726363 26086:26091 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43939468731752:43939468744534 26086:26091 hsa_amd_memory_pool_allocate(, , , 0x7fc689f98be0) = 0 -43939468745527:43939468756171 26086:26091 hsa_amd_agents_allow_access(, 0x7fc689f98bf0, 0, 0x801b30000) = 0 -43939468757498:43939468759176 26086:26091 hsa_signal_create(1, , 0, 0x7fc689f98b90) = 0 -43939468766595:43939468767146 26086:26091 hsa_agent_get_info(, 17, 0x7fc689f98640) = 0 -43939468769167:43939468769772 26086:26091 hsa_amd_memory_pool_get_info(, 0, 0x7fc689f984c0) = 0 -43939468779651:43939468780021 26086:26091 hsa_amd_memory_pool_get_info(, 1, 0x7fc689f984c4) = 0 -43939468780883:43939468781223 26086:26091 hsa_amd_memory_pool_get_info(, 0, 0x7fc689f984c0) = 0 -43939468782008:43939468782346 26086:26091 hsa_amd_memory_pool_get_info(, 1, 0x7fc689f984c4) = 0 -43939468782008:43939468783133 26086:26091 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fc634006d60) = 1 -43939468785405:43939468785743 26086:26091 hsa_amd_memory_pool_get_info(, 0, 0x7fc689f984c0) = 0 -43939468786489:43939468786825 26086:26091 hsa_amd_memory_pool_get_info(, 1, 0x7fc689f984c4) = 0 -43939468786489:43939468787567 26086:26091 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fc634006d70) = 1 -43939468812510:43939468812938 26086:26091 hsa_agent_get_info(, 17, 0x7fc689f98640) = 0 -43939468813851:43939468817115 26086:26091 hsa_agent_get_info(, 0, 0x7fc634006df4) = 0 -43939468819412:43939468819794 26086:26091 hsa_agent_get_info(, 6, 0x7fc634006e34) = 0 -43939468820596:43939468821009 26086:26091 hsa_agent_get_info(, 14, 0x7fc634006e38) = 0 -43939468821800:43939468822156 26086:26091 hsa_agent_get_info(, 4, 0x7fc634006e3c) = 0 -43939468822917:43939468823278 26086:26091 hsa_agent_get_info(, 40962, 0x7fc634006e58) = 0 -43939468824052:43939468824418 26086:26091 hsa_agent_get_info(, 40970, 0x7fc634006e5c) = 0 -43939468825180:43939468825589 26086:26091 hsa_agent_get_info(, 40971, 0x7fc634006e60) = 0 -43939468835277:43939468835644 26086:26091 hsa_agent_get_info(, 40972, 0x7fc634006e64) = 0 -43939468836417:43939468836762 26086:26091 hsa_agent_get_info(, 40973, 0x7fc634006e68) = 0 -43939468838084:43939468838429 26086:26091 hsa_amd_memory_pool_get_info(, 0, 0x7fc689f984b0) = 0 -43939468839180:43939468839532 26086:26091 hsa_amd_memory_pool_get_info(, 1, 0x7fc689f984b4) = 0 -43939468839180:43939468840281 26086:26091 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fc634006e48) = 1 -43939468839180:43939468844488 26086:26091 hsa_iterate_agents(1, 0x7fc634006b70) = 0 -43939468845569:43939468858976 26086:26091 hsa_system_get_major_extension_table(, , , 0x7fc634006c08) = 0 -43939468859827:43939468860185 26086:26091 hsa_system_get_major_extension_table(, , , 0x7fc634006c58) = 0 -43939468861257:43939468861609 26086:26091 hsa_system_get_info(3, 0x7fc689f987b8) = 0 -43939468874710:43939468875393 26086:26091 hsa_system_get_info(2, 0x7fc63400f020) = 0 -43939468877562:43939468878202 26086:26091 hsa_system_get_info(2, 0x7fc63400f028) = 0 -43939468879002:43939468879625 26086:26091 hsa_system_get_info(2, 0x7fc63400f030) = 0 -43939468880384:43939468881010 26086:26091 hsa_system_get_info(2, 0x7fc63400f038) = 0 -43939468881769:43939468882394 26086:26091 hsa_system_get_info(2, 0x7fc63400f040) = 0 -43939468883147:43939468883771 26086:26091 hsa_system_get_info(2, 0x7fc63400f048) = 0 -43939468884527:43939468885151 26086:26091 hsa_system_get_info(2, 0x7fc63400f050) = 0 -43939468885921:43939468886546 26086:26091 hsa_system_get_info(2, 0x7fc63400f058) = 0 -43939468888192:43939468888832 26086:26091 hsa_system_get_info(2, 0x7fc63400f060) = 0 -43939468889594:43939468890223 26086:26091 hsa_system_get_info(2, 0x7fc63400f068) = 0 -43939468890984:43939468891615 26086:26091 hsa_system_get_info(2, 0x7fc63400f070) = 0 -43939468892374:43939468893001 26086:26091 hsa_system_get_info(2, 0x7fc63400f078) = 0 -43939468893762:43939468894391 26086:26091 hsa_system_get_info(2, 0x7fc63400f080) = 0 -43939468895157:43939468895785 26086:26091 hsa_system_get_info(2, 0x7fc63400f088) = 0 -43939468896544:43939468897174 26086:26091 hsa_system_get_info(2, 0x7fc63400f090) = 0 -43939468897929:43939468898556 26086:26091 hsa_system_get_info(2, 0x7fc63400f098) = 0 -43939468899334:43939468899965 26086:26091 hsa_system_get_info(2, 0x7fc63400f0a0) = 0 -43939468900726:43939468901355 26086:26091 hsa_system_get_info(2, 0x7fc63400f0a8) = 0 -43939468902119:43939468902745 26086:26091 hsa_system_get_info(2, 0x7fc63400f0b0) = 0 -43939468903513:43939468904143 26086:26091 hsa_system_get_info(2, 0x7fc63400f0b8) = 0 -43939468904914:43939468905540 26086:26091 hsa_system_get_info(2, 0x7fc63400f0c0) = 0 -43939468906302:43939468906935 26086:26091 hsa_system_get_info(2, 0x7fc63400f0c8) = 0 -43939468907696:43939468908321 26086:26091 hsa_system_get_info(2, 0x7fc63400f0d0) = 0 -43939468909082:43939468909711 26086:26091 hsa_system_get_info(2, 0x7fc63400f0d8) = 0 -43939468910473:43939468911104 26086:26091 hsa_system_get_info(2, 0x7fc63400f0e0) = 0 -43939468911866:43939468912488 26086:26091 hsa_system_get_info(2, 0x7fc63400f0e8) = 0 -43939468913247:43939468913884 26086:26091 hsa_system_get_info(2, 0x7fc63400f0f0) = 0 -43939468914646:43939468915278 26086:26091 hsa_system_get_info(2, 0x7fc63400f0f8) = 0 -43939468916043:43939468916678 26086:26091 hsa_system_get_info(2, 0x7fc63400f100) = 0 -43939468917440:43939468918071 26086:26091 hsa_system_get_info(2, 0x7fc63400f108) = 0 -43939468918845:43939468919468 26086:26091 hsa_system_get_info(2, 0x7fc63400f110) = 0 -43939468920228:43939468920861 26086:26091 hsa_system_get_info(2, 0x7fc63400f118) = 0 -43939468921624:43939468922257 26086:26091 hsa_system_get_info(2, 0x7fc63400f120) = 0 -43939468923017:43939468923642 26086:26091 hsa_system_get_info(2, 0x7fc63400f128) = 0 -43939468924418:43939468925044 26086:26091 hsa_system_get_info(2, 0x7fc63400f130) = 0 -43939468925805:43939468926429 26086:26091 hsa_system_get_info(2, 0x7fc63400f138) = 0 -43939468927191:43939468927814 26086:26091 hsa_system_get_info(2, 0x7fc63400f140) = 0 -43939468929384:43939468930014 26086:26091 hsa_system_get_info(2, 0x7fc63400f148) = 0 -43939468930773:43939468931399 26086:26091 hsa_system_get_info(2, 0x7fc63400f150) = 0 -43939468932157:43939468932784 26086:26091 hsa_system_get_info(2, 0x7fc63400f158) = 0 -43939468933544:43939468934170 26086:26091 hsa_system_get_info(2, 0x7fc63400f160) = 0 -43939468934929:43939468935559 26086:26091 hsa_system_get_info(2, 0x7fc63400f168) = 0 -43939468936319:43939468936950 26086:26091 hsa_system_get_info(2, 0x7fc63400f170) = 0 -43939468937713:43939468938346 26086:26091 hsa_system_get_info(2, 0x7fc63400f178) = 0 -43939468939108:43939468939733 26086:26091 hsa_system_get_info(2, 0x7fc63400f180) = 0 -43939468940493:43939468941122 26086:26091 hsa_system_get_info(2, 0x7fc63400f188) = 0 -43939468941881:43939468942504 26086:26091 hsa_system_get_info(2, 0x7fc63400f190) = 0 -43939468943266:43939468943894 26086:26091 hsa_system_get_info(2, 0x7fc63400f198) = 0 -43939468944655:43939468945287 26086:26091 hsa_system_get_info(2, 0x7fc63400f1a0) = 0 -43939468946057:43939468946684 26086:26091 hsa_system_get_info(2, 0x7fc63400f1a8) = 0 -43939468947463:43939468948103 26086:26091 hsa_system_get_info(2, 0x7fc63400f1b0) = 0 -43939468948869:43939468949499 26086:26091 hsa_system_get_info(2, 0x7fc63400f1b8) = 0 -43939468950263:43939468950896 26086:26091 hsa_system_get_info(2, 0x7fc63400f1c0) = 0 -43939468951654:43939468952280 26086:26091 hsa_system_get_info(2, 0x7fc63400f1c8) = 0 -43939468953038:43939468953670 26086:26091 hsa_system_get_info(2, 0x7fc63400f1d0) = 0 -43939468954449:43939468955073 26086:26091 hsa_system_get_info(2, 0x7fc63400f1d8) = 0 -43939468955829:43939468956456 26086:26091 hsa_system_get_info(2, 0x7fc63400f1e0) = 0 -43939468957218:43939468957842 26086:26091 hsa_system_get_info(2, 0x7fc63400f1e8) = 0 -43939468958603:43939468959228 26086:26091 hsa_system_get_info(2, 0x7fc63400f1f0) = 0 -43939468959988:43939468960616 26086:26091 hsa_system_get_info(2, 0x7fc63400f1f8) = 0 -43939468961373:43939468961994 26086:26091 hsa_system_get_info(2, 0x7fc63400f200) = 0 -43939468962755:43939468963383 26086:26091 hsa_system_get_info(2, 0x7fc63400f208) = 0 -43939468964137:43939468964764 26086:26091 hsa_system_get_info(2, 0x7fc63400f210) = 0 -43939468965527:43939468966149 26086:26091 hsa_system_get_info(2, 0x7fc63400f218) = 0 -43939468966909:43939468967539 26086:26091 hsa_system_get_info(2, 0x7fc63400f220) = 0 -43939468969025:43939468969660 26086:26091 hsa_system_get_info(2, 0x7fc63400f228) = 0 -43939468970419:43939468971047 26086:26091 hsa_system_get_info(2, 0x7fc63400f230) = 0 -43939468971807:43939468972427 26086:26091 hsa_system_get_info(2, 0x7fc63400f238) = 0 -43939468973188:43939468973812 26086:26091 hsa_system_get_info(2, 0x7fc63400f240) = 0 -43939468974573:43939468975190 26086:26091 hsa_system_get_info(2, 0x7fc63400f248) = 0 -43939468975949:43939468976579 26086:26091 hsa_system_get_info(2, 0x7fc63400f250) = 0 -43939468977338:43939468977964 26086:26091 hsa_system_get_info(2, 0x7fc63400f258) = 0 -43939468978724:43939468979360 26086:26091 hsa_system_get_info(2, 0x7fc63400f260) = 0 -43939468980117:43939468980743 26086:26091 hsa_system_get_info(2, 0x7fc63400f268) = 0 -43939468981504:43939468982136 26086:26091 hsa_system_get_info(2, 0x7fc63400f270) = 0 -43939468982898:43939468983524 26086:26091 hsa_system_get_info(2, 0x7fc63400f278) = 0 -43939468984300:43939468984930 26086:26091 hsa_system_get_info(2, 0x7fc63400f280) = 0 -43939468985701:43939468986321 26086:26091 hsa_system_get_info(2, 0x7fc63400f288) = 0 -43939468987087:43939468987718 26086:26091 hsa_system_get_info(2, 0x7fc63400f290) = 0 -43939468988480:43939468989108 26086:26091 hsa_system_get_info(2, 0x7fc63400f298) = 0 -43939468989868:43939468990492 26086:26091 hsa_system_get_info(2, 0x7fc63400f2a0) = 0 -43939468991252:43939468991874 26086:26091 hsa_system_get_info(2, 0x7fc63400f2a8) = 0 -43939468992637:43939468993267 26086:26091 hsa_system_get_info(2, 0x7fc63400f2b0) = 0 -43939468994031:43939468994654 26086:26091 hsa_system_get_info(2, 0x7fc63400f2b8) = 0 -43939468995411:43939468996042 26086:26091 hsa_system_get_info(2, 0x7fc63400f2c0) = 0 -43939468996804:43939468997427 26086:26091 hsa_system_get_info(2, 0x7fc63400f2c8) = 0 -43939468998190:43939468998816 26086:26091 hsa_system_get_info(2, 0x7fc63400f2d0) = 0 -43939468999576:43939469000204 26086:26091 hsa_system_get_info(2, 0x7fc63400f2d8) = 0 -43939469000963:43939469001589 26086:26091 hsa_system_get_info(2, 0x7fc63400f2e0) = 0 -43939469002349:43939469002977 26086:26091 hsa_system_get_info(2, 0x7fc63400f2e8) = 0 -43939469003748:43939469004371 26086:26091 hsa_system_get_info(2, 0x7fc63400f2f0) = 0 -43939469005134:43939469005759 26086:26091 hsa_system_get_info(2, 0x7fc63400f2f8) = 0 -43939469006525:43939469007148 26086:26091 hsa_system_get_info(2, 0x7fc63400f300) = 0 -43939469007911:43939469008540 26086:26091 hsa_system_get_info(2, 0x7fc63400f308) = 0 -43939469010783:43939469011421 26086:26091 hsa_system_get_info(2, 0x7fc63400f310) = 0 -43939469012185:43939469012810 26086:26091 hsa_system_get_info(2, 0x7fc63400f318) = 0 -43939469013574:43939469014196 26086:26091 hsa_system_get_info(2, 0x7fc63400f320) = 0 -43939469014957:43939469015591 26086:26091 hsa_system_get_info(2, 0x7fc63400f328) = 0 -43939469016363:43939469016995 26086:26091 hsa_system_get_info(2, 0x7fc63400f330) = 0 -43939469017755:43939469018387 26086:26091 hsa_system_get_info(2, 0x7fc63400f338) = 0 -43939469019148:43939469019770 26086:26091 hsa_system_get_info(2, 0x7fc63400f340) = 0 -43939469020530:43939469021153 26086:26091 hsa_system_get_info(2, 0x7fc63400f348) = 0 -43939469021917:43939469022541 26086:26091 hsa_system_get_info(2, 0x7fc63400f350) = 0 -43939469023305:43939469023929 26086:26091 hsa_system_get_info(2, 0x7fc63400f358) = 0 -43939469024699:43939469025329 26086:26091 hsa_system_get_info(2, 0x7fc63400f360) = 0 -43939469026090:43939469026712 26086:26091 hsa_system_get_info(2, 0x7fc63400f368) = 0 -43939469027473:43939469028099 26086:26091 hsa_system_get_info(2, 0x7fc63400f370) = 0 -43939469028860:43939469029490 26086:26091 hsa_system_get_info(2, 0x7fc63400f378) = 0 -43939469030252:43939469030883 26086:26091 hsa_system_get_info(2, 0x7fc63400f380) = 0 -43939469031645:43939469032267 26086:26091 hsa_system_get_info(2, 0x7fc63400f388) = 0 -43939469033032:43939469033658 26086:26091 hsa_system_get_info(2, 0x7fc63400f390) = 0 -43939469034434:43939469035066 26086:26091 hsa_system_get_info(2, 0x7fc63400f398) = 0 -43939469035833:43939469036465 26086:26091 hsa_system_get_info(2, 0x7fc63400f3a0) = 0 -43939469037234:43939469037866 26086:26091 hsa_system_get_info(2, 0x7fc63400f3a8) = 0 -43939469038647:43939469039285 26086:26091 hsa_system_get_info(2, 0x7fc63400f3b0) = 0 -43939469040046:43939469040671 26086:26091 hsa_system_get_info(2, 0x7fc63400f3b8) = 0 -43939469041428:43939469042058 26086:26091 hsa_system_get_info(2, 0x7fc63400f3c0) = 0 -43939469042818:43939469043447 26086:26091 hsa_system_get_info(2, 0x7fc63400f3c8) = 0 -43939469044212:43939469044841 26086:26091 hsa_system_get_info(2, 0x7fc63400f3d0) = 0 -43939469045599:43939469046225 26086:26091 hsa_system_get_info(2, 0x7fc63400f3d8) = 0 -43939469047005:43939469047635 26086:26091 hsa_system_get_info(2, 0x7fc63400f3e0) = 0 -43939469048395:43939469049030 26086:26091 hsa_system_get_info(2, 0x7fc63400f3e8) = 0 -43939469050516:43939469051146 26086:26091 hsa_system_get_info(2, 0x7fc63400f3f0) = 0 -43939469051908:43939469052544 26086:26091 hsa_system_get_info(2, 0x7fc63400f3f8) = 0 -43939469053307:43939469053937 26086:26091 hsa_system_get_info(2, 0x7fc63400f400) = 0 -43939469054704:43939469055331 26086:26091 hsa_system_get_info(2, 0x7fc63400f408) = 0 -43939469056090:43939469056711 26086:26091 hsa_system_get_info(2, 0x7fc63400f410) = 0 -43939469057469:43939469058098 26086:26091 hsa_system_get_info(2, 0x7fc63400f418) = 0 -43939469058859:43939469059489 26086:26091 hsa_system_get_info(2, 0x7fc63400f420) = 0 -43939469060263:43939469060894 26086:26091 hsa_system_get_info(2, 0x7fc63400f428) = 0 -43939469061653:43939469062279 26086:26091 hsa_system_get_info(2, 0x7fc63400f430) = 0 -43939469063038:43939469063665 26086:26091 hsa_system_get_info(2, 0x7fc63400f438) = 0 -43939469064424:43939469065060 26086:26091 hsa_system_get_info(2, 0x7fc63400f440) = 0 -43939469065824:43939469066454 26086:26091 hsa_system_get_info(2, 0x7fc63400f448) = 0 -43939469067215:43939469067846 26086:26091 hsa_system_get_info(2, 0x7fc63400f450) = 0 -43939469068614:43939469069243 26086:26091 hsa_system_get_info(2, 0x7fc63400f458) = 0 -43939469070004:43939469070633 26086:26091 hsa_system_get_info(2, 0x7fc63400f460) = 0 -43939469071396:43939469072024 26086:26091 hsa_system_get_info(2, 0x7fc63400f468) = 0 -43939469072785:43939469073408 26086:26091 hsa_system_get_info(2, 0x7fc63400f470) = 0 -43939469074165:43939469074790 26086:26091 hsa_system_get_info(2, 0x7fc63400f478) = 0 -43939469075551:43939469076181 26086:26091 hsa_system_get_info(2, 0x7fc63400f480) = 0 -43939469076937:43939469077560 26086:26091 hsa_system_get_info(2, 0x7fc63400f488) = 0 -43939469078336:43939469078960 26086:26091 hsa_system_get_info(2, 0x7fc63400f490) = 0 -43939469079720:43939469080350 26086:26091 hsa_system_get_info(2, 0x7fc63400f498) = 0 -43939469081113:43939469081742 26086:26091 hsa_system_get_info(2, 0x7fc63400f4a0) = 0 -43939469082505:43939469083135 26086:26091 hsa_system_get_info(2, 0x7fc63400f4a8) = 0 -43939469083897:43939469084527 26086:26091 hsa_system_get_info(2, 0x7fc63400f4b0) = 0 -43939469085286:43939469085921 26086:26091 hsa_system_get_info(2, 0x7fc63400f4b8) = 0 -43939469086682:43939469087314 26086:26091 hsa_system_get_info(2, 0x7fc63400f4c0) = 0 -43939469088079:43939469088703 26086:26091 hsa_system_get_info(2, 0x7fc63400f4c8) = 0 -43939469089460:43939469090094 26086:26091 hsa_system_get_info(2, 0x7fc63400f4d0) = 0 -43939469091576:43939469092206 26086:26091 hsa_system_get_info(2, 0x7fc63400f4d8) = 0 -43939469092968:43939469093597 26086:26091 hsa_system_get_info(2, 0x7fc63400f4e0) = 0 -43939469094356:43939469094978 26086:26091 hsa_system_get_info(2, 0x7fc63400f4e8) = 0 -43939469095737:43939469096363 26086:26091 hsa_system_get_info(2, 0x7fc63400f4f0) = 0 -43939469097139:43939469097768 26086:26091 hsa_system_get_info(2, 0x7fc63400f4f8) = 0 -43939469098528:43939469099158 26086:26091 hsa_system_get_info(2, 0x7fc63400f500) = 0 -43939469099915:43939469100542 26086:26091 hsa_system_get_info(2, 0x7fc63400f508) = 0 -43939469101305:43939469101932 26086:26091 hsa_system_get_info(2, 0x7fc63400f510) = 0 -43939469102694:43939469103324 26086:26091 hsa_system_get_info(2, 0x7fc63400f518) = 0 -43939469104084:43939469104707 26086:26091 hsa_system_get_info(2, 0x7fc63400f520) = 0 -43939469105474:43939469106102 26086:26091 hsa_system_get_info(2, 0x7fc63400f528) = 0 -43939469106879:43939469107508 26086:26091 hsa_system_get_info(2, 0x7fc63400f530) = 0 -43939469108274:43939469108899 26086:26091 hsa_system_get_info(2, 0x7fc63400f538) = 0 -43939469109659:43939469110281 26086:26091 hsa_system_get_info(2, 0x7fc63400f540) = 0 -43939469111038:43939469111667 26086:26091 hsa_system_get_info(2, 0x7fc63400f548) = 0 -43939469112433:43939469113070 26086:26091 hsa_system_get_info(2, 0x7fc63400f550) = 0 -43939469113831:43939469114462 26086:26091 hsa_system_get_info(2, 0x7fc63400f558) = 0 -43939469115222:43939469115870 26086:26091 hsa_system_get_info(2, 0x7fc63400f560) = 0 -43939469116633:43939469117265 26086:26091 hsa_system_get_info(2, 0x7fc63400f568) = 0 -43939469118026:43939469118653 26086:26091 hsa_system_get_info(2, 0x7fc63400f570) = 0 -43939469119426:43939469120055 26086:26091 hsa_system_get_info(2, 0x7fc63400f578) = 0 -43939469120816:43939469121444 26086:26091 hsa_system_get_info(2, 0x7fc63400f580) = 0 -43939469122203:43939469122834 26086:26091 hsa_system_get_info(2, 0x7fc63400f588) = 0 -43939469123588:43939469124220 26086:26091 hsa_system_get_info(2, 0x7fc63400f590) = 0 -43939469124984:43939469125609 26086:26091 hsa_system_get_info(2, 0x7fc63400f598) = 0 -43939469126368:43939469127000 26086:26091 hsa_system_get_info(2, 0x7fc63400f5a0) = 0 -43939469127762:43939469128399 26086:26091 hsa_system_get_info(2, 0x7fc63400f5a8) = 0 -43939469129161:43939469129798 26086:26091 hsa_system_get_info(2, 0x7fc63400f5b0) = 0 -43939469131278:43939469131913 26086:26091 hsa_system_get_info(2, 0x7fc63400f5b8) = 0 -43939469132678:43939469133308 26086:26091 hsa_system_get_info(2, 0x7fc63400f5c0) = 0 -43939469134065:43939469134682 26086:26091 hsa_system_get_info(2, 0x7fc63400f5c8) = 0 -43939469135444:43939469136070 26086:26091 hsa_system_get_info(2, 0x7fc63400f5d0) = 0 -43939469136831:43939469137454 26086:26091 hsa_system_get_info(2, 0x7fc63400f5d8) = 0 -43939469138214:43939469138838 26086:26091 hsa_system_get_info(2, 0x7fc63400f5e0) = 0 -43939469139603:43939469140235 26086:26091 hsa_system_get_info(2, 0x7fc63400f5e8) = 0 -43939469140999:43939469141629 26086:26091 hsa_system_get_info(2, 0x7fc63400f5f0) = 0 -43939469142388:43939469143016 26086:26091 hsa_system_get_info(2, 0x7fc63400f5f8) = 0 -43939469143775:43939469144404 26086:26091 hsa_system_get_info(2, 0x7fc63400f600) = 0 -43939469145167:43939469145791 26086:26091 hsa_system_get_info(2, 0x7fc63400f608) = 0 -43939469146586:43939469147218 26086:26091 hsa_system_get_info(2, 0x7fc63400f610) = 0 -43939469147987:43939469148619 26086:26091 hsa_system_get_info(2, 0x7fc63400f618) = 0 -43939469149379:43939469150002 26086:26091 hsa_system_get_info(2, 0x7fc63400f620) = 0 -43939469150762:43939469151385 26086:26091 hsa_system_get_info(2, 0x7fc63400f628) = 0 -43939469152149:43939469152781 26086:26091 hsa_system_get_info(2, 0x7fc63400f630) = 0 -43939469153543:43939469154177 26086:26091 hsa_system_get_info(2, 0x7fc63400f638) = 0 -43939469154935:43939469155558 26086:26091 hsa_system_get_info(2, 0x7fc63400f640) = 0 -43939469156316:43939469156947 26086:26091 hsa_system_get_info(2, 0x7fc63400f648) = 0 -43939469157712:43939469158337 26086:26091 hsa_system_get_info(2, 0x7fc63400f650) = 0 -43939469159099:43939469159728 26086:26091 hsa_system_get_info(2, 0x7fc63400f658) = 0 -43939469160488:43939469161117 26086:26091 hsa_system_get_info(2, 0x7fc63400f660) = 0 -43939469161879:43939469162501 26086:26091 hsa_system_get_info(2, 0x7fc63400f668) = 0 -43939469163265:43939469163897 26086:26091 hsa_system_get_info(2, 0x7fc63400f670) = 0 -43939469164653:43939469165280 26086:26091 hsa_system_get_info(2, 0x7fc63400f678) = 0 -43939469166060:43939469166695 26086:26091 hsa_system_get_info(2, 0x7fc63400f680) = 0 -43939469167455:43939469168084 26086:26091 hsa_system_get_info(2, 0x7fc63400f688) = 0 -43939469168844:43939469169479 26086:26091 hsa_system_get_info(2, 0x7fc63400f690) = 0 -43939469170975:43939469171607 26086:26091 hsa_system_get_info(2, 0x7fc63400f698) = 0 -43939469172370:43939469172995 26086:26091 hsa_system_get_info(2, 0x7fc63400f6a0) = 0 -43939469173757:43939469174387 26086:26091 hsa_system_get_info(2, 0x7fc63400f6a8) = 0 -43939469175146:43939469175775 26086:26091 hsa_system_get_info(2, 0x7fc63400f6b0) = 0 -43939469176539:43939469177169 26086:26091 hsa_system_get_info(2, 0x7fc63400f6b8) = 0 -43939469177927:43939469178559 26086:26091 hsa_system_get_info(2, 0x7fc63400f6c0) = 0 -43939469179319:43939469179951 26086:26091 hsa_system_get_info(2, 0x7fc63400f6c8) = 0 -43939469180709:43939469181341 26086:26091 hsa_system_get_info(2, 0x7fc63400f6d0) = 0 -43939469182099:43939469182726 26086:26091 hsa_system_get_info(2, 0x7fc63400f6d8) = 0 -43939469183483:43939469184108 26086:26091 hsa_system_get_info(2, 0x7fc63400f6e0) = 0 -43939469184864:43939469185485 26086:26091 hsa_system_get_info(2, 0x7fc63400f6e8) = 0 -43939469186253:43939469186881 26086:26091 hsa_system_get_info(2, 0x7fc63400f6f0) = 0 -43939469187664:43939469188301 26086:26091 hsa_system_get_info(2, 0x7fc63400f6f8) = 0 -43939469189077:43939469189704 26086:26091 hsa_system_get_info(2, 0x7fc63400f700) = 0 -43939469190472:43939469191096 26086:26091 hsa_system_get_info(2, 0x7fc63400f708) = 0 -43939469191857:43939469192484 26086:26091 hsa_system_get_info(2, 0x7fc63400f710) = 0 -43939469193245:43939469193875 26086:26091 hsa_system_get_info(2, 0x7fc63400f718) = 0 -43939469194635:43939469195264 26086:26091 hsa_system_get_info(2, 0x7fc63400f720) = 0 -43939469196021:43939469196648 26086:26091 hsa_system_get_info(2, 0x7fc63400f728) = 0 -43939469197415:43939469198039 26086:26091 hsa_system_get_info(2, 0x7fc63400f730) = 0 -43939469198802:43939469199433 26086:26091 hsa_system_get_info(2, 0x7fc63400f738) = 0 -43939469200197:43939469200828 26086:26091 hsa_system_get_info(2, 0x7fc63400f740) = 0 -43939469201588:43939469202218 26086:26091 hsa_system_get_info(2, 0x7fc63400f748) = 0 -43939469202979:43939469203611 26086:26091 hsa_system_get_info(2, 0x7fc63400f750) = 0 -43939469204370:43939469204994 26086:26091 hsa_system_get_info(2, 0x7fc63400f758) = 0 -43939469205750:43939469206377 26086:26091 hsa_system_get_info(2, 0x7fc63400f760) = 0 -43939469207137:43939469207777 26086:26091 hsa_system_get_info(2, 0x7fc63400f768) = 0 -43939469208534:43939469209162 26086:26091 hsa_system_get_info(2, 0x7fc63400f770) = 0 -43939469209925:43939469210553 26086:26091 hsa_system_get_info(2, 0x7fc63400f778) = 0 -43939469212033:43939469212670 26086:26091 hsa_system_get_info(2, 0x7fc63400f780) = 0 -43939469213431:43939469214059 26086:26091 hsa_system_get_info(2, 0x7fc63400f788) = 0 -43939469214820:43939469215448 26086:26091 hsa_system_get_info(2, 0x7fc63400f790) = 0 -43939469216211:43939469216838 26086:26091 hsa_system_get_info(2, 0x7fc63400f798) = 0 -43939469217594:43939469218230 26086:26091 hsa_system_get_info(2, 0x7fc63400f7a0) = 0 -43939469218989:43939469219612 26086:26091 hsa_system_get_info(2, 0x7fc63400f7a8) = 0 -43939469220372:43939469221002 26086:26091 hsa_system_get_info(2, 0x7fc63400f7b0) = 0 -43939469221762:43939469222390 26086:26091 hsa_system_get_info(2, 0x7fc63400f7b8) = 0 -43939469223167:43939469223802 26086:26091 hsa_system_get_info(2, 0x7fc63400f7c0) = 0 -43939469224560:43939469225188 26086:26091 hsa_system_get_info(2, 0x7fc63400f7c8) = 0 -43939469225947:43939469226577 26086:26091 hsa_system_get_info(2, 0x7fc63400f7d0) = 0 -43939469227336:43939469227965 26086:26091 hsa_system_get_info(2, 0x7fc63400f7d8) = 0 -43939469228728:43939469229356 26086:26091 hsa_system_get_info(2, 0x7fc63400f7e0) = 0 -43939469230120:43939469230747 26086:26091 hsa_system_get_info(2, 0x7fc63400f7e8) = 0 -43939469231509:43939469232140 26086:26091 hsa_system_get_info(2, 0x7fc63400f7f0) = 0 -43939469232903:43939469233530 26086:26091 hsa_system_get_info(2, 0x7fc63400f7f8) = 0 -43939469234286:43939469234911 26086:26091 hsa_system_get_info(2, 0x7fc63400f800) = 0 -43939469235679:43939469236303 26086:26091 hsa_system_get_info(2, 0x7fc63400f808) = 0 -43939469237068:43939469237700 26086:26091 hsa_system_get_info(2, 0x7fc63400f810) = 0 -43939469238463:43939469239094 26086:26091 hsa_system_get_info(2, 0x7fc63400f818) = 0 -43939469239853:43939469240485 26086:26091 hsa_system_get_info(2, 0x7fc63400f820) = 0 -43939469241246:43939469241895 26086:26091 hsa_system_get_info(2, 0x7fc63400f828) = 0 -43939469242655:43939469243285 26086:26091 hsa_system_get_info(2, 0x7fc63400f830) = 0 -43939469244046:43939469244672 26086:26091 hsa_system_get_info(2, 0x7fc63400f838) = 0 -43939469245434:43939469246059 26086:26091 hsa_system_get_info(2, 0x7fc63400f840) = 0 -43939469246821:43939469247449 26086:26091 hsa_system_get_info(2, 0x7fc63400f848) = 0 -43939469248211:43939469248841 26086:26091 hsa_system_get_info(2, 0x7fc63400f850) = 0 -43939469249609:43939469250246 26086:26091 hsa_system_get_info(2, 0x7fc63400f858) = 0 -43939469251779:43939469252413 26086:26091 hsa_system_get_info(2, 0x7fc63400f860) = 0 -43939469253178:43939469253801 26086:26091 hsa_system_get_info(2, 0x7fc63400f868) = 0 -43939469254568:43939469255203 26086:26091 hsa_system_get_info(2, 0x7fc63400f870) = 0 -43939469255964:43939469256592 26086:26091 hsa_system_get_info(2, 0x7fc63400f878) = 0 -43939469257355:43939469257983 26086:26091 hsa_system_get_info(2, 0x7fc63400f880) = 0 -43939469258743:43939469259367 26086:26091 hsa_system_get_info(2, 0x7fc63400f888) = 0 -43939469260126:43939469260752 26086:26091 hsa_system_get_info(2, 0x7fc63400f890) = 0 -43939469261512:43939469262139 26086:26091 hsa_system_get_info(2, 0x7fc63400f898) = 0 -43939469262896:43939469263527 26086:26091 hsa_system_get_info(2, 0x7fc63400f8a0) = 0 -43939469264280:43939469264909 26086:26091 hsa_system_get_info(2, 0x7fc63400f8a8) = 0 -43939469265676:43939469266307 26086:26091 hsa_system_get_info(2, 0x7fc63400f8b0) = 0 -43939469267076:43939469267700 26086:26091 hsa_system_get_info(2, 0x7fc63400f8b8) = 0 -43939469268469:43939469269113 26086:26091 hsa_system_get_info(2, 0x7fc63400f8c0) = 0 -43939469269873:43939469270503 26086:26091 hsa_system_get_info(2, 0x7fc63400f8c8) = 0 -43939469271262:43939469271893 26086:26091 hsa_system_get_info(2, 0x7fc63400f8d0) = 0 -43939469272649:43939469273280 26086:26091 hsa_system_get_info(2, 0x7fc63400f8d8) = 0 -43939469274043:43939469274673 26086:26091 hsa_system_get_info(2, 0x7fc63400f8e0) = 0 -43939469275432:43939469276061 26086:26091 hsa_system_get_info(2, 0x7fc63400f8e8) = 0 -43939469276824:43939469277462 26086:26091 hsa_system_get_info(2, 0x7fc63400f8f0) = 0 -43939469278223:43939469278846 26086:26091 hsa_system_get_info(2, 0x7fc63400f8f8) = 0 -43939469279605:43939469280227 26086:26091 hsa_system_get_info(2, 0x7fc63400f900) = 0 -43939469280988:43939469281616 26086:26091 hsa_system_get_info(2, 0x7fc63400f908) = 0 -43939469282375:43939469283001 26086:26091 hsa_system_get_info(2, 0x7fc63400f910) = 0 -43939469283762:43939469284392 26086:26091 hsa_system_get_info(2, 0x7fc63400f918) = 0 -43939469285153:43939469285779 26086:26091 hsa_system_get_info(2, 0x7fc63400f920) = 0 -43939469286543:43939469287172 26086:26091 hsa_system_get_info(2, 0x7fc63400f928) = 0 -43939469287949:43939469288582 26086:26091 hsa_system_get_info(2, 0x7fc63400f930) = 0 -43939469289364:43939469289989 26086:26091 hsa_system_get_info(2, 0x7fc63400f938) = 0 -43939469290751:43939469291382 26086:26091 hsa_system_get_info(2, 0x7fc63400f940) = 0 -43939469292854:43939469293486 26086:26091 hsa_system_get_info(2, 0x7fc63400f948) = 0 -43939469294246:43939469294874 26086:26091 hsa_system_get_info(2, 0x7fc63400f950) = 0 -43939469295634:43939469296267 26086:26091 hsa_system_get_info(2, 0x7fc63400f958) = 0 -43939469297030:43939469297663 26086:26091 hsa_system_get_info(2, 0x7fc63400f960) = 0 -43939469298423:43939469299053 26086:26091 hsa_system_get_info(2, 0x7fc63400f968) = 0 -43939469299818:43939469300455 26086:26091 hsa_system_get_info(2, 0x7fc63400f970) = 0 -43939469301215:43939469301848 26086:26091 hsa_system_get_info(2, 0x7fc63400f978) = 0 -43939469302613:43939469303243 26086:26091 hsa_system_get_info(2, 0x7fc63400f980) = 0 -43939469304001:43939469304632 26086:26091 hsa_system_get_info(2, 0x7fc63400f988) = 0 -43939469305394:43939469306022 26086:26091 hsa_system_get_info(2, 0x7fc63400f990) = 0 -43939469306790:43939469307422 26086:26091 hsa_system_get_info(2, 0x7fc63400f998) = 0 -43939469308183:43939469308825 26086:26091 hsa_system_get_info(2, 0x7fc63400f9a0) = 0 -43939469309587:43939469310217 26086:26091 hsa_system_get_info(2, 0x7fc63400f9a8) = 0 -43939469310992:43939469311622 26086:26091 hsa_system_get_info(2, 0x7fc63400f9b0) = 0 -43939469312383:43939469313012 26086:26091 hsa_system_get_info(2, 0x7fc63400f9b8) = 0 -43939469313773:43939469314413 26086:26091 hsa_system_get_info(2, 0x7fc63400f9c0) = 0 -43939469315175:43939469315798 26086:26091 hsa_system_get_info(2, 0x7fc63400f9c8) = 0 -43939469316556:43939469317194 26086:26091 hsa_system_get_info(2, 0x7fc63400f9d0) = 0 -43939469317951:43939469318579 26086:26091 hsa_system_get_info(2, 0x7fc63400f9d8) = 0 -43939469319337:43939469319965 26086:26091 hsa_system_get_info(2, 0x7fc63400f9e0) = 0 -43939469320721:43939469321347 26086:26091 hsa_system_get_info(2, 0x7fc63400f9e8) = 0 -43939469322106:43939469322733 26086:26091 hsa_system_get_info(2, 0x7fc63400f9f0) = 0 -43939469323497:43939469324123 26086:26091 hsa_system_get_info(2, 0x7fc63400f9f8) = 0 -43939469324881:43939469325505 26086:26091 hsa_system_get_info(2, 0x7fc63400fa00) = 0 -43939469326266:43939469326897 26086:26091 hsa_system_get_info(2, 0x7fc63400fa08) = 0 -43939469327660:43939469328283 26086:26091 hsa_system_get_info(2, 0x7fc63400fa10) = 0 -43939469329042:43939469329692 26086:26091 hsa_system_get_info(2, 0x7fc63400fa18) = 0 -43939469330451:43939469331077 26086:26091 hsa_system_get_info(2, 0x7fc63400fa20) = 0 -43939469332566:43939469333198 26086:26091 hsa_system_get_info(2, 0x7fc63400fa28) = 0 -43939469333957:43939469334579 26086:26091 hsa_system_get_info(2, 0x7fc63400fa30) = 0 -43939469335337:43939469335969 26086:26091 hsa_system_get_info(2, 0x7fc63400fa38) = 0 -43939469336729:43939469337353 26086:26091 hsa_system_get_info(2, 0x7fc63400fa40) = 0 -43939469338129:43939469338759 26086:26091 hsa_system_get_info(2, 0x7fc63400fa48) = 0 -43939469339521:43939469340149 26086:26091 hsa_system_get_info(2, 0x7fc63400fa50) = 0 -43939469340910:43939469341543 26086:26091 hsa_system_get_info(2, 0x7fc63400fa58) = 0 -43939469342305:43939469342934 26086:26091 hsa_system_get_info(2, 0x7fc63400fa60) = 0 -43939469343696:43939469344332 26086:26091 hsa_system_get_info(2, 0x7fc63400fa68) = 0 -43939469345094:43939469345727 26086:26091 hsa_system_get_info(2, 0x7fc63400fa70) = 0 -43939469346487:43939469347105 26086:26091 hsa_system_get_info(2, 0x7fc63400fa78) = 0 -43939469347872:43939469348504 26086:26091 hsa_system_get_info(2, 0x7fc63400fa80) = 0 -43939469349265:43939469349892 26086:26091 hsa_system_get_info(2, 0x7fc63400fa88) = 0 -43939469350649:43939469351281 26086:26091 hsa_system_get_info(2, 0x7fc63400fa90) = 0 -43939469352045:43939469352677 26086:26091 hsa_system_get_info(2, 0x7fc63400fa98) = 0 -43939469353439:43939469354066 26086:26091 hsa_system_get_info(2, 0x7fc63400faa0) = 0 -43939469354825:43939469355453 26086:26091 hsa_system_get_info(2, 0x7fc63400faa8) = 0 -43939469356213:43939469356841 26086:26091 hsa_system_get_info(2, 0x7fc63400fab0) = 0 -43939469357620:43939469358248 26086:26091 hsa_system_get_info(2, 0x7fc63400fab8) = 0 -43939469359005:43939469359633 26086:26091 hsa_system_get_info(2, 0x7fc63400fac0) = 0 -43939469360395:43939469361021 26086:26091 hsa_system_get_info(2, 0x7fc63400fac8) = 0 -43939469361776:43939469362402 26086:26091 hsa_system_get_info(2, 0x7fc63400fad0) = 0 -43939469363165:43939469363791 26086:26091 hsa_system_get_info(2, 0x7fc63400fad8) = 0 -43939469364554:43939469365182 26086:26091 hsa_system_get_info(2, 0x7fc63400fae0) = 0 -43939469365942:43939469366574 26086:26091 hsa_system_get_info(2, 0x7fc63400fae8) = 0 -43939469367333:43939469367965 26086:26091 hsa_system_get_info(2, 0x7fc63400faf0) = 0 -43939469368728:43939469369349 26086:26091 hsa_system_get_info(2, 0x7fc63400faf8) = 0 -43939469370109:43939469370730 26086:26091 hsa_system_get_info(2, 0x7fc63400fb00) = 0 -43939469371491:43939469372125 26086:26091 hsa_system_get_info(2, 0x7fc63400fb08) = 0 -43939469374724:43939469375367 26086:26091 hsa_system_get_info(2, 0x7fc63400fb10) = 0 -43939469376133:43939469376769 26086:26091 hsa_system_get_info(2, 0x7fc63400fb18) = 0 -43939469377530:43939469378159 26086:26091 hsa_system_get_info(2, 0x7fc63400fb20) = 0 -43939469378921:43939469379550 26086:26091 hsa_system_get_info(2, 0x7fc63400fb28) = 0 -43939469380310:43939469380940 26086:26091 hsa_system_get_info(2, 0x7fc63400fb30) = 0 -43939469381695:43939469382322 26086:26091 hsa_system_get_info(2, 0x7fc63400fb38) = 0 -43939469383078:43939469383709 26086:26091 hsa_system_get_info(2, 0x7fc63400fb40) = 0 -43939469384472:43939469385099 26086:26091 hsa_system_get_info(2, 0x7fc63400fb48) = 0 -43939469385860:43939469386481 26086:26091 hsa_system_get_info(2, 0x7fc63400fb50) = 0 -43939469387237:43939469387861 26086:26091 hsa_system_get_info(2, 0x7fc63400fb58) = 0 -43939469388631:43939469389259 26086:26091 hsa_system_get_info(2, 0x7fc63400fb60) = 0 -43939469390036:43939469390667 26086:26091 hsa_system_get_info(2, 0x7fc63400fb68) = 0 -43939469391430:43939469392083 26086:26091 hsa_system_get_info(2, 0x7fc63400fb70) = 0 -43939469392841:43939469393469 26086:26091 hsa_system_get_info(2, 0x7fc63400fb78) = 0 -43939469394228:43939469394853 26086:26091 hsa_system_get_info(2, 0x7fc63400fb80) = 0 -43939469395620:43939469396252 26086:26091 hsa_system_get_info(2, 0x7fc63400fb88) = 0 -43939469397013:43939469397642 26086:26091 hsa_system_get_info(2, 0x7fc63400fb90) = 0 -43939469398404:43939469399041 26086:26091 hsa_system_get_info(2, 0x7fc63400fb98) = 0 -43939469399795:43939469400419 26086:26091 hsa_system_get_info(2, 0x7fc63400fba0) = 0 -43939469401185:43939469401817 26086:26091 hsa_system_get_info(2, 0x7fc63400fba8) = 0 -43939469402577:43939469403206 26086:26091 hsa_system_get_info(2, 0x7fc63400fbb0) = 0 -43939469403964:43939469404594 26086:26091 hsa_system_get_info(2, 0x7fc63400fbb8) = 0 -43939469405349:43939469405981 26086:26091 hsa_system_get_info(2, 0x7fc63400fbc0) = 0 -43939469406742:43939469407373 26086:26091 hsa_system_get_info(2, 0x7fc63400fbc8) = 0 -43939469408133:43939469408769 26086:26091 hsa_system_get_info(2, 0x7fc63400fbd0) = 0 -43939469409547:43939469410178 26086:26091 hsa_system_get_info(2, 0x7fc63400fbd8) = 0 -43939469410938:43939469411569 26086:26091 hsa_system_get_info(2, 0x7fc63400fbe0) = 0 -43939469412334:43939469412956 26086:26091 hsa_system_get_info(2, 0x7fc63400fbe8) = 0 -43939469414464:43939469415100 26086:26091 hsa_system_get_info(2, 0x7fc63400fbf0) = 0 -43939469415860:43939469416483 26086:26091 hsa_system_get_info(2, 0x7fc63400fbf8) = 0 -43939469417244:43939469417872 26086:26091 hsa_system_get_info(2, 0x7fc63400fc00) = 0 -43939469418632:43939469419256 26086:26091 hsa_system_get_info(2, 0x7fc63400fc08) = 0 -43939469420016:43939469420648 26086:26091 hsa_system_get_info(2, 0x7fc63400fc10) = 0 -43939469421414:43939469422036 26086:26091 hsa_system_get_info(2, 0x7fc63400fc18) = 0 -43939469422798:43939469423435 26086:26091 hsa_system_get_info(2, 0x7fc63400fc20) = 0 -43939469424198:43939469424832 26086:26091 hsa_system_get_info(2, 0x7fc63400fc28) = 0 -43939469425589:43939469426219 26086:26091 hsa_system_get_info(2, 0x7fc63400fc30) = 0 -43939469426977:43939469427600 26086:26091 hsa_system_get_info(2, 0x7fc63400fc38) = 0 -43939469428359:43939469428985 26086:26091 hsa_system_get_info(2, 0x7fc63400fc40) = 0 -43939469429750:43939469430371 26086:26091 hsa_system_get_info(2, 0x7fc63400fc48) = 0 -43939469431132:43939469431759 26086:26091 hsa_system_get_info(2, 0x7fc63400fc50) = 0 -43939469432532:43939469433163 26086:26091 hsa_system_get_info(2, 0x7fc63400fc58) = 0 -43939469433924:43939469434551 26086:26091 hsa_system_get_info(2, 0x7fc63400fc60) = 0 -43939469435312:43939469435943 26086:26091 hsa_system_get_info(2, 0x7fc63400fc68) = 0 -43939469436704:43939469437330 26086:26091 hsa_system_get_info(2, 0x7fc63400fc70) = 0 -43939469438095:43939469438727 26086:26091 hsa_system_get_info(2, 0x7fc63400fc78) = 0 -43939469439489:43939469440118 26086:26091 hsa_system_get_info(2, 0x7fc63400fc80) = 0 -43939469440877:43939469441498 26086:26091 hsa_system_get_info(2, 0x7fc63400fc88) = 0 -43939469442276:43939469442901 26086:26091 hsa_system_get_info(2, 0x7fc63400fc90) = 0 -43939469443661:43939469444288 26086:26091 hsa_system_get_info(2, 0x7fc63400fc98) = 0 -43939469445050:43939469445672 26086:26091 hsa_system_get_info(2, 0x7fc63400fca0) = 0 -43939469446431:43939469447062 26086:26091 hsa_system_get_info(2, 0x7fc63400fca8) = 0 -43939469447825:43939469448462 26086:26091 hsa_system_get_info(2, 0x7fc63400fcb0) = 0 -43939469449227:43939469449857 26086:26091 hsa_system_get_info(2, 0x7fc63400fcb8) = 0 -43939469450617:43939469451244 26086:26091 hsa_system_get_info(2, 0x7fc63400fcc0) = 0 -43939469452002:43939469452625 26086:26091 hsa_system_get_info(2, 0x7fc63400fcc8) = 0 -43939469453397:43939469454017 26086:26091 hsa_system_get_info(2, 0x7fc63400fcd0) = 0 -43939469455561:43939469456195 26086:26091 hsa_system_get_info(2, 0x7fc63400fcd8) = 0 -43939469456958:43939469457585 26086:26091 hsa_system_get_info(2, 0x7fc63400fce0) = 0 -43939469458350:43939469458978 26086:26091 hsa_system_get_info(2, 0x7fc63400fce8) = 0 -43939469459742:43939469460368 26086:26091 hsa_system_get_info(2, 0x7fc63400fcf0) = 0 -43939469461127:43939469461758 26086:26091 hsa_system_get_info(2, 0x7fc63400fcf8) = 0 -43939469462520:43939469463153 26086:26091 hsa_system_get_info(2, 0x7fc63400fd00) = 0 -43939469463913:43939469464542 26086:26091 hsa_system_get_info(2, 0x7fc63400fd08) = 0 -43939469465305:43939469465935 26086:26091 hsa_system_get_info(2, 0x7fc63400fd10) = 0 -43939469466697:43939469467324 26086:26091 hsa_system_get_info(2, 0x7fc63400fd18) = 0 -43939469468084:43939469468713 26086:26091 hsa_system_get_info(2, 0x7fc63400fd20) = 0 -43939469469481:43939469470107 26086:26091 hsa_system_get_info(2, 0x7fc63400fd28) = 0 -43939469470887:43939469471510 26086:26091 hsa_system_get_info(2, 0x7fc63400fd30) = 0 -43939469472283:43939469472914 26086:26091 hsa_system_get_info(2, 0x7fc63400fd38) = 0 -43939469473688:43939469474320 26086:26091 hsa_system_get_info(2, 0x7fc63400fd40) = 0 -43939469475079:43939469475707 26086:26091 hsa_system_get_info(2, 0x7fc63400fd48) = 0 -43939469476469:43939469477096 26086:26091 hsa_system_get_info(2, 0x7fc63400fd50) = 0 -43939469477860:43939469478491 26086:26091 hsa_system_get_info(2, 0x7fc63400fd58) = 0 -43939469479251:43939469479880 26086:26091 hsa_system_get_info(2, 0x7fc63400fd60) = 0 -43939469480641:43939469481265 26086:26091 hsa_system_get_info(2, 0x7fc63400fd68) = 0 -43939469482023:43939469482644 26086:26091 hsa_system_get_info(2, 0x7fc63400fd70) = 0 -43939469483406:43939469484033 26086:26091 hsa_system_get_info(2, 0x7fc63400fd78) = 0 -43939469484792:43939469485424 26086:26091 hsa_system_get_info(2, 0x7fc63400fd80) = 0 -43939469486185:43939469486815 26086:26091 hsa_system_get_info(2, 0x7fc63400fd88) = 0 -43939469487576:43939469488199 26086:26091 hsa_system_get_info(2, 0x7fc63400fd90) = 0 -43939469488959:43939469489589 26086:26091 hsa_system_get_info(2, 0x7fc63400fd98) = 0 -43939469490353:43939469490978 26086:26091 hsa_system_get_info(2, 0x7fc63400fda0) = 0 -43939469491739:43939469492365 26086:26091 hsa_system_get_info(2, 0x7fc63400fda8) = 0 -43939469493136:43939469493765 26086:26091 hsa_system_get_info(2, 0x7fc63400fdb0) = 0 -43939469495239:43939469495874 26086:26091 hsa_system_get_info(2, 0x7fc63400fdb8) = 0 -43939469496640:43939469497265 26086:26091 hsa_system_get_info(2, 0x7fc63400fdc0) = 0 -43939469498022:43939469498650 26086:26091 hsa_system_get_info(2, 0x7fc63400fdc8) = 0 -43939469499408:43939469500034 26086:26091 hsa_system_get_info(2, 0x7fc63400fdd0) = 0 -43939469500792:43939469501422 26086:26091 hsa_system_get_info(2, 0x7fc63400fdd8) = 0 -43939469502182:43939469502804 26086:26091 hsa_system_get_info(2, 0x7fc63400fde0) = 0 -43939469503565:43939469504194 26086:26091 hsa_system_get_info(2, 0x7fc63400fde8) = 0 -43939469504952:43939469505583 26086:26091 hsa_system_get_info(2, 0x7fc63400fdf0) = 0 -43939469506348:43939469506969 26086:26091 hsa_system_get_info(2, 0x7fc63400fdf8) = 0 -43939469507728:43939469508356 26086:26091 hsa_system_get_info(2, 0x7fc63400fe00) = 0 -43939469509131:43939469509765 26086:26091 hsa_system_get_info(2, 0x7fc63400fe08) = 0 -43939469510532:43939469511161 26086:26091 hsa_system_get_info(2, 0x7fc63400fe10) = 0 -43939469511942:43939469512569 26086:26091 hsa_system_get_info(2, 0x7fc63400fe18) = 0 -43939469513329:43939469513952 26086:26091 hsa_system_get_info(2, 0x7fc63400fe20) = 0 -43939469514714:43939469515349 26086:26091 hsa_system_get_info(2, 0x7fc63400fe28) = 0 -43939469516105:43939469516738 26086:26091 hsa_system_get_info(2, 0x7fc63400fe30) = 0 -43939469517500:43939469518122 26086:26091 hsa_system_get_info(2, 0x7fc63400fe38) = 0 -43939469518886:43939469519520 26086:26091 hsa_system_get_info(2, 0x7fc63400fe40) = 0 -43939469520281:43939469520912 26086:26091 hsa_system_get_info(2, 0x7fc63400fe48) = 0 -43939469521673:43939469522297 26086:26091 hsa_system_get_info(2, 0x7fc63400fe50) = 0 -43939469523059:43939469523687 26086:26091 hsa_system_get_info(2, 0x7fc63400fe58) = 0 -43939469524444:43939469525071 26086:26091 hsa_system_get_info(2, 0x7fc63400fe60) = 0 -43939469525836:43939469526465 26086:26091 hsa_system_get_info(2, 0x7fc63400fe68) = 0 -43939469527228:43939469527856 26086:26091 hsa_system_get_info(2, 0x7fc63400fe70) = 0 -43939469528618:43939469529240 26086:26091 hsa_system_get_info(2, 0x7fc63400fe78) = 0 -43939469530002:43939469530633 26086:26091 hsa_system_get_info(2, 0x7fc63400fe80) = 0 -43939469531413:43939469532050 26086:26091 hsa_system_get_info(2, 0x7fc63400fe88) = 0 -43939469532808:43939469533434 26086:26091 hsa_system_get_info(2, 0x7fc63400fe90) = 0 -43939469534909:43939469535540 26086:26091 hsa_system_get_info(2, 0x7fc63400fe98) = 0 -43939469536301:43939469536927 26086:26091 hsa_system_get_info(2, 0x7fc63400fea0) = 0 -43939469537685:43939469538312 26086:26091 hsa_system_get_info(2, 0x7fc63400fea8) = 0 -43939469539071:43939469539694 26086:26091 hsa_system_get_info(2, 0x7fc63400feb0) = 0 -43939469540449:43939469541078 26086:26091 hsa_system_get_info(2, 0x7fc63400feb8) = 0 -43939469541840:43939469542468 26086:26091 hsa_system_get_info(2, 0x7fc63400fec0) = 0 -43939469543228:43939469543851 26086:26091 hsa_system_get_info(2, 0x7fc63400fec8) = 0 -43939469544610:43939469545241 26086:26091 hsa_system_get_info(2, 0x7fc63400fed0) = 0 -43939469546003:43939469546642 26086:26091 hsa_system_get_info(2, 0x7fc63400fed8) = 0 -43939469547406:43939469548032 26086:26091 hsa_system_get_info(2, 0x7fc63400fee0) = 0 -43939469548789:43939469549420 26086:26091 hsa_system_get_info(2, 0x7fc63400fee8) = 0 -43939469550183:43939469550812 26086:26091 hsa_system_get_info(2, 0x7fc63400fef0) = 0 -43939469551576:43939469552209 26086:26091 hsa_system_get_info(2, 0x7fc63400fef8) = 0 -43939469552981:43939469553607 26086:26091 hsa_system_get_info(2, 0x7fc63400ff00) = 0 -43939469554366:43939469554991 26086:26091 hsa_system_get_info(2, 0x7fc63400ff08) = 0 -43939469555752:43939469556376 26086:26091 hsa_system_get_info(2, 0x7fc63400ff10) = 0 -43939469557138:43939469557764 26086:26091 hsa_system_get_info(2, 0x7fc63400ff18) = 0 -43939469558532:43939469559159 26086:26091 hsa_system_get_info(2, 0x7fc63400ff20) = 0 -43939469559921:43939469560545 26086:26091 hsa_system_get_info(2, 0x7fc63400ff28) = 0 -43939469561301:43939469561931 26086:26091 hsa_system_get_info(2, 0x7fc63400ff30) = 0 -43939469562696:43939469563320 26086:26091 hsa_system_get_info(2, 0x7fc63400ff38) = 0 -43939469564080:43939469564708 26086:26091 hsa_system_get_info(2, 0x7fc63400ff40) = 0 -43939469565466:43939469566098 26086:26091 hsa_system_get_info(2, 0x7fc63400ff48) = 0 -43939469566860:43939469567483 26086:26091 hsa_system_get_info(2, 0x7fc63400ff50) = 0 -43939469568244:43939469568870 26086:26091 hsa_system_get_info(2, 0x7fc63400ff58) = 0 -43939469569633:43939469570265 26086:26091 hsa_system_get_info(2, 0x7fc63400ff60) = 0 -43939469571027:43939469571654 26086:26091 hsa_system_get_info(2, 0x7fc63400ff68) = 0 -43939469572425:43939469573047 26086:26091 hsa_system_get_info(2, 0x7fc63400ff70) = 0 -43939469573804:43939469574434 26086:26091 hsa_system_get_info(2, 0x7fc63400ff78) = 0 -43939469576589:43939469577225 26086:26091 hsa_system_get_info(2, 0x7fc63400ff80) = 0 -43939469577986:43939469578611 26086:26091 hsa_system_get_info(2, 0x7fc63400ff88) = 0 -43939469579369:43939469580006 26086:26091 hsa_system_get_info(2, 0x7fc63400ff90) = 0 -43939469580769:43939469581398 26086:26091 hsa_system_get_info(2, 0x7fc63400ff98) = 0 -43939469582158:43939469582789 26086:26091 hsa_system_get_info(2, 0x7fc63400ffa0) = 0 -43939469583551:43939469584185 26086:26091 hsa_system_get_info(2, 0x7fc63400ffa8) = 0 -43939469584944:43939469585573 26086:26091 hsa_system_get_info(2, 0x7fc63400ffb0) = 0 -43939469586334:43939469586963 26086:26091 hsa_system_get_info(2, 0x7fc63400ffb8) = 0 -43939469587726:43939469588356 26086:26091 hsa_system_get_info(2, 0x7fc63400ffc0) = 0 -43939469589120:43939469589751 26086:26091 hsa_system_get_info(2, 0x7fc63400ffc8) = 0 -43939469590517:43939469591152 26086:26091 hsa_system_get_info(2, 0x7fc63400ffd0) = 0 -43939469591909:43939469592554 26086:26091 hsa_system_get_info(2, 0x7fc63400ffd8) = 0 -43939469593317:43939469593947 26086:26091 hsa_system_get_info(2, 0x7fc63400ffe0) = 0 -43939469594708:43939469595338 26086:26091 hsa_system_get_info(2, 0x7fc63400ffe8) = 0 -43939469596094:43939469596728 26086:26091 hsa_system_get_info(2, 0x7fc63400fff0) = 0 -43939469597488:43939469598120 26086:26091 hsa_system_get_info(2, 0x7fc63400fff8) = 0 -43939469598879:43939469599503 26086:26091 hsa_system_get_info(2, 0x7fc634010000) = 0 -43939469600264:43939469600894 26086:26091 hsa_system_get_info(2, 0x7fc634010008) = 0 -43939469601655:43939469602284 26086:26091 hsa_system_get_info(2, 0x7fc634010010) = 0 -43939469603048:43939469603679 26086:26091 hsa_system_get_info(2, 0x7fc634010018) = 0 -43939469604443:43939469605075 26086:26091 hsa_system_get_info(2, 0x7fc634010020) = 0 -43939469605833:43939469606462 26086:26091 hsa_system_get_info(2, 0x7fc634010028) = 0 -43939469607221:43939469607847 26086:26091 hsa_system_get_info(2, 0x7fc634010030) = 0 -43939469608606:43939469609236 26086:26091 hsa_system_get_info(2, 0x7fc634010038) = 0 -43939469609998:43939469610629 26086:26091 hsa_system_get_info(2, 0x7fc634010040) = 0 -43939469611409:43939469612039 26086:26091 hsa_system_get_info(2, 0x7fc634010048) = 0 -43939469612804:43939469613441 26086:26091 hsa_system_get_info(2, 0x7fc634010050) = 0 -43939469614202:43939469614837 26086:26091 hsa_system_get_info(2, 0x7fc634010058) = 0 -43939469616326:43939469616959 26086:26091 hsa_system_get_info(2, 0x7fc634010060) = 0 -43939469617717:43939469618333 26086:26091 hsa_system_get_info(2, 0x7fc634010068) = 0 -43939469619098:43939469619725 26086:26091 hsa_system_get_info(2, 0x7fc634010070) = 0 -43939469620485:43939469621112 26086:26091 hsa_system_get_info(2, 0x7fc634010078) = 0 -43939469621875:43939469622500 26086:26091 hsa_system_get_info(2, 0x7fc634010080) = 0 -43939469623265:43939469623896 26086:26091 hsa_system_get_info(2, 0x7fc634010088) = 0 -43939469624655:43939469625291 26086:26091 hsa_system_get_info(2, 0x7fc634010090) = 0 -43939469626067:43939469626694 26086:26091 hsa_system_get_info(2, 0x7fc634010098) = 0 -43939469627453:43939469628078 26086:26091 hsa_system_get_info(2, 0x7fc6340100a0) = 0 -43939469628843:43939469629463 26086:26091 hsa_system_get_info(2, 0x7fc6340100a8) = 0 -43939469630224:43939469630848 26086:26091 hsa_system_get_info(2, 0x7fc6340100b0) = 0 -43939469631624:43939469632252 26086:26091 hsa_system_get_info(2, 0x7fc6340100b8) = 0 -43939469633022:43939469633647 26086:26091 hsa_system_get_info(2, 0x7fc6340100c0) = 0 -43939469634409:43939469635033 26086:26091 hsa_system_get_info(2, 0x7fc6340100c8) = 0 -43939469635793:43939469636420 26086:26091 hsa_system_get_info(2, 0x7fc6340100d0) = 0 -43939469637181:43939469637808 26086:26091 hsa_system_get_info(2, 0x7fc6340100d8) = 0 -43939469638573:43939469639196 26086:26091 hsa_system_get_info(2, 0x7fc6340100e0) = 0 -43939469639959:43939469640582 26086:26091 hsa_system_get_info(2, 0x7fc6340100e8) = 0 -43939469641342:43939469641970 26086:26091 hsa_system_get_info(2, 0x7fc6340100f0) = 0 -43939469642732:43939469643357 26086:26091 hsa_system_get_info(2, 0x7fc6340100f8) = 0 -43939469644117:43939469644749 26086:26091 hsa_system_get_info(2, 0x7fc634010100) = 0 -43939469645508:43939469646134 26086:26091 hsa_system_get_info(2, 0x7fc634010108) = 0 -43939469646896:43939469647519 26086:26091 hsa_system_get_info(2, 0x7fc634010110) = 0 -43939469648279:43939469648905 26086:26091 hsa_system_get_info(2, 0x7fc634010118) = 0 -43939469649666:43939469650295 26086:26091 hsa_system_get_info(2, 0x7fc634010120) = 0 -43939469651072:43939469651710 26086:26091 hsa_system_get_info(2, 0x7fc634010128) = 0 -43939469652476:43939469653108 26086:26091 hsa_system_get_info(2, 0x7fc634010130) = 0 -43939469653870:43939469654501 26086:26091 hsa_system_get_info(2, 0x7fc634010138) = 0 -43939469655269:43939469655902 26086:26091 hsa_system_get_info(2, 0x7fc634010140) = 0 -43939469657407:43939469658043 26086:26091 hsa_system_get_info(2, 0x7fc634010148) = 0 -43939469658801:43939469659428 26086:26091 hsa_system_get_info(2, 0x7fc634010150) = 0 -43939469660195:43939469660815 26086:26091 hsa_system_get_info(2, 0x7fc634010158) = 0 -43939469661572:43939469662202 26086:26091 hsa_system_get_info(2, 0x7fc634010160) = 0 -43939469662962:43939469663584 26086:26091 hsa_system_get_info(2, 0x7fc634010168) = 0 -43939469664347:43939469664974 26086:26091 hsa_system_get_info(2, 0x7fc634010170) = 0 -43939469665734:43939469666360 26086:26091 hsa_system_get_info(2, 0x7fc634010178) = 0 -43939469667122:43939469667757 26086:26091 hsa_system_get_info(2, 0x7fc634010180) = 0 -43939469668521:43939469669147 26086:26091 hsa_system_get_info(2, 0x7fc634010188) = 0 -43939469669908:43939469670532 26086:26091 hsa_system_get_info(2, 0x7fc634010190) = 0 -43939469671292:43939469671921 26086:26091 hsa_system_get_info(2, 0x7fc634010198) = 0 -43939469672680:43939469673304 26086:26091 hsa_system_get_info(2, 0x7fc6340101a0) = 0 -43939469674070:43939469674695 26086:26091 hsa_system_get_info(2, 0x7fc6340101a8) = 0 -43939469675454:43939469676083 26086:26091 hsa_system_get_info(2, 0x7fc6340101b0) = 0 -43939469676862:43939469677482 26086:26091 hsa_system_get_info(2, 0x7fc6340101b8) = 0 -43939469678246:43939469678877 26086:26091 hsa_system_get_info(2, 0x7fc6340101c0) = 0 -43939469679643:43939469680268 26086:26091 hsa_system_get_info(2, 0x7fc6340101c8) = 0 -43939469681027:43939469681655 26086:26091 hsa_system_get_info(2, 0x7fc6340101d0) = 0 -43939469682414:43939469683046 26086:26091 hsa_system_get_info(2, 0x7fc6340101d8) = 0 -43939469683810:43939469684439 26086:26091 hsa_system_get_info(2, 0x7fc6340101e0) = 0 -43939469685198:43939469685829 26086:26091 hsa_system_get_info(2, 0x7fc6340101e8) = 0 -43939469686593:43939469687220 26086:26091 hsa_system_get_info(2, 0x7fc6340101f0) = 0 -43939469687987:43939469688612 26086:26091 hsa_system_get_info(2, 0x7fc6340101f8) = 0 -43939469689369:43939469689995 26086:26091 hsa_system_get_info(2, 0x7fc634010200) = 0 -43939469690755:43939469691384 26086:26091 hsa_system_get_info(2, 0x7fc634010208) = 0 -43939469692147:43939469692771 26086:26091 hsa_system_get_info(2, 0x7fc634010210) = 0 -43939469693533:43939469694164 26086:26091 hsa_system_get_info(2, 0x7fc634010218) = 0 -43939469694926:43939469695572 26086:26091 hsa_system_get_info(2, 0x7fc634010220) = 0 -43939469697054:43939469697689 26086:26091 hsa_system_get_info(2, 0x7fc634010228) = 0 -43939469698454:43939469699088 26086:26091 hsa_system_get_info(2, 0x7fc634010230) = 0 -43939469699850:43939469700477 26086:26091 hsa_system_get_info(2, 0x7fc634010238) = 0 -43939469701238:43939469701888 26086:26091 hsa_system_get_info(2, 0x7fc634010240) = 0 -43939469702652:43939469703281 26086:26091 hsa_system_get_info(2, 0x7fc634010248) = 0 -43939469704041:43939469704671 26086:26091 hsa_system_get_info(2, 0x7fc634010250) = 0 -43939469705432:43939469706060 26086:26091 hsa_system_get_info(2, 0x7fc634010258) = 0 -43939469706819:43939469707445 26086:26091 hsa_system_get_info(2, 0x7fc634010260) = 0 -43939469708204:43939469708835 26086:26091 hsa_system_get_info(2, 0x7fc634010268) = 0 -43939469709597:43939469710223 26086:26091 hsa_system_get_info(2, 0x7fc634010270) = 0 -43939469710983:43939469711615 26086:26091 hsa_system_get_info(2, 0x7fc634010278) = 0 -43939469712383:43939469713027 26086:26091 hsa_system_get_info(2, 0x7fc634010280) = 0 -43939469713795:43939469714426 26086:26091 hsa_system_get_info(2, 0x7fc634010288) = 0 -43939469715187:43939469715809 26086:26091 hsa_system_get_info(2, 0x7fc634010290) = 0 -43939469716581:43939469717204 26086:26091 hsa_system_get_info(2, 0x7fc634010298) = 0 -43939469717961:43939469718585 26086:26091 hsa_system_get_info(2, 0x7fc6340102a0) = 0 -43939469719345:43939469719970 26086:26091 hsa_system_get_info(2, 0x7fc6340102a8) = 0 -43939469720727:43939469721360 26086:26091 hsa_system_get_info(2, 0x7fc6340102b0) = 0 -43939469722121:43939469722753 26086:26091 hsa_system_get_info(2, 0x7fc6340102b8) = 0 -43939469723514:43939469724143 26086:26091 hsa_system_get_info(2, 0x7fc6340102c0) = 0 -43939469724908:43939469725540 26086:26091 hsa_system_get_info(2, 0x7fc6340102c8) = 0 -43939469726301:43939469726931 26086:26091 hsa_system_get_info(2, 0x7fc6340102d0) = 0 -43939469727694:43939469728323 26086:26091 hsa_system_get_info(2, 0x7fc6340102d8) = 0 -43939469729085:43939469729725 26086:26091 hsa_system_get_info(2, 0x7fc6340102e0) = 0 -43939469730487:43939469731123 26086:26091 hsa_system_get_info(2, 0x7fc6340102e8) = 0 -43939469731887:43939469732519 26086:26091 hsa_system_get_info(2, 0x7fc6340102f0) = 0 -43939469733280:43939469733908 26086:26091 hsa_system_get_info(2, 0x7fc6340102f8) = 0 -43939469734669:43939469735316 26086:26091 hsa_system_get_info(2, 0x7fc634010300) = 0 -43939469736074:43939469736702 26086:26091 hsa_system_get_info(2, 0x7fc634010308) = 0 -43939469738182:43939469738812 26086:26091 hsa_system_get_info(2, 0x7fc634010310) = 0 -43939469739570:43939469740194 26086:26091 hsa_system_get_info(2, 0x7fc634010318) = 0 -43939469740981:43939469741608 26086:26091 hsa_system_get_info(2, 0x7fc634010320) = 0 -43939469742371:43939469743003 26086:26091 hsa_system_get_info(2, 0x7fc634010328) = 0 -43939469743763:43939469744383 26086:26091 hsa_system_get_info(2, 0x7fc634010330) = 0 -43939469745142:43939469745764 26086:26091 hsa_system_get_info(2, 0x7fc634010338) = 0 -43939469746524:43939469747157 26086:26091 hsa_system_get_info(2, 0x7fc634010340) = 0 -43939469747918:43939469748545 26086:26091 hsa_system_get_info(2, 0x7fc634010348) = 0 -43939469749308:43939469749945 26086:26091 hsa_system_get_info(2, 0x7fc634010350) = 0 -43939469750716:43939469751351 26086:26091 hsa_system_get_info(2, 0x7fc634010358) = 0 -43939469752119:43939469752747 26086:26091 hsa_system_get_info(2, 0x7fc634010360) = 0 -43939469753512:43939469754141 26086:26091 hsa_system_get_info(2, 0x7fc634010368) = 0 -43939469754901:43939469755529 26086:26091 hsa_system_get_info(2, 0x7fc634010370) = 0 -43939469756309:43939469756937 26086:26091 hsa_system_get_info(2, 0x7fc634010378) = 0 -43939469757698:43939469758332 26086:26091 hsa_system_get_info(2, 0x7fc634010380) = 0 -43939469759098:43939469759729 26086:26091 hsa_system_get_info(2, 0x7fc634010388) = 0 -43939469760493:43939469761122 26086:26091 hsa_system_get_info(2, 0x7fc634010390) = 0 -43939469761883:43939469762511 26086:26091 hsa_system_get_info(2, 0x7fc634010398) = 0 -43939469763268:43939469763897 26086:26091 hsa_system_get_info(2, 0x7fc6340103a0) = 0 -43939469764665:43939469765297 26086:26091 hsa_system_get_info(2, 0x7fc6340103a8) = 0 -43939469766057:43939469766689 26086:26091 hsa_system_get_info(2, 0x7fc6340103b0) = 0 -43939469767454:43939469768077 26086:26091 hsa_system_get_info(2, 0x7fc6340103b8) = 0 -43939469768837:43939469769469 26086:26091 hsa_system_get_info(2, 0x7fc6340103c0) = 0 -43939469770226:43939469770860 26086:26091 hsa_system_get_info(2, 0x7fc6340103c8) = 0 -43939469771621:43939469772247 26086:26091 hsa_system_get_info(2, 0x7fc6340103d0) = 0 -43939469773003:43939469773640 26086:26091 hsa_system_get_info(2, 0x7fc6340103d8) = 0 -43939469774399:43939469775037 26086:26091 hsa_system_get_info(2, 0x7fc6340103e0) = 0 -43939469775810:43939469776441 26086:26091 hsa_system_get_info(2, 0x7fc6340103e8) = 0 -43939469777922:43939469778556 26086:26091 hsa_system_get_info(2, 0x7fc6340103f0) = 0 -43939469779315:43939469779950 26086:26091 hsa_system_get_info(2, 0x7fc6340103f8) = 0 -43939469780706:43939469781327 26086:26091 hsa_system_get_info(2, 0x7fc634010400) = 0 -43939469782088:43939469782714 26086:26091 hsa_system_get_info(2, 0x7fc634010408) = 0 -43939469783473:43939469784097 26086:26091 hsa_system_get_info(2, 0x7fc634010410) = 0 -43939469784856:43939469785483 26086:26091 hsa_system_get_info(2, 0x7fc634010418) = 0 -43939469786239:43939469786867 26086:26091 hsa_system_get_info(2, 0x7fc634010420) = 0 -43939469787627:43939469788255 26086:26091 hsa_system_get_info(2, 0x7fc634010428) = 0 -43939469789032:43939469789665 26086:26091 hsa_system_get_info(2, 0x7fc634010430) = 0 -43939469790421:43939469791052 26086:26091 hsa_system_get_info(2, 0x7fc634010438) = 0 -43939469791818:43939469792443 26086:26091 hsa_system_get_info(2, 0x7fc634010440) = 0 -43939469793233:43939469793868 26086:26091 hsa_system_get_info(2, 0x7fc634010448) = 0 -43939469794630:43939469795261 26086:26091 hsa_system_get_info(2, 0x7fc634010450) = 0 -43939469796023:43939469796652 26086:26091 hsa_system_get_info(2, 0x7fc634010458) = 0 -43939469797411:43939469798043 26086:26091 hsa_system_get_info(2, 0x7fc634010460) = 0 -43939469798805:43939469799423 26086:26091 hsa_system_get_info(2, 0x7fc634010468) = 0 -43939469800185:43939469800812 26086:26091 hsa_system_get_info(2, 0x7fc634010470) = 0 -43939469801570:43939469802197 26086:26091 hsa_system_get_info(2, 0x7fc634010478) = 0 -43939469802959:43939469803587 26086:26091 hsa_system_get_info(2, 0x7fc634010480) = 0 -43939469804350:43939469804975 26086:26091 hsa_system_get_info(2, 0x7fc634010488) = 0 -43939469805735:43939469806367 26086:26091 hsa_system_get_info(2, 0x7fc634010490) = 0 -43939469807126:43939469807748 26086:26091 hsa_system_get_info(2, 0x7fc634010498) = 0 -43939469808511:43939469809141 26086:26091 hsa_system_get_info(2, 0x7fc6340104a0) = 0 -43939469809904:43939469810531 26086:26091 hsa_system_get_info(2, 0x7fc6340104a8) = 0 -43939469811292:43939469811921 26086:26091 hsa_system_get_info(2, 0x7fc6340104b0) = 0 -43939469812698:43939469813329 26086:26091 hsa_system_get_info(2, 0x7fc6340104b8) = 0 -43939469814089:43939469814711 26086:26091 hsa_system_get_info(2, 0x7fc6340104c0) = 0 -43939469815470:43939469816097 26086:26091 hsa_system_get_info(2, 0x7fc6340104c8) = 0 -43939469816858:43939469817485 26086:26091 hsa_system_get_info(2, 0x7fc6340104d0) = 0 -43939469818963:43939469819599 26086:26091 hsa_system_get_info(2, 0x7fc6340104d8) = 0 -43939469820357:43939469820981 26086:26091 hsa_system_get_info(2, 0x7fc6340104e0) = 0 -43939469821744:43939469822372 26086:26091 hsa_system_get_info(2, 0x7fc6340104e8) = 0 -43939469823136:43939469823758 26086:26091 hsa_system_get_info(2, 0x7fc6340104f0) = 0 -43939469824522:43939469825147 26086:26091 hsa_system_get_info(2, 0x7fc6340104f8) = 0 -43939469825907:43939469826533 26086:26091 hsa_system_get_info(2, 0x7fc634010500) = 0 -43939469827294:43939469827923 26086:26091 hsa_system_get_info(2, 0x7fc634010508) = 0 -43939469828682:43939469829310 26086:26091 hsa_system_get_info(2, 0x7fc634010510) = 0 -43939469830071:43939469830693 26086:26091 hsa_system_get_info(2, 0x7fc634010518) = 0 -43939469831452:43939469832075 26086:26091 hsa_system_get_info(2, 0x7fc634010520) = 0 -43939469832846:43939469833468 26086:26091 hsa_system_get_info(2, 0x7fc634010528) = 0 -43939469834245:43939469834874 26086:26091 hsa_system_get_info(2, 0x7fc634010530) = 0 -43939469835634:43939469836259 26086:26091 hsa_system_get_info(2, 0x7fc634010538) = 0 -43939469837034:43939469837663 26086:26091 hsa_system_get_info(2, 0x7fc634010540) = 0 -43939469838417:43939469839044 26086:26091 hsa_system_get_info(2, 0x7fc634010548) = 0 -43939469839806:43939469840434 26086:26091 hsa_system_get_info(2, 0x7fc634010550) = 0 -43939469841196:43939469841828 26086:26091 hsa_system_get_info(2, 0x7fc634010558) = 0 -43939469842590:43939469843213 26086:26091 hsa_system_get_info(2, 0x7fc634010560) = 0 -43939469843972:43939469844599 26086:26091 hsa_system_get_info(2, 0x7fc634010568) = 0 -43939469845360:43939469845988 26086:26091 hsa_system_get_info(2, 0x7fc634010570) = 0 -43939469846761:43939469847395 26086:26091 hsa_system_get_info(2, 0x7fc634010578) = 0 -43939469848155:43939469848794 26086:26091 hsa_system_get_info(2, 0x7fc634010580) = 0 -43939469849560:43939469850192 26086:26091 hsa_system_get_info(2, 0x7fc634010588) = 0 -43939469850954:43939469851587 26086:26091 hsa_system_get_info(2, 0x7fc634010590) = 0 -43939469852353:43939469852985 26086:26091 hsa_system_get_info(2, 0x7fc634010598) = 0 -43939469853748:43939469854376 26086:26091 hsa_system_get_info(2, 0x7fc6340105a0) = 0 -43939469855134:43939469855761 26086:26091 hsa_system_get_info(2, 0x7fc6340105a8) = 0 -43939469856520:43939469857154 26086:26091 hsa_system_get_info(2, 0x7fc6340105b0) = 0 -43939469858628:43939469859253 26086:26091 hsa_system_get_info(2, 0x7fc6340105b8) = 0 -43939469860016:43939469860648 26086:26091 hsa_system_get_info(2, 0x7fc6340105c0) = 0 -43939469861406:43939469862029 26086:26091 hsa_system_get_info(2, 0x7fc6340105c8) = 0 -43939469862793:43939469863428 26086:26091 hsa_system_get_info(2, 0x7fc6340105d0) = 0 -43939469864194:43939469864823 26086:26091 hsa_system_get_info(2, 0x7fc6340105d8) = 0 -43939469865583:43939469866209 26086:26091 hsa_system_get_info(2, 0x7fc6340105e0) = 0 -43939469866970:43939469867600 26086:26091 hsa_system_get_info(2, 0x7fc6340105e8) = 0 -43939469868361:43939469868988 26086:26091 hsa_system_get_info(2, 0x7fc6340105f0) = 0 -43939469869754:43939469870382 26086:26091 hsa_system_get_info(2, 0x7fc6340105f8) = 0 -43939469871146:43939469871778 26086:26091 hsa_system_get_info(2, 0x7fc634010600) = 0 -43939469872537:43939469873167 26086:26091 hsa_system_get_info(2, 0x7fc634010608) = 0 -43939469873938:43939469874562 26086:26091 hsa_system_get_info(2, 0x7fc634010610) = 0 -43939469875329:43939469875956 26086:26091 hsa_system_get_info(2, 0x7fc634010618) = 0 -43939469876731:43939469877368 26086:26091 hsa_system_get_info(2, 0x7fc634010620) = 0 -43939469878136:43939469878769 26086:26091 hsa_system_get_info(2, 0x7fc634010628) = 0 -43939469879533:43939469880171 26086:26091 hsa_system_get_info(2, 0x7fc634010630) = 0 -43939469880934:43939469881565 26086:26091 hsa_system_get_info(2, 0x7fc634010638) = 0 -43939469882322:43939469882939 26086:26091 hsa_system_get_info(2, 0x7fc634010640) = 0 -43939469883695:43939469884322 26086:26091 hsa_system_get_info(2, 0x7fc634010648) = 0 -43939469885082:43939469885705 26086:26091 hsa_system_get_info(2, 0x7fc634010650) = 0 -43939469886463:43939469887095 26086:26091 hsa_system_get_info(2, 0x7fc634010658) = 0 -43939469887859:43939469888489 26086:26091 hsa_system_get_info(2, 0x7fc634010660) = 0 -43939469889248:43939469889878 26086:26091 hsa_system_get_info(2, 0x7fc634010668) = 0 -43939469890639:43939469891266 26086:26091 hsa_system_get_info(2, 0x7fc634010670) = 0 -43939469892022:43939469892650 26086:26091 hsa_system_get_info(2, 0x7fc634010678) = 0 -43939469893410:43939469894039 26086:26091 hsa_system_get_info(2, 0x7fc634010680) = 0 -43939469894800:43939469895431 26086:26091 hsa_system_get_info(2, 0x7fc634010688) = 0 -43939469896207:43939469896839 26086:26091 hsa_system_get_info(2, 0x7fc634010690) = 0 -43939469898382:43939469899015 26086:26091 hsa_system_get_info(2, 0x7fc634010698) = 0 -43939469899773:43939469900396 26086:26091 hsa_system_get_info(2, 0x7fc6340106a0) = 0 -43939469901153:43939469901785 26086:26091 hsa_system_get_info(2, 0x7fc6340106a8) = 0 -43939469902548:43939469903168 26086:26091 hsa_system_get_info(2, 0x7fc6340106b0) = 0 -43939469903928:43939469904555 26086:26091 hsa_system_get_info(2, 0x7fc6340106b8) = 0 -43939469905316:43939469905948 26086:26091 hsa_system_get_info(2, 0x7fc6340106c0) = 0 -43939469906712:43939469907337 26086:26091 hsa_system_get_info(2, 0x7fc6340106c8) = 0 -43939469908100:43939469908726 26086:26091 hsa_system_get_info(2, 0x7fc6340106d0) = 0 -43939469909484:43939469910105 26086:26091 hsa_system_get_info(2, 0x7fc6340106d8) = 0 -43939469910866:43939469911497 26086:26091 hsa_system_get_info(2, 0x7fc6340106e0) = 0 -43939469912256:43939469912880 26086:26091 hsa_system_get_info(2, 0x7fc6340106e8) = 0 -43939469913651:43939469914278 26086:26091 hsa_system_get_info(2, 0x7fc6340106f0) = 0 -43939469915044:43939469915688 26086:26091 hsa_system_get_info(2, 0x7fc6340106f8) = 0 -43939469916445:43939469917074 26086:26091 hsa_system_get_info(2, 0x7fc634010700) = 0 -43939469917834:43939469918454 26086:26091 hsa_system_get_info(2, 0x7fc634010708) = 0 -43939469919215:43939469919843 26086:26091 hsa_system_get_info(2, 0x7fc634010710) = 0 -43939469920607:43939469921233 26086:26091 hsa_system_get_info(2, 0x7fc634010718) = 0 -43939469921992:43939469922617 26086:26091 hsa_system_get_info(2, 0x7fc634010720) = 0 -43939469923379:43939469924004 26086:26091 hsa_system_get_info(2, 0x7fc634010728) = 0 -43939469924759:43939469925387 26086:26091 hsa_system_get_info(2, 0x7fc634010730) = 0 -43939469926144:43939469926775 26086:26091 hsa_system_get_info(2, 0x7fc634010738) = 0 -43939469927532:43939469928156 26086:26091 hsa_system_get_info(2, 0x7fc634010740) = 0 -43939469928911:43939469929541 26086:26091 hsa_system_get_info(2, 0x7fc634010748) = 0 -43939469930303:43939469930931 26086:26091 hsa_system_get_info(2, 0x7fc634010750) = 0 -43939469931693:43939469932328 26086:26091 hsa_system_get_info(2, 0x7fc634010758) = 0 -43939469933084:43939469933705 26086:26091 hsa_system_get_info(2, 0x7fc634010760) = 0 -43939469934478:43939469935103 26086:26091 hsa_system_get_info(2, 0x7fc634010768) = 0 -43939469935863:43939469936490 26086:26091 hsa_system_get_info(2, 0x7fc634010770) = 0 -43939469937254:43939469937882 26086:26091 hsa_system_get_info(2, 0x7fc634010778) = 0 -43939469939386:43939469940017 26086:26091 hsa_system_get_info(2, 0x7fc634010780) = 0 -43939469940776:43939469941409 26086:26091 hsa_system_get_info(2, 0x7fc634010788) = 0 -43939469942165:43939469942796 26086:26091 hsa_system_get_info(2, 0x7fc634010790) = 0 -43939469943559:43939469944186 26086:26091 hsa_system_get_info(2, 0x7fc634010798) = 0 -43939469944944:43939469945567 26086:26091 hsa_system_get_info(2, 0x7fc6340107a0) = 0 -43939469946326:43939469946952 26086:26091 hsa_system_get_info(2, 0x7fc6340107a8) = 0 -43939469947717:43939469948348 26086:26091 hsa_system_get_info(2, 0x7fc6340107b0) = 0 -43939469949131:43939469949768 26086:26091 hsa_system_get_info(2, 0x7fc6340107b8) = 0 -43939469950532:43939469951166 26086:26091 hsa_system_get_info(2, 0x7fc6340107c0) = 0 -43939469951933:43939469952562 26086:26091 hsa_system_get_info(2, 0x7fc6340107c8) = 0 -43939469953320:43939469953952 26086:26091 hsa_system_get_info(2, 0x7fc6340107d0) = 0 -43939469954713:43939469955347 26086:26091 hsa_system_get_info(2, 0x7fc6340107d8) = 0 -43939469956118:43939469956749 26086:26091 hsa_system_get_info(2, 0x7fc6340107e0) = 0 -43939469957513:43939469958145 26086:26091 hsa_system_get_info(2, 0x7fc6340107e8) = 0 -43939469958910:43939469959545 26086:26091 hsa_system_get_info(2, 0x7fc6340107f0) = 0 -43939469960307:43939469960936 26086:26091 hsa_system_get_info(2, 0x7fc6340107f8) = 0 -43939469961699:43939469962329 26086:26091 hsa_system_get_info(2, 0x7fc634010800) = 0 -43939469963090:43939469963722 26086:26091 hsa_system_get_info(2, 0x7fc634010808) = 0 -43939469964487:43939469965114 26086:26091 hsa_system_get_info(2, 0x7fc634010810) = 0 -43939469965890:43939469966524 26086:26091 hsa_system_get_info(2, 0x7fc634010818) = 0 -43939469967287:43939469967918 26086:26091 hsa_system_get_info(2, 0x7fc634010820) = 0 -43939469968676:43939469969303 26086:26091 hsa_system_get_info(2, 0x7fc634010828) = 0 -43939469970065:43939469970694 26086:26091 hsa_system_get_info(2, 0x7fc634010830) = 0 -43939469971456:43939469972080 26086:26091 hsa_system_get_info(2, 0x7fc634010838) = 0 -43939469972841:43939469973465 26086:26091 hsa_system_get_info(2, 0x7fc634010840) = 0 -43939469974223:43939469974848 26086:26091 hsa_system_get_info(2, 0x7fc634010848) = 0 -43939469975613:43939469976237 26086:26091 hsa_system_get_info(2, 0x7fc634010850) = 0 -43939469976996:43939469977623 26086:26091 hsa_system_get_info(2, 0x7fc634010858) = 0 -43939469979146:43939469979774 26086:26091 hsa_system_get_info(2, 0x7fc634010860) = 0 -43939469980532:43939469981156 26086:26091 hsa_system_get_info(2, 0x7fc634010868) = 0 -43939469981912:43939469982541 26086:26091 hsa_system_get_info(2, 0x7fc634010870) = 0 -43939469983303:43939469983954 26086:26091 hsa_system_get_info(2, 0x7fc634010878) = 0 -43939469984718:43939469985348 26086:26091 hsa_system_get_info(2, 0x7fc634010880) = 0 -43939469986110:43939469986740 26086:26091 hsa_system_get_info(2, 0x7fc634010888) = 0 -43939469987499:43939469988133 26086:26091 hsa_system_get_info(2, 0x7fc634010890) = 0 -43939469988902:43939469989534 26086:26091 hsa_system_get_info(2, 0x7fc634010898) = 0 -43939469990297:43939469990931 26086:26091 hsa_system_get_info(2, 0x7fc6340108a0) = 0 -43939469991695:43939469992323 26086:26091 hsa_system_get_info(2, 0x7fc6340108a8) = 0 -43939469993089:43939469993718 26086:26091 hsa_system_get_info(2, 0x7fc6340108b0) = 0 -43939469994490:43939469995125 26086:26091 hsa_system_get_info(2, 0x7fc6340108b8) = 0 -43939469995894:43939469996519 26086:26091 hsa_system_get_info(2, 0x7fc6340108c0) = 0 -43939469997280:43939469997907 26086:26091 hsa_system_get_info(2, 0x7fc6340108c8) = 0 -43939469998672:43939469999302 26086:26091 hsa_system_get_info(2, 0x7fc6340108d0) = 0 -43939470000069:43939470000701 26086:26091 hsa_system_get_info(2, 0x7fc6340108d8) = 0 -43939470001460:43939470002082 26086:26091 hsa_system_get_info(2, 0x7fc6340108e0) = 0 -43939470002848:43939470003501 26086:26091 hsa_system_get_info(2, 0x7fc6340108e8) = 0 -43939470004264:43939470004889 26086:26091 hsa_system_get_info(2, 0x7fc6340108f0) = 0 -43939470005650:43939470006283 26086:26091 hsa_system_get_info(2, 0x7fc6340108f8) = 0 -43939470007045:43939470007677 26086:26091 hsa_system_get_info(2, 0x7fc634010900) = 0 -43939470008438:43939470009068 26086:26091 hsa_system_get_info(2, 0x7fc634010908) = 0 -43939470009828:43939470010463 26086:26091 hsa_system_get_info(2, 0x7fc634010910) = 0 -43939470011224:43939470011859 26086:26091 hsa_system_get_info(2, 0x7fc634010918) = 0 -43939470012619:43939470013248 26086:26091 hsa_system_get_info(2, 0x7fc634010920) = 0 -43939470014009:43939470014637 26086:26091 hsa_system_get_info(2, 0x7fc634010928) = 0 -43939470015400:43939470016031 26086:26091 hsa_system_get_info(2, 0x7fc634010930) = 0 -43939470016790:43939470017413 26086:26091 hsa_system_get_info(2, 0x7fc634010938) = 0 -43939470018172:43939470018797 26086:26091 hsa_system_get_info(2, 0x7fc634010940) = 0 -43939470020275:43939470020908 26086:26091 hsa_system_get_info(2, 0x7fc634010948) = 0 -43939470021669:43939470022291 26086:26091 hsa_system_get_info(2, 0x7fc634010950) = 0 -43939470023045:43939470023671 26086:26091 hsa_system_get_info(2, 0x7fc634010958) = 0 -43939470024432:43939470025062 26086:26091 hsa_system_get_info(2, 0x7fc634010960) = 0 -43939470025822:43939470026448 26086:26091 hsa_system_get_info(2, 0x7fc634010968) = 0 -43939470027207:43939470027829 26086:26091 hsa_system_get_info(2, 0x7fc634010970) = 0 -43939470028590:43939470029216 26086:26091 hsa_system_get_info(2, 0x7fc634010978) = 0 -43939470029974:43939470030595 26086:26091 hsa_system_get_info(2, 0x7fc634010980) = 0 -43939470031352:43939470031978 26086:26091 hsa_system_get_info(2, 0x7fc634010988) = 0 -43939470032740:43939470033368 26086:26091 hsa_system_get_info(2, 0x7fc634010990) = 0 -43939470034143:43939470034764 26086:26091 hsa_system_get_info(2, 0x7fc634010998) = 0 -43939470035527:43939470036158 26086:26091 hsa_system_get_info(2, 0x7fc6340109a0) = 0 -43939470036929:43939470037555 26086:26091 hsa_system_get_info(2, 0x7fc6340109a8) = 0 -43939470038318:43939470038943 26086:26091 hsa_system_get_info(2, 0x7fc6340109b0) = 0 -43939470039703:43939470040327 26086:26091 hsa_system_get_info(2, 0x7fc6340109b8) = 0 -43939470041091:43939470041724 26086:26091 hsa_system_get_info(2, 0x7fc6340109c0) = 0 -43939470042484:43939470043115 26086:26091 hsa_system_get_info(2, 0x7fc6340109c8) = 0 -43939470043877:43939470044509 26086:26091 hsa_system_get_info(2, 0x7fc6340109d0) = 0 -43939470045277:43939470045903 26086:26091 hsa_system_get_info(2, 0x7fc6340109d8) = 0 -43939470046664:43939470047288 26086:26091 hsa_system_get_info(2, 0x7fc6340109e0) = 0 -43939470048048:43939470048675 26086:26091 hsa_system_get_info(2, 0x7fc6340109e8) = 0 -43939470049435:43939470050070 26086:26091 hsa_system_get_info(2, 0x7fc6340109f0) = 0 -43939470050828:43939470051453 26086:26091 hsa_system_get_info(2, 0x7fc6340109f8) = 0 -43939470052219:43939470052864 26086:26091 hsa_system_get_info(2, 0x7fc634010a00) = 0 -43939470053627:43939470054251 26086:26091 hsa_system_get_info(2, 0x7fc634010a08) = 0 -43939470055014:43939470055650 26086:26091 hsa_system_get_info(2, 0x7fc634010a10) = 0 -43939470056409:43939470057039 26086:26091 hsa_system_get_info(2, 0x7fc634010a18) = 0 -43939470057801:43939470058434 26086:26091 hsa_system_get_info(2, 0x7fc634010a20) = 0 -43939470059914:43939470060548 26086:26091 hsa_system_get_info(2, 0x7fc634010a28) = 0 -43939470061306:43939470061926 26086:26091 hsa_system_get_info(2, 0x7fc634010a30) = 0 -43939470062683:43939470063308 26086:26091 hsa_system_get_info(2, 0x7fc634010a38) = 0 -43939470064070:43939470064699 26086:26091 hsa_system_get_info(2, 0x7fc634010a40) = 0 -43939470065461:43939470066082 26086:26091 hsa_system_get_info(2, 0x7fc634010a48) = 0 -43939470066841:43939470067468 26086:26091 hsa_system_get_info(2, 0x7fc634010a50) = 0 -43939470068229:43939470068857 26086:26091 hsa_system_get_info(2, 0x7fc634010a58) = 0 -43939470069618:43939470070249 26086:26091 hsa_system_get_info(2, 0x7fc634010a60) = 0 -43939470071010:43939470071643 26086:26091 hsa_system_get_info(2, 0x7fc634010a68) = 0 -43939470072409:43939470073035 26086:26091 hsa_system_get_info(2, 0x7fc634010a70) = 0 -43939470073794:43939470074429 26086:26091 hsa_system_get_info(2, 0x7fc634010a78) = 0 -43939470075193:43939470075825 26086:26091 hsa_system_get_info(2, 0x7fc634010a80) = 0 -43939470076593:43939470077218 26086:26091 hsa_system_get_info(2, 0x7fc634010a88) = 0 -43939470077992:43939470078623 26086:26091 hsa_system_get_info(2, 0x7fc634010a90) = 0 -43939470079397:43939470080020 26086:26091 hsa_system_get_info(2, 0x7fc634010a98) = 0 -43939470080783:43939470081410 26086:26091 hsa_system_get_info(2, 0x7fc634010aa0) = 0 -43939470082175:43939470082800 26086:26091 hsa_system_get_info(2, 0x7fc634010aa8) = 0 -43939470083559:43939470084189 26086:26091 hsa_system_get_info(2, 0x7fc634010ab0) = 0 -43939470084948:43939470085578 26086:26091 hsa_system_get_info(2, 0x7fc634010ab8) = 0 -43939470086340:43939470086973 26086:26091 hsa_system_get_info(2, 0x7fc634010ac0) = 0 -43939470087738:43939470088369 26086:26091 hsa_system_get_info(2, 0x7fc634010ac8) = 0 -43939470089131:43939470089759 26086:26091 hsa_system_get_info(2, 0x7fc634010ad0) = 0 -43939470090518:43939470091150 26086:26091 hsa_system_get_info(2, 0x7fc634010ad8) = 0 -43939470091910:43939470092537 26086:26091 hsa_system_get_info(2, 0x7fc634010ae0) = 0 -43939470093297:43939470093935 26086:26091 hsa_system_get_info(2, 0x7fc634010ae8) = 0 -43939470094702:43939470095328 26086:26091 hsa_system_get_info(2, 0x7fc634010af0) = 0 -43939470096092:43939470096718 26086:26091 hsa_system_get_info(2, 0x7fc634010af8) = 0 -43939470097482:43939470098125 26086:26091 hsa_system_get_info(2, 0x7fc634010b00) = 0 -43939470098906:43939470099536 26086:26091 hsa_system_get_info(2, 0x7fc634010b08) = 0 -43939470101020:43939470101657 26086:26091 hsa_system_get_info(2, 0x7fc634010b10) = 0 -43939470102432:43939470103059 26086:26091 hsa_system_get_info(2, 0x7fc634010b18) = 0 -43939470103818:43939470104442 26086:26091 hsa_system_get_info(2, 0x7fc634010b20) = 0 -43939470105204:43939470105834 26086:26091 hsa_system_get_info(2, 0x7fc634010b28) = 0 -43939470106597:43939470107222 26086:26091 hsa_system_get_info(2, 0x7fc634010b30) = 0 -43939470107986:43939470108615 26086:26091 hsa_system_get_info(2, 0x7fc634010b38) = 0 -43939470109376:43939470110003 26086:26091 hsa_system_get_info(2, 0x7fc634010b40) = 0 -43939470110765:43939470111395 26086:26091 hsa_system_get_info(2, 0x7fc634010b48) = 0 -43939470112156:43939470112778 26086:26091 hsa_system_get_info(2, 0x7fc634010b50) = 0 -43939470113541:43939470114173 26086:26091 hsa_system_get_info(2, 0x7fc634010b58) = 0 -43939470114939:43939470115564 26086:26091 hsa_system_get_info(2, 0x7fc634010b60) = 0 -43939470116326:43939470116955 26086:26091 hsa_system_get_info(2, 0x7fc634010b68) = 0 -43939470117710:43939470118342 26086:26091 hsa_system_get_info(2, 0x7fc634010b70) = 0 -43939470119108:43939470119741 26086:26091 hsa_system_get_info(2, 0x7fc634010b78) = 0 -43939470120508:43939470121142 26086:26091 hsa_system_get_info(2, 0x7fc634010b80) = 0 -43939470121916:43939470122550 26086:26091 hsa_system_get_info(2, 0x7fc634010b88) = 0 -43939470123314:43939470123943 26086:26091 hsa_system_get_info(2, 0x7fc634010b90) = 0 -43939470124705:43939470125334 26086:26091 hsa_system_get_info(2, 0x7fc634010b98) = 0 -43939470126092:43939470126714 26086:26091 hsa_system_get_info(2, 0x7fc634010ba0) = 0 -43939470127476:43939470128101 26086:26091 hsa_system_get_info(2, 0x7fc634010ba8) = 0 -43939470128864:43939470129485 26086:26091 hsa_system_get_info(2, 0x7fc634010bb0) = 0 -43939470130243:43939470130873 26086:26091 hsa_system_get_info(2, 0x7fc634010bb8) = 0 -43939470131635:43939470132266 26086:26091 hsa_system_get_info(2, 0x7fc634010bc0) = 0 -43939470133033:43939470133667 26086:26091 hsa_system_get_info(2, 0x7fc634010bc8) = 0 -43939470134433:43939470135058 26086:26091 hsa_system_get_info(2, 0x7fc634010bd0) = 0 -43939470135817:43939470136448 26086:26091 hsa_system_get_info(2, 0x7fc634010bd8) = 0 -43939470137210:43939470137845 26086:26091 hsa_system_get_info(2, 0x7fc634010be0) = 0 -43939470138602:43939470139227 26086:26091 hsa_system_get_info(2, 0x7fc634010be8) = 0 -43939470141303:43939470141939 26086:26091 hsa_system_get_info(2, 0x7fc634010bf0) = 0 -43939470142700:43939470143329 26086:26091 hsa_system_get_info(2, 0x7fc634010bf8) = 0 -43939470144091:43939470144716 26086:26091 hsa_system_get_info(2, 0x7fc634010c00) = 0 -43939470145480:43939470146110 26086:26091 hsa_system_get_info(2, 0x7fc634010c08) = 0 -43939470146875:43939470147503 26086:26091 hsa_system_get_info(2, 0x7fc634010c10) = 0 -43939470148265:43939470148895 26086:26091 hsa_system_get_info(2, 0x7fc634010c18) = 0 -43939470149655:43939470150282 26086:26091 hsa_system_get_info(2, 0x7fc634010c20) = 0 -43939470151046:43939470151669 26086:26091 hsa_system_get_info(2, 0x7fc634010c28) = 0 -43939470152431:43939470153057 26086:26091 hsa_system_get_info(2, 0x7fc634010c30) = 0 -43939470153812:43939470154442 26086:26091 hsa_system_get_info(2, 0x7fc634010c38) = 0 -43939470155201:43939470155836 26086:26091 hsa_system_get_info(2, 0x7fc634010c40) = 0 -43939470156612:43939470157244 26086:26091 hsa_system_get_info(2, 0x7fc634010c48) = 0 -43939470158004:43939470158630 26086:26091 hsa_system_get_info(2, 0x7fc634010c50) = 0 -43939470159389:43939470160022 26086:26091 hsa_system_get_info(2, 0x7fc634010c58) = 0 -43939470160784:43939470161416 26086:26091 hsa_system_get_info(2, 0x7fc634010c60) = 0 -43939470162181:43939470162814 26086:26091 hsa_system_get_info(2, 0x7fc634010c68) = 0 -43939470163578:43939470164213 26086:26091 hsa_system_get_info(2, 0x7fc634010c70) = 0 -43939470164976:43939470165607 26086:26091 hsa_system_get_info(2, 0x7fc634010c78) = 0 -43939470166368:43939470166995 26086:26091 hsa_system_get_info(2, 0x7fc634010c80) = 0 -43939470167757:43939470168390 26086:26091 hsa_system_get_info(2, 0x7fc634010c88) = 0 -43939470169154:43939470169790 26086:26091 hsa_system_get_info(2, 0x7fc634010c90) = 0 -43939470170552:43939470171184 26086:26091 hsa_system_get_info(2, 0x7fc634010c98) = 0 -43939470171946:43939470172578 26086:26091 hsa_system_get_info(2, 0x7fc634010ca0) = 0 -43939470173337:43939470173976 26086:26091 hsa_system_get_info(2, 0x7fc634010ca8) = 0 -43939470174741:43939470175383 26086:26091 hsa_system_get_info(2, 0x7fc634010cb0) = 0 -43939470176142:43939470176769 26086:26091 hsa_system_get_info(2, 0x7fc634010cb8) = 0 -43939470177526:43939470178155 26086:26091 hsa_system_get_info(2, 0x7fc634010cc0) = 0 -43939470178915:43939470179543 26086:26091 hsa_system_get_info(2, 0x7fc634010cc8) = 0 -43939470180305:43939470180935 26086:26091 hsa_system_get_info(2, 0x7fc634010cd0) = 0 -43939470182423:43939470183063 26086:26091 hsa_system_get_info(2, 0x7fc634010cd8) = 0 -43939470183829:43939470184459 26086:26091 hsa_system_get_info(2, 0x7fc634010ce0) = 0 -43939470185217:43939470185846 26086:26091 hsa_system_get_info(2, 0x7fc634010ce8) = 0 -43939470186605:43939470187230 26086:26091 hsa_system_get_info(2, 0x7fc634010cf0) = 0 -43939470187987:43939470188620 26086:26091 hsa_system_get_info(2, 0x7fc634010cf8) = 0 -43939470189382:43939470190017 26086:26091 hsa_system_get_info(2, 0x7fc634010d00) = 0 -43939470190780:43939470191410 26086:26091 hsa_system_get_info(2, 0x7fc634010d08) = 0 -43939470192174:43939470192801 26086:26091 hsa_system_get_info(2, 0x7fc634010d10) = 0 -43939470193563:43939470194198 26086:26091 hsa_system_get_info(2, 0x7fc634010d18) = 0 -43939470194961:43939470195589 26086:26091 hsa_system_get_info(2, 0x7fc634010d20) = 0 -43939470196360:43939470196993 26086:26091 hsa_system_get_info(2, 0x7fc634010d28) = 0 -43939470197781:43939470198411 26086:26091 hsa_system_get_info(2, 0x7fc634010d30) = 0 -43939470199173:43939470199823 26086:26091 hsa_system_get_info(2, 0x7fc634010d38) = 0 -43939470200584:43939470201208 26086:26091 hsa_system_get_info(2, 0x7fc634010d40) = 0 -43939470201972:43939470202603 26086:26091 hsa_system_get_info(2, 0x7fc634010d48) = 0 -43939470203364:43939470203988 26086:26091 hsa_system_get_info(2, 0x7fc634010d50) = 0 -43939470204751:43939470205387 26086:26091 hsa_system_get_info(2, 0x7fc634010d58) = 0 -43939470206147:43939470206782 26086:26091 hsa_system_get_info(2, 0x7fc634010d60) = 0 -43939470207546:43939470208177 26086:26091 hsa_system_get_info(2, 0x7fc634010d68) = 0 -43939470208941:43939470209577 26086:26091 hsa_system_get_info(2, 0x7fc634010d70) = 0 -43939470210338:43939470210970 26086:26091 hsa_system_get_info(2, 0x7fc634010d78) = 0 -43939470211732:43939470212362 26086:26091 hsa_system_get_info(2, 0x7fc634010d80) = 0 -43939470213123:43939470213754 26086:26091 hsa_system_get_info(2, 0x7fc634010d88) = 0 -43939470214517:43939470215137 26086:26091 hsa_system_get_info(2, 0x7fc634010d90) = 0 -43939470215920:43939470216553 26086:26091 hsa_system_get_info(2, 0x7fc634010d98) = 0 -43939470217312:43939470217936 26086:26091 hsa_system_get_info(2, 0x7fc634010da0) = 0 -43939470218697:43939470219327 26086:26091 hsa_system_get_info(2, 0x7fc634010da8) = 0 -43939470220087:43939470220715 26086:26091 hsa_system_get_info(2, 0x7fc634010db0) = 0 -43939470222256:43939470222884 26086:26091 hsa_system_get_info(2, 0x7fc634010db8) = 0 -43939470223648:43939470224269 26086:26091 hsa_system_get_info(2, 0x7fc634010dc0) = 0 -43939470225032:43939470225661 26086:26091 hsa_system_get_info(2, 0x7fc634010dc8) = 0 -43939470226422:43939470227042 26086:26091 hsa_system_get_info(2, 0x7fc634010dd0) = 0 -43939470227807:43939470228434 26086:26091 hsa_system_get_info(2, 0x7fc634010dd8) = 0 -43939470229195:43939470229828 26086:26091 hsa_system_get_info(2, 0x7fc634010de0) = 0 -43939470230589:43939470231222 26086:26091 hsa_system_get_info(2, 0x7fc634010de8) = 0 -43939470231982:43939470232616 26086:26091 hsa_system_get_info(2, 0x7fc634010df0) = 0 -43939470233378:43939470234012 26086:26091 hsa_system_get_info(2, 0x7fc634010df8) = 0 -43939470234771:43939470235397 26086:26091 hsa_system_get_info(2, 0x7fc634010e00) = 0 -43939470236153:43939470236777 26086:26091 hsa_system_get_info(2, 0x7fc634010e08) = 0 -43939470237545:43939470238175 26086:26091 hsa_system_get_info(2, 0x7fc634010e10) = 0 -43939470238938:43939470239576 26086:26091 hsa_system_get_info(2, 0x7fc634010e18) = 0 -43939470240338:43939470240962 26086:26091 hsa_system_get_info(2, 0x7fc634010e20) = 0 -43939470241719:43939470242340 26086:26091 hsa_system_get_info(2, 0x7fc634010e28) = 0 -43939470243107:43939470243731 26086:26091 hsa_system_get_info(2, 0x7fc634010e30) = 0 -43939470244497:43939470245128 26086:26091 hsa_system_get_info(2, 0x7fc634010e38) = 0 -43939470245902:43939470246542 26086:26091 hsa_system_get_info(2, 0x7fc634010e40) = 0 -43939470247303:43939470247939 26086:26091 hsa_system_get_info(2, 0x7fc634010e48) = 0 -43939470248702:43939470249326 26086:26091 hsa_system_get_info(2, 0x7fc634010e50) = 0 -43939470250087:43939470250713 26086:26091 hsa_system_get_info(2, 0x7fc634010e58) = 0 -43939470251473:43939470252098 26086:26091 hsa_system_get_info(2, 0x7fc634010e60) = 0 -43939470252857:43939470253484 26086:26091 hsa_system_get_info(2, 0x7fc634010e68) = 0 -43939470254242:43939470254869 26086:26091 hsa_system_get_info(2, 0x7fc634010e70) = 0 -43939470255631:43939470256258 26086:26091 hsa_system_get_info(2, 0x7fc634010e78) = 0 -43939470257021:43939470257648 26086:26091 hsa_system_get_info(2, 0x7fc634010e80) = 0 -43939470258412:43939470259042 26086:26091 hsa_system_get_info(2, 0x7fc634010e88) = 0 -43939470259810:43939470260441 26086:26091 hsa_system_get_info(2, 0x7fc634010e90) = 0 -43939470261921:43939470262557 26086:26091 hsa_system_get_info(2, 0x7fc634010e98) = 0 -43939470263318:43939470263955 26086:26091 hsa_system_get_info(2, 0x7fc634010ea0) = 0 -43939470264721:43939470265354 26086:26091 hsa_system_get_info(2, 0x7fc634010ea8) = 0 -43939470266139:43939470266770 26086:26091 hsa_system_get_info(2, 0x7fc634010eb0) = 0 -43939470267531:43939470268163 26086:26091 hsa_system_get_info(2, 0x7fc634010eb8) = 0 -43939470268927:43939470269558 26086:26091 hsa_system_get_info(2, 0x7fc634010ec0) = 0 -43939470270323:43939470270954 26086:26091 hsa_system_get_info(2, 0x7fc634010ec8) = 0 -43939470271707:43939470272330 26086:26091 hsa_system_get_info(2, 0x7fc634010ed0) = 0 -43939470273089:43939470273711 26086:26091 hsa_system_get_info(2, 0x7fc634010ed8) = 0 -43939470274471:43939470275102 26086:26091 hsa_system_get_info(2, 0x7fc634010ee0) = 0 -43939470275867:43939470276489 26086:26091 hsa_system_get_info(2, 0x7fc634010ee8) = 0 -43939470277253:43939470277880 26086:26091 hsa_system_get_info(2, 0x7fc634010ef0) = 0 -43939470278660:43939470279287 26086:26091 hsa_system_get_info(2, 0x7fc634010ef8) = 0 -43939470280045:43939470280667 26086:26091 hsa_system_get_info(2, 0x7fc634010f00) = 0 -43939470281428:43939470282059 26086:26091 hsa_system_get_info(2, 0x7fc634010f08) = 0 -43939470282819:43939470283450 26086:26091 hsa_system_get_info(2, 0x7fc634010f10) = 0 -43939470284223:43939470284854 26086:26091 hsa_system_get_info(2, 0x7fc634010f18) = 0 -43939470285617:43939470286245 26086:26091 hsa_system_get_info(2, 0x7fc634010f20) = 0 -43939470287026:43939470287653 26086:26091 hsa_system_get_info(2, 0x7fc634010f28) = 0 -43939470288413:43939470289039 26086:26091 hsa_system_get_info(2, 0x7fc634010f30) = 0 -43939470289799:43939470290420 26086:26091 hsa_system_get_info(2, 0x7fc634010f38) = 0 -43939470291183:43939470291810 26086:26091 hsa_system_get_info(2, 0x7fc634010f40) = 0 -43939470292571:43939470293198 26086:26091 hsa_system_get_info(2, 0x7fc634010f48) = 0 -43939470293959:43939470294595 26086:26091 hsa_system_get_info(2, 0x7fc634010f50) = 0 -43939470295358:43939470295979 26086:26091 hsa_system_get_info(2, 0x7fc634010f58) = 0 -43939470310530:43939470311185 26086:26091 hsa_system_get_info(2, 0x7fc63400f020) = 0 -43939470312000:43939470312633 26086:26091 hsa_system_get_info(2, 0x7fc63400f028) = 0 -43939470313398:43939470314021 26086:26091 hsa_system_get_info(2, 0x7fc63400f030) = 0 -43939470314778:43939470315401 26086:26091 hsa_system_get_info(2, 0x7fc63400f038) = 0 -43939470316963:43939470317593 26086:26091 hsa_system_get_info(2, 0x7fc63400f040) = 0 -43939470318345:43939470318966 26086:26091 hsa_system_get_info(2, 0x7fc63400f048) = 0 -43939470319724:43939470320353 26086:26091 hsa_system_get_info(2, 0x7fc63400f050) = 0 -43939470321113:43939470321751 26086:26091 hsa_system_get_info(2, 0x7fc63400f058) = 0 -43939470322511:43939470323142 26086:26091 hsa_system_get_info(2, 0x7fc63400f060) = 0 -43939470323894:43939470324523 26086:26091 hsa_system_get_info(2, 0x7fc63400f068) = 0 -43939470325278:43939470325909 26086:26091 hsa_system_get_info(2, 0x7fc63400f070) = 0 -43939470326666:43939470327295 26086:26091 hsa_system_get_info(2, 0x7fc63400f078) = 0 -43939470328049:43939470328678 26086:26091 hsa_system_get_info(2, 0x7fc63400f080) = 0 -43939470329433:43939470330063 26086:26091 hsa_system_get_info(2, 0x7fc63400f088) = 0 -43939470330823:43939470331457 26086:26091 hsa_system_get_info(2, 0x7fc63400f090) = 0 -43939470332210:43939470332838 26086:26091 hsa_system_get_info(2, 0x7fc63400f098) = 0 -43939470333599:43939470334232 26086:26091 hsa_system_get_info(2, 0x7fc63400f0a0) = 0 -43939470335001:43939470335634 26086:26091 hsa_system_get_info(2, 0x7fc63400f0a8) = 0 -43939470336395:43939470337026 26086:26091 hsa_system_get_info(2, 0x7fc63400f0b0) = 0 -43939470337781:43939470338411 26086:26091 hsa_system_get_info(2, 0x7fc63400f0b8) = 0 -43939470339167:43939470339798 26086:26091 hsa_system_get_info(2, 0x7fc63400f0c0) = 0 -43939470340569:43939470341200 26086:26091 hsa_system_get_info(2, 0x7fc63400f0c8) = 0 -43939470341953:43939470342583 26086:26091 hsa_system_get_info(2, 0x7fc63400f0d0) = 0 -43939470343337:43939470343961 26086:26091 hsa_system_get_info(2, 0x7fc63400f0d8) = 0 -43939470344715:43939470345340 26086:26091 hsa_system_get_info(2, 0x7fc63400f0e0) = 0 -43939470346092:43939470346717 26086:26091 hsa_system_get_info(2, 0x7fc63400f0e8) = 0 -43939470347469:43939470348099 26086:26091 hsa_system_get_info(2, 0x7fc63400f0f0) = 0 -43939470348851:43939470349472 26086:26091 hsa_system_get_info(2, 0x7fc63400f0f8) = 0 -43939470350229:43939470350859 26086:26091 hsa_system_get_info(2, 0x7fc63400f100) = 0 -43939470351616:43939470352254 26086:26091 hsa_system_get_info(2, 0x7fc63400f108) = 0 -43939470353012:43939470353642 26086:26091 hsa_system_get_info(2, 0x7fc63400f110) = 0 -43939470354400:43939470355023 26086:26091 hsa_system_get_info(2, 0x7fc63400f118) = 0 -43939470356517:43939470357145 26086:26091 hsa_system_get_info(2, 0x7fc63400f120) = 0 -43939470357903:43939470358530 26086:26091 hsa_system_get_info(2, 0x7fc63400f128) = 0 -43939470359284:43939470359916 26086:26091 hsa_system_get_info(2, 0x7fc63400f130) = 0 -43939470360673:43939470361310 26086:26091 hsa_system_get_info(2, 0x7fc63400f138) = 0 -43939470362067:43939470362692 26086:26091 hsa_system_get_info(2, 0x7fc63400f140) = 0 -43939470363452:43939470364081 26086:26091 hsa_system_get_info(2, 0x7fc63400f148) = 0 -43939470364837:43939470365470 26086:26091 hsa_system_get_info(2, 0x7fc63400f150) = 0 -43939470366229:43939470366859 26086:26091 hsa_system_get_info(2, 0x7fc63400f158) = 0 -43939470367619:43939470368249 26086:26091 hsa_system_get_info(2, 0x7fc63400f160) = 0 -43939470369004:43939470369635 26086:26091 hsa_system_get_info(2, 0x7fc63400f168) = 0 -43939470370394:43939470371022 26086:26091 hsa_system_get_info(2, 0x7fc63400f170) = 0 -43939470371777:43939470372407 26086:26091 hsa_system_get_info(2, 0x7fc63400f178) = 0 -43939470373165:43939470373793 26086:26091 hsa_system_get_info(2, 0x7fc63400f180) = 0 -43939470374546:43939470375173 26086:26091 hsa_system_get_info(2, 0x7fc63400f188) = 0 -43939470375940:43939470376568 26086:26091 hsa_system_get_info(2, 0x7fc63400f190) = 0 -43939470377335:43939470377963 26086:26091 hsa_system_get_info(2, 0x7fc63400f198) = 0 -43939470378718:43939470379342 26086:26091 hsa_system_get_info(2, 0x7fc63400f1a0) = 0 -43939470380096:43939470380726 26086:26091 hsa_system_get_info(2, 0x7fc63400f1a8) = 0 -43939470381480:43939470382107 26086:26091 hsa_system_get_info(2, 0x7fc63400f1b0) = 0 -43939470382863:43939470383492 26086:26091 hsa_system_get_info(2, 0x7fc63400f1b8) = 0 -43939470384249:43939470384875 26086:26091 hsa_system_get_info(2, 0x7fc63400f1c0) = 0 -43939470385634:43939470386260 26086:26091 hsa_system_get_info(2, 0x7fc63400f1c8) = 0 -43939470387012:43939470387641 26086:26091 hsa_system_get_info(2, 0x7fc63400f1d0) = 0 -43939470388395:43939470389027 26086:26091 hsa_system_get_info(2, 0x7fc63400f1d8) = 0 -43939470389788:43939470390418 26086:26091 hsa_system_get_info(2, 0x7fc63400f1e0) = 0 -43939470391174:43939470391809 26086:26091 hsa_system_get_info(2, 0x7fc63400f1e8) = 0 -43939470392573:43939470393204 26086:26091 hsa_system_get_info(2, 0x7fc63400f1f0) = 0 -43939470393963:43939470394590 26086:26091 hsa_system_get_info(2, 0x7fc63400f1f8) = 0 -43939470395347:43939470395976 26086:26091 hsa_system_get_info(2, 0x7fc63400f200) = 0 -43939470397490:43939470398127 26086:26091 hsa_system_get_info(2, 0x7fc63400f208) = 0 -43939470398880:43939470399498 26086:26091 hsa_system_get_info(2, 0x7fc63400f210) = 0 -43939470400258:43939470400882 26086:26091 hsa_system_get_info(2, 0x7fc63400f218) = 0 -43939470401634:43939470402263 26086:26091 hsa_system_get_info(2, 0x7fc63400f220) = 0 -43939470403019:43939470403644 26086:26091 hsa_system_get_info(2, 0x7fc63400f228) = 0 -43939470404399:43939470405023 26086:26091 hsa_system_get_info(2, 0x7fc63400f230) = 0 -43939470405782:43939470406415 26086:26091 hsa_system_get_info(2, 0x7fc63400f238) = 0 -43939470407172:43939470407795 26086:26091 hsa_system_get_info(2, 0x7fc63400f240) = 0 -43939470408551:43939470409175 26086:26091 hsa_system_get_info(2, 0x7fc63400f248) = 0 -43939470409929:43939470410563 26086:26091 hsa_system_get_info(2, 0x7fc63400f250) = 0 -43939470411316:43939470411940 26086:26091 hsa_system_get_info(2, 0x7fc63400f258) = 0 -43939470412695:43939470413325 26086:26091 hsa_system_get_info(2, 0x7fc63400f260) = 0 -43939470414081:43939470414714 26086:26091 hsa_system_get_info(2, 0x7fc63400f268) = 0 -43939470415487:43939470416112 26086:26091 hsa_system_get_info(2, 0x7fc63400f270) = 0 -43939470416867:43939470417494 26086:26091 hsa_system_get_info(2, 0x7fc63400f278) = 0 -43939470418248:43939470418874 26086:26091 hsa_system_get_info(2, 0x7fc63400f280) = 0 -43939470419631:43939470420263 26086:26091 hsa_system_get_info(2, 0x7fc63400f288) = 0 -43939470421016:43939470421653 26086:26091 hsa_system_get_info(2, 0x7fc63400f290) = 0 -43939470422413:43939470423039 26086:26091 hsa_system_get_info(2, 0x7fc63400f298) = 0 -43939470423794:43939470424423 26086:26091 hsa_system_get_info(2, 0x7fc63400f2a0) = 0 -43939470425183:43939470425812 26086:26091 hsa_system_get_info(2, 0x7fc63400f2a8) = 0 -43939470426565:43939470427188 26086:26091 hsa_system_get_info(2, 0x7fc63400f2b0) = 0 -43939470427945:43939470428574 26086:26091 hsa_system_get_info(2, 0x7fc63400f2b8) = 0 -43939470429330:43939470429957 26086:26091 hsa_system_get_info(2, 0x7fc63400f2c0) = 0 -43939470430711:43939470431339 26086:26091 hsa_system_get_info(2, 0x7fc63400f2c8) = 0 -43939470432094:43939470432716 26086:26091 hsa_system_get_info(2, 0x7fc63400f2d0) = 0 -43939470433469:43939470434093 26086:26091 hsa_system_get_info(2, 0x7fc63400f2d8) = 0 -43939470434850:43939470435489 26086:26091 hsa_system_get_info(2, 0x7fc63400f2e0) = 0 -43939470436993:43939470437628 26086:26091 hsa_system_get_info(2, 0x7fc63400f2e8) = 0 -43939470438381:43939470439006 26086:26091 hsa_system_get_info(2, 0x7fc63400f2f0) = 0 -43939470439760:43939470440390 26086:26091 hsa_system_get_info(2, 0x7fc63400f2f8) = 0 -43939470441146:43939470441782 26086:26091 hsa_system_get_info(2, 0x7fc63400f300) = 0 -43939470442540:43939470443171 26086:26091 hsa_system_get_info(2, 0x7fc63400f308) = 0 -43939470443925:43939470444554 26086:26091 hsa_system_get_info(2, 0x7fc63400f310) = 0 -43939470445312:43939470445940 26086:26091 hsa_system_get_info(2, 0x7fc63400f318) = 0 -43939470446697:43939470447325 26086:26091 hsa_system_get_info(2, 0x7fc63400f320) = 0 -43939470448079:43939470448710 26086:26091 hsa_system_get_info(2, 0x7fc63400f328) = 0 -43939470449468:43939470450090 26086:26091 hsa_system_get_info(2, 0x7fc63400f330) = 0 -43939470450848:43939470451471 26086:26091 hsa_system_get_info(2, 0x7fc63400f338) = 0 -43939470452229:43939470452859 26086:26091 hsa_system_get_info(2, 0x7fc63400f340) = 0 -43939470453620:43939470454250 26086:26091 hsa_system_get_info(2, 0x7fc63400f348) = 0 -43939470455022:43939470455651 26086:26091 hsa_system_get_info(2, 0x7fc63400f350) = 0 -43939470456408:43939470457035 26086:26091 hsa_system_get_info(2, 0x7fc63400f358) = 0 -43939470457799:43939470458425 26086:26091 hsa_system_get_info(2, 0x7fc63400f360) = 0 -43939470459184:43939470459820 26086:26091 hsa_system_get_info(2, 0x7fc63400f368) = 0 -43939470460576:43939470461205 26086:26091 hsa_system_get_info(2, 0x7fc63400f370) = 0 -43939470461982:43939470462617 26086:26091 hsa_system_get_info(2, 0x7fc63400f378) = 0 -43939470463376:43939470464007 26086:26091 hsa_system_get_info(2, 0x7fc63400f380) = 0 -43939470464761:43939470465390 26086:26091 hsa_system_get_info(2, 0x7fc63400f388) = 0 -43939470466150:43939470466789 26086:26091 hsa_system_get_info(2, 0x7fc63400f390) = 0 -43939470467551:43939470468182 26086:26091 hsa_system_get_info(2, 0x7fc63400f398) = 0 -43939470468939:43939470469567 26086:26091 hsa_system_get_info(2, 0x7fc63400f3a0) = 0 -43939470470331:43939470470959 26086:26091 hsa_system_get_info(2, 0x7fc63400f3a8) = 0 -43939470471718:43939470472349 26086:26091 hsa_system_get_info(2, 0x7fc63400f3b0) = 0 -43939470473105:43939470473729 26086:26091 hsa_system_get_info(2, 0x7fc63400f3b8) = 0 -43939470474481:43939470475113 26086:26091 hsa_system_get_info(2, 0x7fc63400f3c0) = 0 -43939470475871:43939470476505 26086:26091 hsa_system_get_info(2, 0x7fc63400f3c8) = 0 -43939470478015:43939470478646 26086:26091 hsa_system_get_info(2, 0x7fc63400f3d0) = 0 -43939470479399:43939470480029 26086:26091 hsa_system_get_info(2, 0x7fc63400f3d8) = 0 -43939470480787:43939470481414 26086:26091 hsa_system_get_info(2, 0x7fc63400f3e0) = 0 -43939470482176:43939470482809 26086:26091 hsa_system_get_info(2, 0x7fc63400f3e8) = 0 -43939470483567:43939470484190 26086:26091 hsa_system_get_info(2, 0x7fc63400f3f0) = 0 -43939470484948:43939470485577 26086:26091 hsa_system_get_info(2, 0x7fc63400f3f8) = 0 -43939470486329:43939470486952 26086:26091 hsa_system_get_info(2, 0x7fc63400f400) = 0 -43939470487708:43939470488340 26086:26091 hsa_system_get_info(2, 0x7fc63400f408) = 0 -43939470489099:43939470489724 26086:26091 hsa_system_get_info(2, 0x7fc63400f410) = 0 -43939470490483:43939470491114 26086:26091 hsa_system_get_info(2, 0x7fc63400f418) = 0 -43939470491875:43939470492507 26086:26091 hsa_system_get_info(2, 0x7fc63400f420) = 0 -43939470493273:43939470493905 26086:26091 hsa_system_get_info(2, 0x7fc63400f428) = 0 -43939470494685:43939470495324 26086:26091 hsa_system_get_info(2, 0x7fc63400f430) = 0 -43939470496075:43939470496698 26086:26091 hsa_system_get_info(2, 0x7fc63400f438) = 0 -43939470497458:43939470498087 26086:26091 hsa_system_get_info(2, 0x7fc63400f440) = 0 -43939470498840:43939470499468 26086:26091 hsa_system_get_info(2, 0x7fc63400f448) = 0 -43939470500225:43939470500856 26086:26091 hsa_system_get_info(2, 0x7fc63400f450) = 0 -43939470501616:43939470502241 26086:26091 hsa_system_get_info(2, 0x7fc63400f458) = 0 -43939470502996:43939470503626 26086:26091 hsa_system_get_info(2, 0x7fc63400f460) = 0 -43939470504381:43939470505014 26086:26091 hsa_system_get_info(2, 0x7fc63400f468) = 0 -43939470505772:43939470506404 26086:26091 hsa_system_get_info(2, 0x7fc63400f470) = 0 -43939470507161:43939470507790 26086:26091 hsa_system_get_info(2, 0x7fc63400f478) = 0 -43939470508543:43939470509175 26086:26091 hsa_system_get_info(2, 0x7fc63400f480) = 0 -43939470509931:43939470510557 26086:26091 hsa_system_get_info(2, 0x7fc63400f488) = 0 -43939470511317:43939470511950 26086:26091 hsa_system_get_info(2, 0x7fc63400f490) = 0 -43939470512705:43939470513342 26086:26091 hsa_system_get_info(2, 0x7fc63400f498) = 0 -43939470514094:43939470514719 26086:26091 hsa_system_get_info(2, 0x7fc63400f4a0) = 0 -43939470515488:43939470516117 26086:26091 hsa_system_get_info(2, 0x7fc63400f4a8) = 0 -43939470517630:43939470518261 26086:26091 hsa_system_get_info(2, 0x7fc63400f4b0) = 0 -43939470519015:43939470519650 26086:26091 hsa_system_get_info(2, 0x7fc63400f4b8) = 0 -43939470520401:43939470521028 26086:26091 hsa_system_get_info(2, 0x7fc63400f4c0) = 0 -43939470521787:43939470522411 26086:26091 hsa_system_get_info(2, 0x7fc63400f4c8) = 0 -43939470523168:43939470523799 26086:26091 hsa_system_get_info(2, 0x7fc63400f4d0) = 0 -43939470524553:43939470525181 26086:26091 hsa_system_get_info(2, 0x7fc63400f4d8) = 0 -43939470525939:43939470526565 26086:26091 hsa_system_get_info(2, 0x7fc63400f4e0) = 0 -43939470527322:43939470527955 26086:26091 hsa_system_get_info(2, 0x7fc63400f4e8) = 0 -43939470528715:43939470529345 26086:26091 hsa_system_get_info(2, 0x7fc63400f4f0) = 0 -43939470530102:43939470530736 26086:26091 hsa_system_get_info(2, 0x7fc63400f4f8) = 0 -43939470531494:43939470532127 26086:26091 hsa_system_get_info(2, 0x7fc63400f500) = 0 -43939470532883:43939470533510 26086:26091 hsa_system_get_info(2, 0x7fc63400f508) = 0 -43939470534275:43939470534906 26086:26091 hsa_system_get_info(2, 0x7fc63400f510) = 0 -43939470535678:43939470536305 26086:26091 hsa_system_get_info(2, 0x7fc63400f518) = 0 -43939470537060:43939470537689 26086:26091 hsa_system_get_info(2, 0x7fc63400f520) = 0 -43939470538466:43939470539093 26086:26091 hsa_system_get_info(2, 0x7fc63400f528) = 0 -43939470539851:43939470540481 26086:26091 hsa_system_get_info(2, 0x7fc63400f530) = 0 -43939470541237:43939470541862 26086:26091 hsa_system_get_info(2, 0x7fc63400f538) = 0 -43939470542618:43939470543244 26086:26091 hsa_system_get_info(2, 0x7fc63400f540) = 0 -43939470544000:43939470544626 26086:26091 hsa_system_get_info(2, 0x7fc63400f548) = 0 -43939470545381:43939470546007 26086:26091 hsa_system_get_info(2, 0x7fc63400f550) = 0 -43939470546760:43939470547392 26086:26091 hsa_system_get_info(2, 0x7fc63400f558) = 0 -43939470548147:43939470548777 26086:26091 hsa_system_get_info(2, 0x7fc63400f560) = 0 -43939470549534:43939470550163 26086:26091 hsa_system_get_info(2, 0x7fc63400f568) = 0 -43939470550916:43939470551539 26086:26091 hsa_system_get_info(2, 0x7fc63400f570) = 0 -43939470552295:43939470552925 26086:26091 hsa_system_get_info(2, 0x7fc63400f578) = 0 -43939470553679:43939470554310 26086:26091 hsa_system_get_info(2, 0x7fc63400f580) = 0 -43939470555066:43939470555701 26086:26091 hsa_system_get_info(2, 0x7fc63400f588) = 0 -43939470556460:43939470557091 26086:26091 hsa_system_get_info(2, 0x7fc63400f590) = 0 -43939470558647:43939470559283 26086:26091 hsa_system_get_info(2, 0x7fc63400f598) = 0 -43939470560041:43939470560665 26086:26091 hsa_system_get_info(2, 0x7fc63400f5a0) = 0 -43939470561421:43939470562050 26086:26091 hsa_system_get_info(2, 0x7fc63400f5a8) = 0 -43939470562806:43939470563431 26086:26091 hsa_system_get_info(2, 0x7fc63400f5b0) = 0 -43939470564193:43939470564831 26086:26091 hsa_system_get_info(2, 0x7fc63400f5b8) = 0 -43939470565593:43939470566226 26086:26091 hsa_system_get_info(2, 0x7fc63400f5c0) = 0 -43939470566984:43939470567619 26086:26091 hsa_system_get_info(2, 0x7fc63400f5c8) = 0 -43939470568377:43939470569000 26086:26091 hsa_system_get_info(2, 0x7fc63400f5d0) = 0 -43939470569760:43939470570390 26086:26091 hsa_system_get_info(2, 0x7fc63400f5d8) = 0 -43939470571148:43939470571781 26086:26091 hsa_system_get_info(2, 0x7fc63400f5e0) = 0 -43939470572540:43939470573176 26086:26091 hsa_system_get_info(2, 0x7fc63400f5e8) = 0 -43939470573959:43939470574589 26086:26091 hsa_system_get_info(2, 0x7fc63400f5f0) = 0 -43939470575344:43939470575977 26086:26091 hsa_system_get_info(2, 0x7fc63400f5f8) = 0 -43939470576744:43939470577368 26086:26091 hsa_system_get_info(2, 0x7fc63400f600) = 0 -43939470578123:43939470578753 26086:26091 hsa_system_get_info(2, 0x7fc63400f608) = 0 -43939470579507:43939470580142 26086:26091 hsa_system_get_info(2, 0x7fc63400f610) = 0 -43939470580894:43939470581522 26086:26091 hsa_system_get_info(2, 0x7fc63400f618) = 0 -43939470582277:43939470582914 26086:26091 hsa_system_get_info(2, 0x7fc63400f620) = 0 -43939470583667:43939470584292 26086:26091 hsa_system_get_info(2, 0x7fc63400f628) = 0 -43939470585047:43939470585680 26086:26091 hsa_system_get_info(2, 0x7fc63400f630) = 0 -43939470586441:43939470587064 26086:26091 hsa_system_get_info(2, 0x7fc63400f638) = 0 -43939470587816:43939470588439 26086:26091 hsa_system_get_info(2, 0x7fc63400f640) = 0 -43939470589195:43939470589819 26086:26091 hsa_system_get_info(2, 0x7fc63400f648) = 0 -43939470590588:43939470591216 26086:26091 hsa_system_get_info(2, 0x7fc63400f650) = 0 -43939470591970:43939470592598 26086:26091 hsa_system_get_info(2, 0x7fc63400f658) = 0 -43939470593354:43939470593981 26086:26091 hsa_system_get_info(2, 0x7fc63400f660) = 0 -43939470594732:43939470595359 26086:26091 hsa_system_get_info(2, 0x7fc63400f668) = 0 -43939470596112:43939470596731 26086:26091 hsa_system_get_info(2, 0x7fc63400f670) = 0 -43939470598242:43939470598875 26086:26091 hsa_system_get_info(2, 0x7fc63400f678) = 0 -43939470599634:43939470600258 26086:26091 hsa_system_get_info(2, 0x7fc63400f680) = 0 -43939470601025:43939470601663 26086:26091 hsa_system_get_info(2, 0x7fc63400f688) = 0 -43939470602423:43939470603054 26086:26091 hsa_system_get_info(2, 0x7fc63400f690) = 0 -43939470603808:43939470604436 26086:26091 hsa_system_get_info(2, 0x7fc63400f698) = 0 -43939470605194:43939470605814 26086:26091 hsa_system_get_info(2, 0x7fc63400f6a0) = 0 -43939470606567:43939470607195 26086:26091 hsa_system_get_info(2, 0x7fc63400f6a8) = 0 -43939470607947:43939470608573 26086:26091 hsa_system_get_info(2, 0x7fc63400f6b0) = 0 -43939470609331:43939470609954 26086:26091 hsa_system_get_info(2, 0x7fc63400f6b8) = 0 -43939470610712:43939470611337 26086:26091 hsa_system_get_info(2, 0x7fc63400f6c0) = 0 -43939470612095:43939470612723 26086:26091 hsa_system_get_info(2, 0x7fc63400f6c8) = 0 -43939470613480:43939470614109 26086:26091 hsa_system_get_info(2, 0x7fc63400f6d0) = 0 -43939470614872:43939470615510 26086:26091 hsa_system_get_info(2, 0x7fc63400f6d8) = 0 -43939470616271:43939470616903 26086:26091 hsa_system_get_info(2, 0x7fc63400f6e0) = 0 -43939470617659:43939470618306 26086:26091 hsa_system_get_info(2, 0x7fc63400f6e8) = 0 -43939470619063:43939470619693 26086:26091 hsa_system_get_info(2, 0x7fc63400f6f0) = 0 -43939470620449:43939470621079 26086:26091 hsa_system_get_info(2, 0x7fc63400f6f8) = 0 -43939470621834:43939470622466 26086:26091 hsa_system_get_info(2, 0x7fc63400f700) = 0 -43939470623220:43939470623857 26086:26091 hsa_system_get_info(2, 0x7fc63400f708) = 0 -43939470624612:43939470625249 26086:26091 hsa_system_get_info(2, 0x7fc63400f710) = 0 -43939470626003:43939470626636 26086:26091 hsa_system_get_info(2, 0x7fc63400f718) = 0 -43939470627392:43939470628024 26086:26091 hsa_system_get_info(2, 0x7fc63400f720) = 0 -43939470628784:43939470629418 26086:26091 hsa_system_get_info(2, 0x7fc63400f728) = 0 -43939470630172:43939470630800 26086:26091 hsa_system_get_info(2, 0x7fc63400f730) = 0 -43939470631572:43939470632204 26086:26091 hsa_system_get_info(2, 0x7fc63400f738) = 0 -43939470632962:43939470633592 26086:26091 hsa_system_get_info(2, 0x7fc63400f740) = 0 -43939470634345:43939470634969 26086:26091 hsa_system_get_info(2, 0x7fc63400f748) = 0 -43939470635726:43939470636354 26086:26091 hsa_system_get_info(2, 0x7fc63400f750) = 0 -43939470638657:43939470639286 26086:26091 hsa_system_get_info(2, 0x7fc63400f758) = 0 -43939470640044:43939470640674 26086:26091 hsa_system_get_info(2, 0x7fc63400f760) = 0 -43939470641427:43939470642050 26086:26091 hsa_system_get_info(2, 0x7fc63400f768) = 0 -43939470642808:43939470643438 26086:26091 hsa_system_get_info(2, 0x7fc63400f770) = 0 -43939470644201:43939470644823 26086:26091 hsa_system_get_info(2, 0x7fc63400f778) = 0 -43939470645578:43939470646203 26086:26091 hsa_system_get_info(2, 0x7fc63400f780) = 0 -43939470646964:43939470647595 26086:26091 hsa_system_get_info(2, 0x7fc63400f788) = 0 -43939470648353:43939470648984 26086:26091 hsa_system_get_info(2, 0x7fc63400f790) = 0 -43939470649743:43939470650376 26086:26091 hsa_system_get_info(2, 0x7fc63400f798) = 0 -43939470651133:43939470651763 26086:26091 hsa_system_get_info(2, 0x7fc63400f7a0) = 0 -43939470652521:43939470653152 26086:26091 hsa_system_get_info(2, 0x7fc63400f7a8) = 0 -43939470653925:43939470654556 26086:26091 hsa_system_get_info(2, 0x7fc63400f7b0) = 0 -43939470655328:43939470655961 26086:26091 hsa_system_get_info(2, 0x7fc63400f7b8) = 0 -43939470656718:43939470657351 26086:26091 hsa_system_get_info(2, 0x7fc63400f7c0) = 0 -43939470658106:43939470658738 26086:26091 hsa_system_get_info(2, 0x7fc63400f7c8) = 0 -43939470659490:43939470660120 26086:26091 hsa_system_get_info(2, 0x7fc63400f7d0) = 0 -43939470660873:43939470661507 26086:26091 hsa_system_get_info(2, 0x7fc63400f7d8) = 0 -43939470662269:43939470662900 26086:26091 hsa_system_get_info(2, 0x7fc63400f7e0) = 0 -43939470663658:43939470664288 26086:26091 hsa_system_get_info(2, 0x7fc63400f7e8) = 0 -43939470665044:43939470665674 26086:26091 hsa_system_get_info(2, 0x7fc63400f7f0) = 0 -43939470666431:43939470667055 26086:26091 hsa_system_get_info(2, 0x7fc63400f7f8) = 0 -43939470667814:43939470668443 26086:26091 hsa_system_get_info(2, 0x7fc63400f800) = 0 -43939470669198:43939470669834 26086:26091 hsa_system_get_info(2, 0x7fc63400f808) = 0 -43939470670587:43939470671217 26086:26091 hsa_system_get_info(2, 0x7fc63400f810) = 0 -43939470671974:43939470672597 26086:26091 hsa_system_get_info(2, 0x7fc63400f818) = 0 -43939470673356:43939470673997 26086:26091 hsa_system_get_info(2, 0x7fc63400f820) = 0 -43939470674774:43939470675401 26086:26091 hsa_system_get_info(2, 0x7fc63400f828) = 0 -43939470676159:43939470676783 26086:26091 hsa_system_get_info(2, 0x7fc63400f830) = 0 -43939470677537:43939470678167 26086:26091 hsa_system_get_info(2, 0x7fc63400f838) = 0 -43939470679640:43939470680290 26086:26091 hsa_system_get_info(2, 0x7fc63400f840) = 0 -43939470681043:43939470681670 26086:26091 hsa_system_get_info(2, 0x7fc63400f848) = 0 -43939470682423:43939470683050 26086:26091 hsa_system_get_info(2, 0x7fc63400f850) = 0 -43939470683812:43939470684442 26086:26091 hsa_system_get_info(2, 0x7fc63400f858) = 0 -43939470685197:43939470685831 26086:26091 hsa_system_get_info(2, 0x7fc63400f860) = 0 -43939470686588:43939470687222 26086:26091 hsa_system_get_info(2, 0x7fc63400f868) = 0 -43939470687978:43939470688609 26086:26091 hsa_system_get_info(2, 0x7fc63400f870) = 0 -43939470689365:43939470689993 26086:26091 hsa_system_get_info(2, 0x7fc63400f878) = 0 -43939470690748:43939470691384 26086:26091 hsa_system_get_info(2, 0x7fc63400f880) = 0 -43939470692139:43939470692768 26086:26091 hsa_system_get_info(2, 0x7fc63400f888) = 0 -43939470693525:43939470694156 26086:26091 hsa_system_get_info(2, 0x7fc63400f890) = 0 -43939470694911:43939470695540 26086:26091 hsa_system_get_info(2, 0x7fc63400f898) = 0 -43939470696302:43939470696930 26086:26091 hsa_system_get_info(2, 0x7fc63400f8a0) = 0 -43939470697685:43939470698320 26086:26091 hsa_system_get_info(2, 0x7fc63400f8a8) = 0 -43939470699094:43939470699725 26086:26091 hsa_system_get_info(2, 0x7fc63400f8b0) = 0 -43939470700484:43939470701113 26086:26091 hsa_system_get_info(2, 0x7fc63400f8b8) = 0 -43939470701877:43939470702510 26086:26091 hsa_system_get_info(2, 0x7fc63400f8c0) = 0 -43939470703268:43939470703902 26086:26091 hsa_system_get_info(2, 0x7fc63400f8c8) = 0 -43939470704669:43939470705303 26086:26091 hsa_system_get_info(2, 0x7fc63400f8d0) = 0 -43939470706055:43939470706679 26086:26091 hsa_system_get_info(2, 0x7fc63400f8d8) = 0 -43939470707435:43939470708063 26086:26091 hsa_system_get_info(2, 0x7fc63400f8e0) = 0 -43939470708818:43939470709446 26086:26091 hsa_system_get_info(2, 0x7fc63400f8e8) = 0 -43939470710202:43939470710837 26086:26091 hsa_system_get_info(2, 0x7fc63400f8f0) = 0 -43939470711593:43939470712229 26086:26091 hsa_system_get_info(2, 0x7fc63400f8f8) = 0 -43939470712989:43939470713622 26086:26091 hsa_system_get_info(2, 0x7fc63400f900) = 0 -43939470714379:43939470715007 26086:26091 hsa_system_get_info(2, 0x7fc63400f908) = 0 -43939470715763:43939470716391 26086:26091 hsa_system_get_info(2, 0x7fc63400f910) = 0 -43939470717144:43939470717771 26086:26091 hsa_system_get_info(2, 0x7fc63400f918) = 0 -43939470719832:43939470720464 26086:26091 hsa_system_get_info(2, 0x7fc63400f920) = 0 -43939470721222:43939470721854 26086:26091 hsa_system_get_info(2, 0x7fc63400f928) = 0 -43939470722608:43939470723236 26086:26091 hsa_system_get_info(2, 0x7fc63400f930) = 0 -43939470723992:43939470724616 26086:26091 hsa_system_get_info(2, 0x7fc63400f938) = 0 -43939470725374:43939470725998 26086:26091 hsa_system_get_info(2, 0x7fc63400f940) = 0 -43939470726758:43939470727388 26086:26091 hsa_system_get_info(2, 0x7fc63400f948) = 0 -43939470728147:43939470728778 26086:26091 hsa_system_get_info(2, 0x7fc63400f950) = 0 -43939470729532:43939470730157 26086:26091 hsa_system_get_info(2, 0x7fc63400f958) = 0 -43939470730916:43939470731541 26086:26091 hsa_system_get_info(2, 0x7fc63400f960) = 0 -43939470732300:43939470732925 26086:26091 hsa_system_get_info(2, 0x7fc63400f968) = 0 -43939470733684:43939470734310 26086:26091 hsa_system_get_info(2, 0x7fc63400f970) = 0 -43939470735081:43939470735715 26086:26091 hsa_system_get_info(2, 0x7fc63400f978) = 0 -43939470736477:43939470737107 26086:26091 hsa_system_get_info(2, 0x7fc63400f980) = 0 -43939470737863:43939470738493 26086:26091 hsa_system_get_info(2, 0x7fc63400f988) = 0 -43939470739248:43939470739873 26086:26091 hsa_system_get_info(2, 0x7fc63400f990) = 0 -43939470740632:43939470741258 26086:26091 hsa_system_get_info(2, 0x7fc63400f998) = 0 -43939470742013:43939470742640 26086:26091 hsa_system_get_info(2, 0x7fc63400f9a0) = 0 -43939470743397:43939470744024 26086:26091 hsa_system_get_info(2, 0x7fc63400f9a8) = 0 -43939470744794:43939470745426 26086:26091 hsa_system_get_info(2, 0x7fc63400f9b0) = 0 -43939470746187:43939470746821 26086:26091 hsa_system_get_info(2, 0x7fc63400f9b8) = 0 -43939470747579:43939470748206 26086:26091 hsa_system_get_info(2, 0x7fc63400f9c0) = 0 -43939470748962:43939470749594 26086:26091 hsa_system_get_info(2, 0x7fc63400f9c8) = 0 -43939470750354:43939470750990 26086:26091 hsa_system_get_info(2, 0x7fc63400f9d0) = 0 -43939470751751:43939470752384 26086:26091 hsa_system_get_info(2, 0x7fc63400f9d8) = 0 -43939470753141:43939470753769 26086:26091 hsa_system_get_info(2, 0x7fc63400f9e0) = 0 -43939470754524:43939470755155 26086:26091 hsa_system_get_info(2, 0x7fc63400f9e8) = 0 -43939470755915:43939470756545 26086:26091 hsa_system_get_info(2, 0x7fc63400f9f0) = 0 -43939470757303:43939470757923 26086:26091 hsa_system_get_info(2, 0x7fc63400f9f8) = 0 -43939470758682:43939470759313 26086:26091 hsa_system_get_info(2, 0x7fc63400fa00) = 0 -43939470760787:43939470761417 26086:26091 hsa_system_get_info(2, 0x7fc63400fa08) = 0 -43939470762170:43939470762797 26086:26091 hsa_system_get_info(2, 0x7fc63400fa10) = 0 -43939470763552:43939470764180 26086:26091 hsa_system_get_info(2, 0x7fc63400fa18) = 0 -43939470764938:43939470765564 26086:26091 hsa_system_get_info(2, 0x7fc63400fa20) = 0 -43939470766323:43939470766950 26086:26091 hsa_system_get_info(2, 0x7fc63400fa28) = 0 -43939470767707:43939470768334 26086:26091 hsa_system_get_info(2, 0x7fc63400fa30) = 0 -43939470769098:43939470769729 26086:26091 hsa_system_get_info(2, 0x7fc63400fa38) = 0 -43939470770476:43939470771106 26086:26091 hsa_system_get_info(2, 0x7fc63400fa40) = 0 -43939470771860:43939470772487 26086:26091 hsa_system_get_info(2, 0x7fc63400fa48) = 0 -43939470773241:43939470773873 26086:26091 hsa_system_get_info(2, 0x7fc63400fa50) = 0 -43939470774628:43939470775259 26086:26091 hsa_system_get_info(2, 0x7fc63400fa58) = 0 -43939470776020:43939470776655 26086:26091 hsa_system_get_info(2, 0x7fc63400fa60) = 0 -43939470777430:43939470778064 26086:26091 hsa_system_get_info(2, 0x7fc63400fa68) = 0 -43939470778819:43939470779451 26086:26091 hsa_system_get_info(2, 0x7fc63400fa70) = 0 -43939470780207:43939470780830 26086:26091 hsa_system_get_info(2, 0x7fc63400fa78) = 0 -43939470781590:43939470782219 26086:26091 hsa_system_get_info(2, 0x7fc63400fa80) = 0 -43939470782974:43939470783598 26086:26091 hsa_system_get_info(2, 0x7fc63400fa88) = 0 -43939470784357:43939470784981 26086:26091 hsa_system_get_info(2, 0x7fc63400fa90) = 0 -43939470785739:43939470786363 26086:26091 hsa_system_get_info(2, 0x7fc63400fa98) = 0 -43939470787120:43939470787743 26086:26091 hsa_system_get_info(2, 0x7fc63400faa0) = 0 -43939470788495:43939470789127 26086:26091 hsa_system_get_info(2, 0x7fc63400faa8) = 0 -43939470789881:43939470790507 26086:26091 hsa_system_get_info(2, 0x7fc63400fab0) = 0 -43939470791263:43939470791889 26086:26091 hsa_system_get_info(2, 0x7fc63400fab8) = 0 -43939470792646:43939470793276 26086:26091 hsa_system_get_info(2, 0x7fc63400fac0) = 0 -43939470794037:43939470794663 26086:26091 hsa_system_get_info(2, 0x7fc63400fac8) = 0 -43939470795421:43939470796055 26086:26091 hsa_system_get_info(2, 0x7fc63400fad0) = 0 -43939470796825:43939470797454 26086:26091 hsa_system_get_info(2, 0x7fc63400fad8) = 0 -43939470798208:43939470798845 26086:26091 hsa_system_get_info(2, 0x7fc63400fae0) = 0 -43939470800311:43939470800943 26086:26091 hsa_system_get_info(2, 0x7fc63400fae8) = 0 -43939470801702:43939470802325 26086:26091 hsa_system_get_info(2, 0x7fc63400faf0) = 0 -43939470803088:43939470803718 26086:26091 hsa_system_get_info(2, 0x7fc63400faf8) = 0 -43939470804472:43939470805096 26086:26091 hsa_system_get_info(2, 0x7fc63400fb00) = 0 -43939470805856:43939470806485 26086:26091 hsa_system_get_info(2, 0x7fc63400fb08) = 0 -43939470807242:43939470807867 26086:26091 hsa_system_get_info(2, 0x7fc63400fb10) = 0 -43939470808624:43939470809256 26086:26091 hsa_system_get_info(2, 0x7fc63400fb18) = 0 -43939470810015:43939470810637 26086:26091 hsa_system_get_info(2, 0x7fc63400fb20) = 0 -43939470811399:43939470812030 26086:26091 hsa_system_get_info(2, 0x7fc63400fb28) = 0 -43939470812788:43939470813411 26086:26091 hsa_system_get_info(2, 0x7fc63400fb30) = 0 -43939470814167:43939470814791 26086:26091 hsa_system_get_info(2, 0x7fc63400fb38) = 0 -43939470815551:43939470816179 26086:26091 hsa_system_get_info(2, 0x7fc63400fb40) = 0 -43939470816937:43939470817569 26086:26091 hsa_system_get_info(2, 0x7fc63400fb48) = 0 -43939470818339:43939470818968 26086:26091 hsa_system_get_info(2, 0x7fc63400fb50) = 0 -43939470819723:43939470820352 26086:26091 hsa_system_get_info(2, 0x7fc63400fb58) = 0 -43939470821105:43939470821730 26086:26091 hsa_system_get_info(2, 0x7fc63400fb60) = 0 -43939470822489:43939470823112 26086:26091 hsa_system_get_info(2, 0x7fc63400fb68) = 0 -43939470823867:43939470824493 26086:26091 hsa_system_get_info(2, 0x7fc63400fb70) = 0 -43939470825248:43939470825873 26086:26091 hsa_system_get_info(2, 0x7fc63400fb78) = 0 -43939470826644:43939470827264 26086:26091 hsa_system_get_info(2, 0x7fc63400fb80) = 0 -43939470828017:43939470828647 26086:26091 hsa_system_get_info(2, 0x7fc63400fb88) = 0 -43939470829403:43939470830034 26086:26091 hsa_system_get_info(2, 0x7fc63400fb90) = 0 -43939470830789:43939470831411 26086:26091 hsa_system_get_info(2, 0x7fc63400fb98) = 0 -43939470832161:43939470832790 26086:26091 hsa_system_get_info(2, 0x7fc63400fba0) = 0 -43939470833553:43939470834177 26086:26091 hsa_system_get_info(2, 0x7fc63400fba8) = 0 -43939470834932:43939470835560 26086:26091 hsa_system_get_info(2, 0x7fc63400fbb0) = 0 -43939470836313:43939470836937 26086:26091 hsa_system_get_info(2, 0x7fc63400fbb8) = 0 -43939470837691:43939470838320 26086:26091 hsa_system_get_info(2, 0x7fc63400fbc0) = 0 -43939470839079:43939470839705 26086:26091 hsa_system_get_info(2, 0x7fc63400fbc8) = 0 -43939470841175:43939470841802 26086:26091 hsa_system_get_info(2, 0x7fc63400fbd0) = 0 -43939470842558:43939470843192 26086:26091 hsa_system_get_info(2, 0x7fc63400fbd8) = 0 -43939470843947:43939470844574 26086:26091 hsa_system_get_info(2, 0x7fc63400fbe0) = 0 -43939470845334:43939470845963 26086:26091 hsa_system_get_info(2, 0x7fc63400fbe8) = 0 -43939470846724:43939470847351 26086:26091 hsa_system_get_info(2, 0x7fc63400fbf0) = 0 -43939470848109:43939470848738 26086:26091 hsa_system_get_info(2, 0x7fc63400fbf8) = 0 -43939470849495:43939470850126 26086:26091 hsa_system_get_info(2, 0x7fc63400fc00) = 0 -43939470850890:43939470851517 26086:26091 hsa_system_get_info(2, 0x7fc63400fc08) = 0 -43939470852277:43939470852900 26086:26091 hsa_system_get_info(2, 0x7fc63400fc10) = 0 -43939470853657:43939470854290 26086:26091 hsa_system_get_info(2, 0x7fc63400fc18) = 0 -43939470855048:43939470855678 26086:26091 hsa_system_get_info(2, 0x7fc63400fc20) = 0 -43939470856433:43939470857059 26086:26091 hsa_system_get_info(2, 0x7fc63400fc28) = 0 -43939470857849:43939470858477 26086:26091 hsa_system_get_info(2, 0x7fc63400fc30) = 0 -43939470859237:43939470859874 26086:26091 hsa_system_get_info(2, 0x7fc63400fc38) = 0 -43939470860632:43939470861259 26086:26091 hsa_system_get_info(2, 0x7fc63400fc40) = 0 -43939470862017:43939470862644 26086:26091 hsa_system_get_info(2, 0x7fc63400fc48) = 0 -43939470863405:43939470864039 26086:26091 hsa_system_get_info(2, 0x7fc63400fc50) = 0 -43939470864798:43939470865436 26086:26091 hsa_system_get_info(2, 0x7fc63400fc58) = 0 -43939470866195:43939470866828 26086:26091 hsa_system_get_info(2, 0x7fc63400fc60) = 0 -43939470867586:43939470868212 26086:26091 hsa_system_get_info(2, 0x7fc63400fc68) = 0 -43939470868966:43939470869593 26086:26091 hsa_system_get_info(2, 0x7fc63400fc70) = 0 -43939470870349:43939470870981 26086:26091 hsa_system_get_info(2, 0x7fc63400fc78) = 0 -43939470871738:43939470872373 26086:26091 hsa_system_get_info(2, 0x7fc63400fc80) = 0 -43939470873130:43939470873760 26086:26091 hsa_system_get_info(2, 0x7fc63400fc88) = 0 -43939470874533:43939470875163 26086:26091 hsa_system_get_info(2, 0x7fc63400fc90) = 0 -43939470875920:43939470876550 26086:26091 hsa_system_get_info(2, 0x7fc63400fc98) = 0 -43939470877307:43939470877937 26086:26091 hsa_system_get_info(2, 0x7fc63400fca0) = 0 -43939470878697:43939470879329 26086:26091 hsa_system_get_info(2, 0x7fc63400fca8) = 0 -43939470880805:43939470881435 26086:26091 hsa_system_get_info(2, 0x7fc63400fcb0) = 0 -43939470882186:43939470882805 26086:26091 hsa_system_get_info(2, 0x7fc63400fcb8) = 0 -43939470883561:43939470884188 26086:26091 hsa_system_get_info(2, 0x7fc63400fcc0) = 0 -43939470884942:43939470885575 26086:26091 hsa_system_get_info(2, 0x7fc63400fcc8) = 0 -43939470886329:43939470886957 26086:26091 hsa_system_get_info(2, 0x7fc63400fcd0) = 0 -43939470887718:43939470888344 26086:26091 hsa_system_get_info(2, 0x7fc63400fcd8) = 0 -43939470889101:43939470889729 26086:26091 hsa_system_get_info(2, 0x7fc63400fce0) = 0 -43939470890482:43939470891108 26086:26091 hsa_system_get_info(2, 0x7fc63400fce8) = 0 -43939470891861:43939470892492 26086:26091 hsa_system_get_info(2, 0x7fc63400fcf0) = 0 -43939470893246:43939470893872 26086:26091 hsa_system_get_info(2, 0x7fc63400fcf8) = 0 -43939470894630:43939470895252 26086:26091 hsa_system_get_info(2, 0x7fc63400fd00) = 0 -43939470896004:43939470896635 26086:26091 hsa_system_get_info(2, 0x7fc63400fd08) = 0 -43939470897389:43939470898017 26086:26091 hsa_system_get_info(2, 0x7fc63400fd10) = 0 -43939470898788:43939470899417 26086:26091 hsa_system_get_info(2, 0x7fc63400fd18) = 0 -43939470900174:43939470900807 26086:26091 hsa_system_get_info(2, 0x7fc63400fd20) = 0 -43939470901564:43939470902189 26086:26091 hsa_system_get_info(2, 0x7fc63400fd28) = 0 -43939470902947:43939470903571 26086:26091 hsa_system_get_info(2, 0x7fc63400fd30) = 0 -43939470904333:43939470904960 26086:26091 hsa_system_get_info(2, 0x7fc63400fd38) = 0 -43939470905720:43939470906355 26086:26091 hsa_system_get_info(2, 0x7fc63400fd40) = 0 -43939470907115:43939470907748 26086:26091 hsa_system_get_info(2, 0x7fc63400fd48) = 0 -43939470908501:43939470909133 26086:26091 hsa_system_get_info(2, 0x7fc63400fd50) = 0 -43939470909889:43939470910516 26086:26091 hsa_system_get_info(2, 0x7fc63400fd58) = 0 -43939470911273:43939470911920 26086:26091 hsa_system_get_info(2, 0x7fc63400fd60) = 0 -43939470912685:43939470913314 26086:26091 hsa_system_get_info(2, 0x7fc63400fd68) = 0 -43939470914076:43939470914705 26086:26091 hsa_system_get_info(2, 0x7fc63400fd70) = 0 -43939470915486:43939470916116 26086:26091 hsa_system_get_info(2, 0x7fc63400fd78) = 0 -43939470916876:43939470917508 26086:26091 hsa_system_get_info(2, 0x7fc63400fd80) = 0 -43939470918264:43939470918892 26086:26091 hsa_system_get_info(2, 0x7fc63400fd88) = 0 -43939470919651:43939470920281 26086:26091 hsa_system_get_info(2, 0x7fc63400fd90) = 0 -43939470921769:43939470922401 26086:26091 hsa_system_get_info(2, 0x7fc63400fd98) = 0 -43939470923160:43939470923785 26086:26091 hsa_system_get_info(2, 0x7fc63400fda0) = 0 -43939470924538:43939470925165 26086:26091 hsa_system_get_info(2, 0x7fc63400fda8) = 0 -43939470925922:43939470926555 26086:26091 hsa_system_get_info(2, 0x7fc63400fdb0) = 0 -43939470927313:43939470927946 26086:26091 hsa_system_get_info(2, 0x7fc63400fdb8) = 0 -43939470928704:43939470929327 26086:26091 hsa_system_get_info(2, 0x7fc63400fdc0) = 0 -43939470930086:43939470930707 26086:26091 hsa_system_get_info(2, 0x7fc63400fdc8) = 0 -43939470931467:43939470932095 26086:26091 hsa_system_get_info(2, 0x7fc63400fdd0) = 0 -43939470932853:43939470933478 26086:26091 hsa_system_get_info(2, 0x7fc63400fdd8) = 0 -43939470934235:43939470934864 26086:26091 hsa_system_get_info(2, 0x7fc63400fde0) = 0 -43939470935640:43939470936259 26086:26091 hsa_system_get_info(2, 0x7fc63400fde8) = 0 -43939470937071:43939470937695 26086:26091 hsa_system_get_info(2, 0x7fc63400fdf0) = 0 -43939470938458:43939470939086 26086:26091 hsa_system_get_info(2, 0x7fc63400fdf8) = 0 -43939470939849:43939470940478 26086:26091 hsa_system_get_info(2, 0x7fc63400fe00) = 0 -43939470941241:43939470941872 26086:26091 hsa_system_get_info(2, 0x7fc63400fe08) = 0 -43939470942634:43939470943265 26086:26091 hsa_system_get_info(2, 0x7fc63400fe10) = 0 -43939470944026:43939470944656 26086:26091 hsa_system_get_info(2, 0x7fc63400fe18) = 0 -43939470945415:43939470946041 26086:26091 hsa_system_get_info(2, 0x7fc63400fe20) = 0 -43939470946801:43939470947428 26086:26091 hsa_system_get_info(2, 0x7fc63400fe28) = 0 -43939470948191:43939470948815 26086:26091 hsa_system_get_info(2, 0x7fc63400fe30) = 0 -43939470949577:43939470950204 26086:26091 hsa_system_get_info(2, 0x7fc63400fe38) = 0 -43939470950965:43939470951596 26086:26091 hsa_system_get_info(2, 0x7fc63400fe40) = 0 -43939470952358:43939470952991 26086:26091 hsa_system_get_info(2, 0x7fc63400fe48) = 0 -43939470953750:43939470954369 26086:26091 hsa_system_get_info(2, 0x7fc63400fe50) = 0 -43939470955143:43939470955768 26086:26091 hsa_system_get_info(2, 0x7fc63400fe58) = 0 -43939470956530:43939470957153 26086:26091 hsa_system_get_info(2, 0x7fc63400fe60) = 0 -43939470957913:43939470958539 26086:26091 hsa_system_get_info(2, 0x7fc63400fe68) = 0 -43939470959303:43939470959929 26086:26091 hsa_system_get_info(2, 0x7fc63400fe70) = 0 -43939470961434:43939470962062 26086:26091 hsa_system_get_info(2, 0x7fc63400fe78) = 0 -43939470962827:43939470963452 26086:26091 hsa_system_get_info(2, 0x7fc63400fe80) = 0 -43939470964210:43939470964841 26086:26091 hsa_system_get_info(2, 0x7fc63400fe88) = 0 -43939470965603:43939470966232 26086:26091 hsa_system_get_info(2, 0x7fc63400fe90) = 0 -43939470966989:43939470967624 26086:26091 hsa_system_get_info(2, 0x7fc63400fe98) = 0 -43939470968384:43939470969011 26086:26091 hsa_system_get_info(2, 0x7fc63400fea0) = 0 -43939470969774:43939470970407 26086:26091 hsa_system_get_info(2, 0x7fc63400fea8) = 0 -43939470971174:43939470971808 26086:26091 hsa_system_get_info(2, 0x7fc63400feb0) = 0 -43939470972568:43939470973192 26086:26091 hsa_system_get_info(2, 0x7fc63400feb8) = 0 -43939470973953:43939470974581 26086:26091 hsa_system_get_info(2, 0x7fc63400fec0) = 0 -43939470975343:43939470975970 26086:26091 hsa_system_get_info(2, 0x7fc63400fec8) = 0 -43939470976731:43939470977354 26086:26091 hsa_system_get_info(2, 0x7fc63400fed0) = 0 -43939470978121:43939470978744 26086:26091 hsa_system_get_info(2, 0x7fc63400fed8) = 0 -43939470979504:43939470980147 26086:26091 hsa_system_get_info(2, 0x7fc63400fee0) = 0 -43939470980907:43939470981533 26086:26091 hsa_system_get_info(2, 0x7fc63400fee8) = 0 -43939470982292:43939470982924 26086:26091 hsa_system_get_info(2, 0x7fc63400fef0) = 0 -43939470983682:43939470984312 26086:26091 hsa_system_get_info(2, 0x7fc63400fef8) = 0 -43939470985070:43939470985698 26086:26091 hsa_system_get_info(2, 0x7fc63400ff00) = 0 -43939470986459:43939470987088 26086:26091 hsa_system_get_info(2, 0x7fc63400ff08) = 0 -43939470987849:43939470988478 26086:26091 hsa_system_get_info(2, 0x7fc63400ff10) = 0 -43939470989245:43939470989871 26086:26091 hsa_system_get_info(2, 0x7fc63400ff18) = 0 -43939470990637:43939470991268 26086:26091 hsa_system_get_info(2, 0x7fc63400ff20) = 0 -43939470992036:43939470992668 26086:26091 hsa_system_get_info(2, 0x7fc63400ff28) = 0 -43939470993431:43939470994061 26086:26091 hsa_system_get_info(2, 0x7fc63400ff30) = 0 -43939470994821:43939470995450 26086:26091 hsa_system_get_info(2, 0x7fc63400ff38) = 0 -43939470996211:43939470996840 26086:26091 hsa_system_get_info(2, 0x7fc63400ff40) = 0 -43939470997600:43939470998230 26086:26091 hsa_system_get_info(2, 0x7fc63400ff48) = 0 -43939470999003:43939470999634 26086:26091 hsa_system_get_info(2, 0x7fc63400ff50) = 0 -43939471001106:43939471001744 26086:26091 hsa_system_get_info(2, 0x7fc63400ff58) = 0 -43939471002510:43939471003144 26086:26091 hsa_system_get_info(2, 0x7fc63400ff60) = 0 -43939471003907:43939471004538 26086:26091 hsa_system_get_info(2, 0x7fc63400ff68) = 0 -43939471005298:43939471005922 26086:26091 hsa_system_get_info(2, 0x7fc63400ff70) = 0 -43939471006685:43939471007313 26086:26091 hsa_system_get_info(2, 0x7fc63400ff78) = 0 -43939471008077:43939471008703 26086:26091 hsa_system_get_info(2, 0x7fc63400ff80) = 0 -43939471009461:43939471010093 26086:26091 hsa_system_get_info(2, 0x7fc63400ff88) = 0 -43939471010857:43939471011482 26086:26091 hsa_system_get_info(2, 0x7fc63400ff90) = 0 -43939471012248:43939471012876 26086:26091 hsa_system_get_info(2, 0x7fc63400ff98) = 0 -43939471013639:43939471014277 26086:26091 hsa_system_get_info(2, 0x7fc63400ffa0) = 0 -43939471015035:43939471015670 26086:26091 hsa_system_get_info(2, 0x7fc63400ffa8) = 0 -43939471016440:43939471017072 26086:26091 hsa_system_get_info(2, 0x7fc63400ffb0) = 0 -43939471017839:43939471018467 26086:26091 hsa_system_get_info(2, 0x7fc63400ffb8) = 0 -43939471019244:43939471019876 26086:26091 hsa_system_get_info(2, 0x7fc63400ffc0) = 0 -43939471020639:43939471021266 26086:26091 hsa_system_get_info(2, 0x7fc63400ffc8) = 0 -43939471022028:43939471022658 26086:26091 hsa_system_get_info(2, 0x7fc63400ffd0) = 0 -43939471023419:43939471024049 26086:26091 hsa_system_get_info(2, 0x7fc63400ffd8) = 0 -43939471024818:43939471025446 26086:26091 hsa_system_get_info(2, 0x7fc63400ffe0) = 0 -43939471026207:43939471026837 26086:26091 hsa_system_get_info(2, 0x7fc63400ffe8) = 0 -43939471027598:43939471028223 26086:26091 hsa_system_get_info(2, 0x7fc63400fff0) = 0 -43939471028985:43939471029614 26086:26091 hsa_system_get_info(2, 0x7fc63400fff8) = 0 -43939471030375:43939471031006 26086:26091 hsa_system_get_info(2, 0x7fc634010000) = 0 -43939471031767:43939471032395 26086:26091 hsa_system_get_info(2, 0x7fc634010008) = 0 -43939471033160:43939471033797 26086:26091 hsa_system_get_info(2, 0x7fc634010010) = 0 -43939471034562:43939471035198 26086:26091 hsa_system_get_info(2, 0x7fc634010018) = 0 -43939471035959:43939471036589 26086:26091 hsa_system_get_info(2, 0x7fc634010020) = 0 -43939471037346:43939471037974 26086:26091 hsa_system_get_info(2, 0x7fc634010028) = 0 -43939471038751:43939471039377 26086:26091 hsa_system_get_info(2, 0x7fc634010030) = 0 -43939471040141:43939471040771 26086:26091 hsa_system_get_info(2, 0x7fc634010038) = 0 -43939471042248:43939471042881 26086:26091 hsa_system_get_info(2, 0x7fc634010040) = 0 -43939471043648:43939471044274 26086:26091 hsa_system_get_info(2, 0x7fc634010048) = 0 -43939471045038:43939471045661 26086:26091 hsa_system_get_info(2, 0x7fc634010050) = 0 -43939471046421:43939471047060 26086:26091 hsa_system_get_info(2, 0x7fc634010058) = 0 -43939471047818:43939471048449 26086:26091 hsa_system_get_info(2, 0x7fc634010060) = 0 -43939471049212:43939471049840 26086:26091 hsa_system_get_info(2, 0x7fc634010068) = 0 -43939471050602:43939471051232 26086:26091 hsa_system_get_info(2, 0x7fc634010070) = 0 -43939471051996:43939471052631 26086:26091 hsa_system_get_info(2, 0x7fc634010078) = 0 -43939471053393:43939471054022 26086:26091 hsa_system_get_info(2, 0x7fc634010080) = 0 -43939471054783:43939471055408 26086:26091 hsa_system_get_info(2, 0x7fc634010088) = 0 -43939471056170:43939471056800 26086:26091 hsa_system_get_info(2, 0x7fc634010090) = 0 -43939471057560:43939471058191 26086:26091 hsa_system_get_info(2, 0x7fc634010098) = 0 -43939471058951:43939471059578 26086:26091 hsa_system_get_info(2, 0x7fc6340100a0) = 0 -43939471060351:43939471060978 26086:26091 hsa_system_get_info(2, 0x7fc6340100a8) = 0 -43939471061741:43939471062371 26086:26091 hsa_system_get_info(2, 0x7fc6340100b0) = 0 -43939471063148:43939471063773 26086:26091 hsa_system_get_info(2, 0x7fc6340100b8) = 0 -43939471064540:43939471065168 26086:26091 hsa_system_get_info(2, 0x7fc6340100c0) = 0 -43939471065925:43939471066556 26086:26091 hsa_system_get_info(2, 0x7fc6340100c8) = 0 -43939471067317:43939471067946 26086:26091 hsa_system_get_info(2, 0x7fc6340100d0) = 0 -43939471068706:43939471069338 26086:26091 hsa_system_get_info(2, 0x7fc6340100d8) = 0 -43939471070098:43939471070725 26086:26091 hsa_system_get_info(2, 0x7fc6340100e0) = 0 -43939471071489:43939471072124 26086:26091 hsa_system_get_info(2, 0x7fc6340100e8) = 0 -43939471072883:43939471073515 26086:26091 hsa_system_get_info(2, 0x7fc6340100f0) = 0 -43939471074274:43939471074907 26086:26091 hsa_system_get_info(2, 0x7fc6340100f8) = 0 -43939471075669:43939471076297 26086:26091 hsa_system_get_info(2, 0x7fc634010100) = 0 -43939471077062:43939471077698 26086:26091 hsa_system_get_info(2, 0x7fc634010108) = 0 -43939471078461:43939471079087 26086:26091 hsa_system_get_info(2, 0x7fc634010110) = 0 -43939471079849:43939471080481 26086:26091 hsa_system_get_info(2, 0x7fc634010118) = 0 -43939471082020:43939471082653 26086:26091 hsa_system_get_info(2, 0x7fc634010120) = 0 -43939471083420:43939471084053 26086:26091 hsa_system_get_info(2, 0x7fc634010128) = 0 -43939471084814:43939471085437 26086:26091 hsa_system_get_info(2, 0x7fc634010130) = 0 -43939471086204:43939471086835 26086:26091 hsa_system_get_info(2, 0x7fc634010138) = 0 -43939471087597:43939471088219 26086:26091 hsa_system_get_info(2, 0x7fc634010140) = 0 -43939471088982:43939471089612 26086:26091 hsa_system_get_info(2, 0x7fc634010148) = 0 -43939471090370:43939471090998 26086:26091 hsa_system_get_info(2, 0x7fc634010150) = 0 -43939471091760:43939471092386 26086:26091 hsa_system_get_info(2, 0x7fc634010158) = 0 -43939471093141:43939471093761 26086:26091 hsa_system_get_info(2, 0x7fc634010160) = 0 -43939471094525:43939471095147 26086:26091 hsa_system_get_info(2, 0x7fc634010168) = 0 -43939471095906:43939471096531 26086:26091 hsa_system_get_info(2, 0x7fc634010170) = 0 -43939471097293:43939471097921 26086:26091 hsa_system_get_info(2, 0x7fc634010178) = 0 -43939471098688:43939471099320 26086:26091 hsa_system_get_info(2, 0x7fc634010180) = 0 -43939471100096:43939471100725 26086:26091 hsa_system_get_info(2, 0x7fc634010188) = 0 -43939471101489:43939471102120 26086:26091 hsa_system_get_info(2, 0x7fc634010190) = 0 -43939471102884:43939471103518 26086:26091 hsa_system_get_info(2, 0x7fc634010198) = 0 -43939471104278:43939471104912 26086:26091 hsa_system_get_info(2, 0x7fc6340101a0) = 0 -43939471105675:43939471106306 26086:26091 hsa_system_get_info(2, 0x7fc6340101a8) = 0 -43939471107065:43939471107696 26086:26091 hsa_system_get_info(2, 0x7fc6340101b0) = 0 -43939471108463:43939471109087 26086:26091 hsa_system_get_info(2, 0x7fc6340101b8) = 0 -43939471109847:43939471110472 26086:26091 hsa_system_get_info(2, 0x7fc6340101c0) = 0 -43939471111236:43939471111865 26086:26091 hsa_system_get_info(2, 0x7fc6340101c8) = 0 -43939471112631:43939471113268 26086:26091 hsa_system_get_info(2, 0x7fc6340101d0) = 0 -43939471114031:43939471114661 26086:26091 hsa_system_get_info(2, 0x7fc6340101d8) = 0 -43939471115420:43939471116048 26086:26091 hsa_system_get_info(2, 0x7fc6340101e0) = 0 -43939471116808:43939471117431 26086:26091 hsa_system_get_info(2, 0x7fc6340101e8) = 0 -43939471118209:43939471118834 26086:26091 hsa_system_get_info(2, 0x7fc6340101f0) = 0 -43939471119595:43939471120220 26086:26091 hsa_system_get_info(2, 0x7fc6340101f8) = 0 -43939471120982:43939471121608 26086:26091 hsa_system_get_info(2, 0x7fc634010200) = 0 -43939471123143:43939471123775 26086:26091 hsa_system_get_info(2, 0x7fc634010208) = 0 -43939471124536:43939471125158 26086:26091 hsa_system_get_info(2, 0x7fc634010210) = 0 -43939471125918:43939471126541 26086:26091 hsa_system_get_info(2, 0x7fc634010218) = 0 -43939471127297:43939471127925 26086:26091 hsa_system_get_info(2, 0x7fc634010220) = 0 -43939471128687:43939471129311 26086:26091 hsa_system_get_info(2, 0x7fc634010228) = 0 -43939471130071:43939471130704 26086:26091 hsa_system_get_info(2, 0x7fc634010230) = 0 -43939471131468:43939471132092 26086:26091 hsa_system_get_info(2, 0x7fc634010238) = 0 -43939471132855:43939471133488 26086:26091 hsa_system_get_info(2, 0x7fc634010240) = 0 -43939471134251:43939471134881 26086:26091 hsa_system_get_info(2, 0x7fc634010248) = 0 -43939471135643:43939471136271 26086:26091 hsa_system_get_info(2, 0x7fc634010250) = 0 -43939471137032:43939471137665 26086:26091 hsa_system_get_info(2, 0x7fc634010258) = 0 -43939471138424:43939471139051 26086:26091 hsa_system_get_info(2, 0x7fc634010260) = 0 -43939471139815:43939471140444 26086:26091 hsa_system_get_info(2, 0x7fc634010268) = 0 -43939471141215:43939471141840 26086:26091 hsa_system_get_info(2, 0x7fc634010270) = 0 -43939471142600:43939471143224 26086:26091 hsa_system_get_info(2, 0x7fc634010278) = 0 -43939471143984:43939471144617 26086:26091 hsa_system_get_info(2, 0x7fc634010280) = 0 -43939471145375:43939471146002 26086:26091 hsa_system_get_info(2, 0x7fc634010288) = 0 -43939471146775:43939471147403 26086:26091 hsa_system_get_info(2, 0x7fc634010290) = 0 -43939471148167:43939471148791 26086:26091 hsa_system_get_info(2, 0x7fc634010298) = 0 -43939471149551:43939471150178 26086:26091 hsa_system_get_info(2, 0x7fc6340102a0) = 0 -43939471150940:43939471151572 26086:26091 hsa_system_get_info(2, 0x7fc6340102a8) = 0 -43939471152332:43939471152961 26086:26091 hsa_system_get_info(2, 0x7fc6340102b0) = 0 -43939471153720:43939471154344 26086:26091 hsa_system_get_info(2, 0x7fc6340102b8) = 0 -43939471155103:43939471155735 26086:26091 hsa_system_get_info(2, 0x7fc6340102c0) = 0 -43939471156492:43939471157121 26086:26091 hsa_system_get_info(2, 0x7fc6340102c8) = 0 -43939471157882:43939471158509 26086:26091 hsa_system_get_info(2, 0x7fc6340102d0) = 0 -43939471159276:43939471159899 26086:26091 hsa_system_get_info(2, 0x7fc6340102d8) = 0 -43939471160660:43939471161295 26086:26091 hsa_system_get_info(2, 0x7fc6340102e0) = 0 -43939471162771:43939471163408 26086:26091 hsa_system_get_info(2, 0x7fc6340102e8) = 0 -43939471164172:43939471164808 26086:26091 hsa_system_get_info(2, 0x7fc6340102f0) = 0 -43939471165569:43939471166199 26086:26091 hsa_system_get_info(2, 0x7fc6340102f8) = 0 -43939471166961:43939471167582 26086:26091 hsa_system_get_info(2, 0x7fc634010300) = 0 -43939471168342:43939471168971 26086:26091 hsa_system_get_info(2, 0x7fc634010308) = 0 -43939471169728:43939471170355 26086:26091 hsa_system_get_info(2, 0x7fc634010310) = 0 -43939471171116:43939471171742 26086:26091 hsa_system_get_info(2, 0x7fc634010318) = 0 -43939471172502:43939471173127 26086:26091 hsa_system_get_info(2, 0x7fc634010320) = 0 -43939471173885:43939471174515 26086:26091 hsa_system_get_info(2, 0x7fc634010328) = 0 -43939471175275:43939471175906 26086:26091 hsa_system_get_info(2, 0x7fc634010330) = 0 -43939471176667:43939471177289 26086:26091 hsa_system_get_info(2, 0x7fc634010338) = 0 -43939471178056:43939471178681 26086:26091 hsa_system_get_info(2, 0x7fc634010340) = 0 -43939471179446:43939471180077 26086:26091 hsa_system_get_info(2, 0x7fc634010348) = 0 -43939471180837:43939471181483 26086:26091 hsa_system_get_info(2, 0x7fc634010350) = 0 -43939471182246:43939471182870 26086:26091 hsa_system_get_info(2, 0x7fc634010358) = 0 -43939471183632:43939471184267 26086:26091 hsa_system_get_info(2, 0x7fc634010360) = 0 -43939471185023:43939471185658 26086:26091 hsa_system_get_info(2, 0x7fc634010368) = 0 -43939471186421:43939471187045 26086:26091 hsa_system_get_info(2, 0x7fc634010370) = 0 -43939471187805:43939471188433 26086:26091 hsa_system_get_info(2, 0x7fc634010378) = 0 -43939471189200:43939471189823 26086:26091 hsa_system_get_info(2, 0x7fc634010380) = 0 -43939471190586:43939471191214 26086:26091 hsa_system_get_info(2, 0x7fc634010388) = 0 -43939471191977:43939471192603 26086:26091 hsa_system_get_info(2, 0x7fc634010390) = 0 -43939471193365:43939471193988 26086:26091 hsa_system_get_info(2, 0x7fc634010398) = 0 -43939471194768:43939471195395 26086:26091 hsa_system_get_info(2, 0x7fc6340103a0) = 0 -43939471196161:43939471196791 26086:26091 hsa_system_get_info(2, 0x7fc6340103a8) = 0 -43939471197551:43939471198186 26086:26091 hsa_system_get_info(2, 0x7fc6340103b0) = 0 -43939471198948:43939471199581 26086:26091 hsa_system_get_info(2, 0x7fc6340103b8) = 0 -43939471200347:43939471200971 26086:26091 hsa_system_get_info(2, 0x7fc6340103c0) = 0 -43939471201739:43939471202361 26086:26091 hsa_system_get_info(2, 0x7fc6340103c8) = 0 -43939471203896:43939471204531 26086:26091 hsa_system_get_info(2, 0x7fc6340103d0) = 0 -43939471205295:43939471205921 26086:26091 hsa_system_get_info(2, 0x7fc6340103d8) = 0 -43939471206677:43939471207312 26086:26091 hsa_system_get_info(2, 0x7fc6340103e0) = 0 -43939471208075:43939471208703 26086:26091 hsa_system_get_info(2, 0x7fc6340103e8) = 0 -43939471209465:43939471210099 26086:26091 hsa_system_get_info(2, 0x7fc6340103f0) = 0 -43939471210878:43939471211502 26086:26091 hsa_system_get_info(2, 0x7fc6340103f8) = 0 -43939471212266:43939471212894 26086:26091 hsa_system_get_info(2, 0x7fc634010400) = 0 -43939471213651:43939471214281 26086:26091 hsa_system_get_info(2, 0x7fc634010408) = 0 -43939471215045:43939471215677 26086:26091 hsa_system_get_info(2, 0x7fc634010410) = 0 -43939471216441:43939471217068 26086:26091 hsa_system_get_info(2, 0x7fc634010418) = 0 -43939471217836:43939471218462 26086:26091 hsa_system_get_info(2, 0x7fc634010420) = 0 -43939471219229:43939471219857 26086:26091 hsa_system_get_info(2, 0x7fc634010428) = 0 -43939471220621:43939471221243 26086:26091 hsa_system_get_info(2, 0x7fc634010430) = 0 -43939471222003:43939471222624 26086:26091 hsa_system_get_info(2, 0x7fc634010438) = 0 -43939471223384:43939471224013 26086:26091 hsa_system_get_info(2, 0x7fc634010440) = 0 -43939471224775:43939471225413 26086:26091 hsa_system_get_info(2, 0x7fc634010448) = 0 -43939471226195:43939471226826 26086:26091 hsa_system_get_info(2, 0x7fc634010450) = 0 -43939471227587:43939471228210 26086:26091 hsa_system_get_info(2, 0x7fc634010458) = 0 -43939471228975:43939471229595 26086:26091 hsa_system_get_info(2, 0x7fc634010460) = 0 -43939471230371:43939471231004 26086:26091 hsa_system_get_info(2, 0x7fc634010468) = 0 -43939471231766:43939471232389 26086:26091 hsa_system_get_info(2, 0x7fc634010470) = 0 -43939471233152:43939471233779 26086:26091 hsa_system_get_info(2, 0x7fc634010478) = 0 -43939471234538:43939471235169 26086:26091 hsa_system_get_info(2, 0x7fc634010480) = 0 -43939471235931:43939471236557 26086:26091 hsa_system_get_info(2, 0x7fc634010488) = 0 -43939471237315:43939471237942 26086:26091 hsa_system_get_info(2, 0x7fc634010490) = 0 -43939471238700:43939471239332 26086:26091 hsa_system_get_info(2, 0x7fc634010498) = 0 -43939471240091:43939471240713 26086:26091 hsa_system_get_info(2, 0x7fc6340104a0) = 0 -43939471241476:43939471242105 26086:26091 hsa_system_get_info(2, 0x7fc6340104a8) = 0 -43939471243601:43939471244235 26086:26091 hsa_system_get_info(2, 0x7fc6340104b0) = 0 -43939471244992:43939471245618 26086:26091 hsa_system_get_info(2, 0x7fc6340104b8) = 0 -43939471246382:43939471247005 26086:26091 hsa_system_get_info(2, 0x7fc6340104c0) = 0 -43939471247767:43939471248396 26086:26091 hsa_system_get_info(2, 0x7fc6340104c8) = 0 -43939471249159:43939471249782 26086:26091 hsa_system_get_info(2, 0x7fc6340104d0) = 0 -43939471250545:43939471251165 26086:26091 hsa_system_get_info(2, 0x7fc6340104d8) = 0 -43939471251922:43939471252549 26086:26091 hsa_system_get_info(2, 0x7fc6340104e0) = 0 -43939471253309:43939471253934 26086:26091 hsa_system_get_info(2, 0x7fc6340104e8) = 0 -43939471254697:43939471255325 26086:26091 hsa_system_get_info(2, 0x7fc6340104f0) = 0 -43939471256089:43939471256723 26086:26091 hsa_system_get_info(2, 0x7fc6340104f8) = 0 -43939471257490:43939471258123 26086:26091 hsa_system_get_info(2, 0x7fc634010500) = 0 -43939471258913:43939471259544 26086:26091 hsa_system_get_info(2, 0x7fc634010508) = 0 -43939471260311:43939471260937 26086:26091 hsa_system_get_info(2, 0x7fc634010510) = 0 -43939471261704:43939471262325 26086:26091 hsa_system_get_info(2, 0x7fc634010518) = 0 -43939471263084:43939471263705 26086:26091 hsa_system_get_info(2, 0x7fc634010520) = 0 -43939471264465:43939471265095 26086:26091 hsa_system_get_info(2, 0x7fc634010528) = 0 -43939471265857:43939471266480 26086:26091 hsa_system_get_info(2, 0x7fc634010530) = 0 -43939471267241:43939471267871 26086:26091 hsa_system_get_info(2, 0x7fc634010538) = 0 -43939471268630:43939471269258 26086:26091 hsa_system_get_info(2, 0x7fc634010540) = 0 -43939471270017:43939471270642 26086:26091 hsa_system_get_info(2, 0x7fc634010548) = 0 -43939471271414:43939471272050 26086:26091 hsa_system_get_info(2, 0x7fc634010550) = 0 -43939471272809:43939471273439 26086:26091 hsa_system_get_info(2, 0x7fc634010558) = 0 -43939471274203:43939471274830 26086:26091 hsa_system_get_info(2, 0x7fc634010560) = 0 -43939471275586:43939471276212 26086:26091 hsa_system_get_info(2, 0x7fc634010568) = 0 -43939471276980:43939471277610 26086:26091 hsa_system_get_info(2, 0x7fc634010570) = 0 -43939471278372:43939471278999 26086:26091 hsa_system_get_info(2, 0x7fc634010578) = 0 -43939471279763:43939471280394 26086:26091 hsa_system_get_info(2, 0x7fc634010580) = 0 -43939471281156:43939471281794 26086:26091 hsa_system_get_info(2, 0x7fc634010588) = 0 -43939471282558:43939471283189 26086:26091 hsa_system_get_info(2, 0x7fc634010590) = 0 -43939471285282:43939471285920 26086:26091 hsa_system_get_info(2, 0x7fc634010598) = 0 -43939471286682:43939471287312 26086:26091 hsa_system_get_info(2, 0x7fc6340105a0) = 0 -43939471288069:43939471288703 26086:26091 hsa_system_get_info(2, 0x7fc6340105a8) = 0 -43939471289462:43939471290094 26086:26091 hsa_system_get_info(2, 0x7fc6340105b0) = 0 -43939471290854:43939471291499 26086:26091 hsa_system_get_info(2, 0x7fc6340105b8) = 0 -43939471292260:43939471292893 26086:26091 hsa_system_get_info(2, 0x7fc6340105c0) = 0 -43939471293656:43939471294285 26086:26091 hsa_system_get_info(2, 0x7fc6340105c8) = 0 -43939471295045:43939471295676 26086:26091 hsa_system_get_info(2, 0x7fc6340105d0) = 0 -43939471296439:43939471297072 26086:26091 hsa_system_get_info(2, 0x7fc6340105d8) = 0 -43939471297835:43939471298457 26086:26091 hsa_system_get_info(2, 0x7fc6340105e0) = 0 -43939471299224:43939471299848 26086:26091 hsa_system_get_info(2, 0x7fc6340105e8) = 0 -43939471300626:43939471301258 26086:26091 hsa_system_get_info(2, 0x7fc6340105f0) = 0 -43939471302021:43939471302650 26086:26091 hsa_system_get_info(2, 0x7fc6340105f8) = 0 -43939471303416:43939471304046 26086:26091 hsa_system_get_info(2, 0x7fc634010600) = 0 -43939471304808:43939471305437 26086:26091 hsa_system_get_info(2, 0x7fc634010608) = 0 -43939471306199:43939471306829 26086:26091 hsa_system_get_info(2, 0x7fc634010610) = 0 -43939471307604:43939471308232 26086:26091 hsa_system_get_info(2, 0x7fc634010618) = 0 -43939471308992:43939471309622 26086:26091 hsa_system_get_info(2, 0x7fc634010620) = 0 -43939471310386:43939471311015 26086:26091 hsa_system_get_info(2, 0x7fc634010628) = 0 -43939471311782:43939471312412 26086:26091 hsa_system_get_info(2, 0x7fc634010630) = 0 -43939471313167:43939471313796 26086:26091 hsa_system_get_info(2, 0x7fc634010638) = 0 -43939471314574:43939471315198 26086:26091 hsa_system_get_info(2, 0x7fc634010640) = 0 -43939471315957:43939471316585 26086:26091 hsa_system_get_info(2, 0x7fc634010648) = 0 -43939471317341:43939471317975 26086:26091 hsa_system_get_info(2, 0x7fc634010650) = 0 -43939471318732:43939471319364 26086:26091 hsa_system_get_info(2, 0x7fc634010658) = 0 -43939471320125:43939471320759 26086:26091 hsa_system_get_info(2, 0x7fc634010660) = 0 -43939471321522:43939471322146 26086:26091 hsa_system_get_info(2, 0x7fc634010668) = 0 -43939471322902:43939471323533 26086:26091 hsa_system_get_info(2, 0x7fc634010670) = 0 -43939471325020:43939471325652 26086:26091 hsa_system_get_info(2, 0x7fc634010678) = 0 -43939471326413:43939471327040 26086:26091 hsa_system_get_info(2, 0x7fc634010680) = 0 -43939471327802:43939471328432 26086:26091 hsa_system_get_info(2, 0x7fc634010688) = 0 -43939471329193:43939471329827 26086:26091 hsa_system_get_info(2, 0x7fc634010690) = 0 -43939471330586:43939471331211 26086:26091 hsa_system_get_info(2, 0x7fc634010698) = 0 -43939471331973:43939471332605 26086:26091 hsa_system_get_info(2, 0x7fc6340106a0) = 0 -43939471333364:43939471333995 26086:26091 hsa_system_get_info(2, 0x7fc6340106a8) = 0 -43939471334756:43939471335381 26086:26091 hsa_system_get_info(2, 0x7fc6340106b0) = 0 -43939471336144:43939471336769 26086:26091 hsa_system_get_info(2, 0x7fc6340106b8) = 0 -43939471337531:43939471338157 26086:26091 hsa_system_get_info(2, 0x7fc6340106c0) = 0 -43939471338917:43939471339541 26086:26091 hsa_system_get_info(2, 0x7fc6340106c8) = 0 -43939471340306:43939471340938 26086:26091 hsa_system_get_info(2, 0x7fc6340106d0) = 0 -43939471341701:43939471342335 26086:26091 hsa_system_get_info(2, 0x7fc6340106d8) = 0 -43939471343108:43939471343741 26086:26091 hsa_system_get_info(2, 0x7fc6340106e0) = 0 -43939471344502:43939471345133 26086:26091 hsa_system_get_info(2, 0x7fc6340106e8) = 0 -43939471345893:43939471346518 26086:26091 hsa_system_get_info(2, 0x7fc6340106f0) = 0 -43939471347277:43939471347913 26086:26091 hsa_system_get_info(2, 0x7fc6340106f8) = 0 -43939471348666:43939471349287 26086:26091 hsa_system_get_info(2, 0x7fc634010700) = 0 -43939471350049:43939471350680 26086:26091 hsa_system_get_info(2, 0x7fc634010708) = 0 -43939471351439:43939471352069 26086:26091 hsa_system_get_info(2, 0x7fc634010710) = 0 -43939471352829:43939471353461 26086:26091 hsa_system_get_info(2, 0x7fc634010718) = 0 -43939471354219:43939471354849 26086:26091 hsa_system_get_info(2, 0x7fc634010720) = 0 -43939471355611:43939471356238 26086:26091 hsa_system_get_info(2, 0x7fc634010728) = 0 -43939471356998:43939471357630 26086:26091 hsa_system_get_info(2, 0x7fc634010730) = 0 -43939471358390:43939471359027 26086:26091 hsa_system_get_info(2, 0x7fc634010738) = 0 -43939471359789:43939471360424 26086:26091 hsa_system_get_info(2, 0x7fc634010740) = 0 -43939471361184:43939471361811 26086:26091 hsa_system_get_info(2, 0x7fc634010748) = 0 -43939471362586:43939471363222 26086:26091 hsa_system_get_info(2, 0x7fc634010750) = 0 -43939471364691:43939471365326 26086:26091 hsa_system_get_info(2, 0x7fc634010758) = 0 -43939471366089:43939471366716 26086:26091 hsa_system_get_info(2, 0x7fc634010760) = 0 -43939471367480:43939471368103 26086:26091 hsa_system_get_info(2, 0x7fc634010768) = 0 -43939471368877:43939471369515 26086:26091 hsa_system_get_info(2, 0x7fc634010770) = 0 -43939471370277:43939471370905 26086:26091 hsa_system_get_info(2, 0x7fc634010778) = 0 -43939471371667:43939471372297 26086:26091 hsa_system_get_info(2, 0x7fc634010780) = 0 -43939471373059:43939471373687 26086:26091 hsa_system_get_info(2, 0x7fc634010788) = 0 -43939471374449:43939471375071 26086:26091 hsa_system_get_info(2, 0x7fc634010790) = 0 -43939471375834:43939471376461 26086:26091 hsa_system_get_info(2, 0x7fc634010798) = 0 -43939471377222:43939471377850 26086:26091 hsa_system_get_info(2, 0x7fc6340107a0) = 0 -43939471378611:43939471379240 26086:26091 hsa_system_get_info(2, 0x7fc6340107a8) = 0 -43939471380006:43939471380634 26086:26091 hsa_system_get_info(2, 0x7fc6340107b0) = 0 -43939471381414:43939471382040 26086:26091 hsa_system_get_info(2, 0x7fc6340107b8) = 0 -43939471382803:43939471383423 26086:26091 hsa_system_get_info(2, 0x7fc6340107c0) = 0 -43939471384183:43939471384806 26086:26091 hsa_system_get_info(2, 0x7fc6340107c8) = 0 -43939471385567:43939471386190 26086:26091 hsa_system_get_info(2, 0x7fc6340107d0) = 0 -43939471386947:43939471387595 26086:26091 hsa_system_get_info(2, 0x7fc6340107d8) = 0 -43939471388356:43939471388982 26086:26091 hsa_system_get_info(2, 0x7fc6340107e0) = 0 -43939471389747:43939471390379 26086:26091 hsa_system_get_info(2, 0x7fc6340107e8) = 0 -43939471391139:43939471391769 26086:26091 hsa_system_get_info(2, 0x7fc6340107f0) = 0 -43939471392532:43939471393163 26086:26091 hsa_system_get_info(2, 0x7fc6340107f8) = 0 -43939471393921:43939471394553 26086:26091 hsa_system_get_info(2, 0x7fc634010800) = 0 -43939471395319:43939471395949 26086:26091 hsa_system_get_info(2, 0x7fc634010808) = 0 -43939471396711:43939471397333 26086:26091 hsa_system_get_info(2, 0x7fc634010810) = 0 -43939471398095:43939471398727 26086:26091 hsa_system_get_info(2, 0x7fc634010818) = 0 -43939471399486:43939471400116 26086:26091 hsa_system_get_info(2, 0x7fc634010820) = 0 -43939471400876:43939471401495 26086:26091 hsa_system_get_info(2, 0x7fc634010828) = 0 -43939471402256:43939471402885 26086:26091 hsa_system_get_info(2, 0x7fc634010830) = 0 -43939471403646:43939471404269 26086:26091 hsa_system_get_info(2, 0x7fc634010838) = 0 -43939471405752:43939471406390 26086:26091 hsa_system_get_info(2, 0x7fc634010840) = 0 -43939471407152:43939471407782 26086:26091 hsa_system_get_info(2, 0x7fc634010848) = 0 -43939471408546:43939471409172 26086:26091 hsa_system_get_info(2, 0x7fc634010850) = 0 -43939471409929:43939471410554 26086:26091 hsa_system_get_info(2, 0x7fc634010858) = 0 -43939471411312:43939471411948 26086:26091 hsa_system_get_info(2, 0x7fc634010860) = 0 -43939471412710:43939471413342 26086:26091 hsa_system_get_info(2, 0x7fc634010868) = 0 -43939471414101:43939471414724 26086:26091 hsa_system_get_info(2, 0x7fc634010870) = 0 -43939471415484:43939471416113 26086:26091 hsa_system_get_info(2, 0x7fc634010878) = 0 -43939471416875:43939471417512 26086:26091 hsa_system_get_info(2, 0x7fc634010880) = 0 -43939471418269:43939471418897 26086:26091 hsa_system_get_info(2, 0x7fc634010888) = 0 -43939471419663:43939471420294 26086:26091 hsa_system_get_info(2, 0x7fc634010890) = 0 -43939471421075:43939471421707 26086:26091 hsa_system_get_info(2, 0x7fc634010898) = 0 -43939471422474:43939471423100 26086:26091 hsa_system_get_info(2, 0x7fc6340108a0) = 0 -43939471423859:43939471424490 26086:26091 hsa_system_get_info(2, 0x7fc6340108a8) = 0 -43939471425253:43939471425887 26086:26091 hsa_system_get_info(2, 0x7fc6340108b0) = 0 -43939471426643:43939471427278 26086:26091 hsa_system_get_info(2, 0x7fc6340108b8) = 0 -43939471428042:43939471428674 26086:26091 hsa_system_get_info(2, 0x7fc6340108c0) = 0 -43939471429432:43939471430058 26086:26091 hsa_system_get_info(2, 0x7fc6340108c8) = 0 -43939471430823:43939471431452 26086:26091 hsa_system_get_info(2, 0x7fc6340108d0) = 0 -43939471432207:43939471432836 26086:26091 hsa_system_get_info(2, 0x7fc6340108d8) = 0 -43939471433597:43939471434223 26086:26091 hsa_system_get_info(2, 0x7fc6340108e0) = 0 -43939471434986:43939471435613 26086:26091 hsa_system_get_info(2, 0x7fc6340108e8) = 0 -43939471436373:43939471437005 26086:26091 hsa_system_get_info(2, 0x7fc6340108f0) = 0 -43939471437770:43939471438395 26086:26091 hsa_system_get_info(2, 0x7fc6340108f8) = 0 -43939471439151:43939471439774 26086:26091 hsa_system_get_info(2, 0x7fc634010900) = 0 -43939471440555:43939471441174 26086:26091 hsa_system_get_info(2, 0x7fc634010908) = 0 -43939471441935:43939471442563 26086:26091 hsa_system_get_info(2, 0x7fc634010910) = 0 -43939471443326:43939471443949 26086:26091 hsa_system_get_info(2, 0x7fc634010918) = 0 -43939471445419:43939471446058 26086:26091 hsa_system_get_info(2, 0x7fc634010920) = 0 -43939471446819:43939471447451 26086:26091 hsa_system_get_info(2, 0x7fc634010928) = 0 -43939471448214:43939471448846 26086:26091 hsa_system_get_info(2, 0x7fc634010930) = 0 -43939471449605:43939471450236 26086:26091 hsa_system_get_info(2, 0x7fc634010938) = 0 -43939471450998:43939471451620 26086:26091 hsa_system_get_info(2, 0x7fc634010940) = 0 -43939471452377:43939471453003 26086:26091 hsa_system_get_info(2, 0x7fc634010948) = 0 -43939471453763:43939471454393 26086:26091 hsa_system_get_info(2, 0x7fc634010950) = 0 -43939471455152:43939471455785 26086:26091 hsa_system_get_info(2, 0x7fc634010958) = 0 -43939471456547:43939471457178 26086:26091 hsa_system_get_info(2, 0x7fc634010960) = 0 -43939471457936:43939471458561 26086:26091 hsa_system_get_info(2, 0x7fc634010968) = 0 -43939471459320:43939471459942 26086:26091 hsa_system_get_info(2, 0x7fc634010970) = 0 -43939471460708:43939471461341 26086:26091 hsa_system_get_info(2, 0x7fc634010978) = 0 -43939471462124:43939471462761 26086:26091 hsa_system_get_info(2, 0x7fc634010980) = 0 -43939471463527:43939471464154 26086:26091 hsa_system_get_info(2, 0x7fc634010988) = 0 -43939471464913:43939471465534 26086:26091 hsa_system_get_info(2, 0x7fc634010990) = 0 -43939471466296:43939471466923 26086:26091 hsa_system_get_info(2, 0x7fc634010998) = 0 -43939471467684:43939471468311 26086:26091 hsa_system_get_info(2, 0x7fc6340109a0) = 0 -43939471469070:43939471469702 26086:26091 hsa_system_get_info(2, 0x7fc6340109a8) = 0 -43939471470461:43939471471093 26086:26091 hsa_system_get_info(2, 0x7fc6340109b0) = 0 -43939471471857:43939471472500 26086:26091 hsa_system_get_info(2, 0x7fc6340109b8) = 0 -43939471473263:43939471473890 26086:26091 hsa_system_get_info(2, 0x7fc6340109c0) = 0 -43939471474657:43939471475290 26086:26091 hsa_system_get_info(2, 0x7fc6340109c8) = 0 -43939471476055:43939471476682 26086:26091 hsa_system_get_info(2, 0x7fc6340109d0) = 0 -43939471477445:43939471478072 26086:26091 hsa_system_get_info(2, 0x7fc6340109d8) = 0 -43939471478834:43939471479467 26086:26091 hsa_system_get_info(2, 0x7fc6340109e0) = 0 -43939471480228:43939471480854 26086:26091 hsa_system_get_info(2, 0x7fc6340109e8) = 0 -43939471481618:43939471482250 26086:26091 hsa_system_get_info(2, 0x7fc6340109f0) = 0 -43939471483009:43939471483634 26086:26091 hsa_system_get_info(2, 0x7fc6340109f8) = 0 -43939471484393:43939471485014 26086:26091 hsa_system_get_info(2, 0x7fc634010a00) = 0 -43939471486501:43939471487135 26086:26091 hsa_system_get_info(2, 0x7fc634010a08) = 0 -43939471487896:43939471488524 26086:26091 hsa_system_get_info(2, 0x7fc634010a10) = 0 -43939471489280:43939471489910 26086:26091 hsa_system_get_info(2, 0x7fc634010a18) = 0 -43939471490670:43939471491300 26086:26091 hsa_system_get_info(2, 0x7fc634010a20) = 0 -43939471492060:43939471492687 26086:26091 hsa_system_get_info(2, 0x7fc634010a28) = 0 -43939471493445:43939471494081 26086:26091 hsa_system_get_info(2, 0x7fc634010a30) = 0 -43939471494839:43939471495470 26086:26091 hsa_system_get_info(2, 0x7fc634010a38) = 0 -43939471496229:43939471496858 26086:26091 hsa_system_get_info(2, 0x7fc634010a40) = 0 -43939471497614:43939471498242 26086:26091 hsa_system_get_info(2, 0x7fc634010a48) = 0 -43939471499004:43939471499632 26086:26091 hsa_system_get_info(2, 0x7fc634010a50) = 0 -43939471500399:43939471501030 26086:26091 hsa_system_get_info(2, 0x7fc634010a58) = 0 -43939471501793:43939471502431 26086:26091 hsa_system_get_info(2, 0x7fc634010a60) = 0 -43939471503196:43939471503827 26086:26091 hsa_system_get_info(2, 0x7fc634010a68) = 0 -43939471504604:43939471505234 26086:26091 hsa_system_get_info(2, 0x7fc634010a70) = 0 -43939471505998:43939471506625 26086:26091 hsa_system_get_info(2, 0x7fc634010a78) = 0 -43939471507387:43939471508015 26086:26091 hsa_system_get_info(2, 0x7fc634010a80) = 0 -43939471508774:43939471509405 26086:26091 hsa_system_get_info(2, 0x7fc634010a88) = 0 -43939471510165:43939471510801 26086:26091 hsa_system_get_info(2, 0x7fc634010a90) = 0 -43939471511565:43939471512190 26086:26091 hsa_system_get_info(2, 0x7fc634010a98) = 0 -43939471512952:43939471513576 26086:26091 hsa_system_get_info(2, 0x7fc634010aa0) = 0 -43939471514333:43939471514963 26086:26091 hsa_system_get_info(2, 0x7fc634010aa8) = 0 -43939471515725:43939471516358 26086:26091 hsa_system_get_info(2, 0x7fc634010ab0) = 0 -43939471517119:43939471517748 26086:26091 hsa_system_get_info(2, 0x7fc634010ab8) = 0 -43939471518511:43939471519139 26086:26091 hsa_system_get_info(2, 0x7fc634010ac0) = 0 -43939471519903:43939471520538 26086:26091 hsa_system_get_info(2, 0x7fc634010ac8) = 0 -43939471521305:43939471521941 26086:26091 hsa_system_get_info(2, 0x7fc634010ad0) = 0 -43939471522705:43939471523345 26086:26091 hsa_system_get_info(2, 0x7fc634010ad8) = 0 -43939471524127:43939471524754 26086:26091 hsa_system_get_info(2, 0x7fc634010ae0) = 0 -43939471526316:43939471526954 26086:26091 hsa_system_get_info(2, 0x7fc634010ae8) = 0 -43939471527714:43939471528338 26086:26091 hsa_system_get_info(2, 0x7fc634010af0) = 0 -43939471529098:43939471529721 26086:26091 hsa_system_get_info(2, 0x7fc634010af8) = 0 -43939471530481:43939471531111 26086:26091 hsa_system_get_info(2, 0x7fc634010b00) = 0 -43939471531874:43939471532507 26086:26091 hsa_system_get_info(2, 0x7fc634010b08) = 0 -43939471533287:43939471533914 26086:26091 hsa_system_get_info(2, 0x7fc634010b10) = 0 -43939471534674:43939471535305 26086:26091 hsa_system_get_info(2, 0x7fc634010b18) = 0 -43939471536072:43939471536702 26086:26091 hsa_system_get_info(2, 0x7fc634010b20) = 0 -43939471537466:43939471538101 26086:26091 hsa_system_get_info(2, 0x7fc634010b28) = 0 -43939471538862:43939471539483 26086:26091 hsa_system_get_info(2, 0x7fc634010b30) = 0 -43939471540246:43939471540875 26086:26091 hsa_system_get_info(2, 0x7fc634010b38) = 0 -43939471541644:43939471542275 26086:26091 hsa_system_get_info(2, 0x7fc634010b40) = 0 -43939471543047:43939471543673 26086:26091 hsa_system_get_info(2, 0x7fc634010b48) = 0 -43939471544435:43939471545062 26086:26091 hsa_system_get_info(2, 0x7fc634010b50) = 0 -43939471545820:43939471546457 26086:26091 hsa_system_get_info(2, 0x7fc634010b58) = 0 -43939471547217:43939471547843 26086:26091 hsa_system_get_info(2, 0x7fc634010b60) = 0 -43939471548611:43939471549240 26086:26091 hsa_system_get_info(2, 0x7fc634010b68) = 0 -43939471550000:43939471550627 26086:26091 hsa_system_get_info(2, 0x7fc634010b70) = 0 -43939471551392:43939471552022 26086:26091 hsa_system_get_info(2, 0x7fc634010b78) = 0 -43939471552799:43939471553429 26086:26091 hsa_system_get_info(2, 0x7fc634010b80) = 0 -43939471554191:43939471554822 26086:26091 hsa_system_get_info(2, 0x7fc634010b88) = 0 -43939471555583:43939471556206 26086:26091 hsa_system_get_info(2, 0x7fc634010b90) = 0 -43939471556965:43939471557596 26086:26091 hsa_system_get_info(2, 0x7fc634010b98) = 0 -43939471558358:43939471558986 26086:26091 hsa_system_get_info(2, 0x7fc634010ba0) = 0 -43939471559754:43939471560385 26086:26091 hsa_system_get_info(2, 0x7fc634010ba8) = 0 -43939471561147:43939471561779 26086:26091 hsa_system_get_info(2, 0x7fc634010bb0) = 0 -43939471562539:43939471563176 26086:26091 hsa_system_get_info(2, 0x7fc634010bb8) = 0 -43939471563938:43939471564568 26086:26091 hsa_system_get_info(2, 0x7fc634010bc0) = 0 -43939471565329:43939471565957 26086:26091 hsa_system_get_info(2, 0x7fc634010bc8) = 0 -43939471567440:43939471568079 26086:26091 hsa_system_get_info(2, 0x7fc634010bd0) = 0 -43939471568841:43939471569472 26086:26091 hsa_system_get_info(2, 0x7fc634010bd8) = 0 -43939471570235:43939471570859 26086:26091 hsa_system_get_info(2, 0x7fc634010be0) = 0 -43939471571619:43939471572247 26086:26091 hsa_system_get_info(2, 0x7fc634010be8) = 0 -43939471573014:43939471573637 26086:26091 hsa_system_get_info(2, 0x7fc634010bf0) = 0 -43939471574402:43939471575021 26086:26091 hsa_system_get_info(2, 0x7fc634010bf8) = 0 -43939471575784:43939471576414 26086:26091 hsa_system_get_info(2, 0x7fc634010c00) = 0 -43939471577173:43939471577803 26086:26091 hsa_system_get_info(2, 0x7fc634010c08) = 0 -43939471578566:43939471579200 26086:26091 hsa_system_get_info(2, 0x7fc634010c10) = 0 -43939471579956:43939471580585 26086:26091 hsa_system_get_info(2, 0x7fc634010c18) = 0 -43939471581358:43939471581990 26086:26091 hsa_system_get_info(2, 0x7fc634010c20) = 0 -43939471582756:43939471583383 26086:26091 hsa_system_get_info(2, 0x7fc634010c28) = 0 -43939471584140:43939471584760 26086:26091 hsa_system_get_info(2, 0x7fc634010c30) = 0 -43939471585513:43939471586134 26086:26091 hsa_system_get_info(2, 0x7fc634010c38) = 0 -43939471586893:43939471587522 26086:26091 hsa_system_get_info(2, 0x7fc634010c40) = 0 -43939471588281:43939471588909 26086:26091 hsa_system_get_info(2, 0x7fc634010c48) = 0 -43939471589671:43939471590297 26086:26091 hsa_system_get_info(2, 0x7fc634010c50) = 0 -43939471591072:43939471591702 26086:26091 hsa_system_get_info(2, 0x7fc634010c58) = 0 -43939471592462:43939471593093 26086:26091 hsa_system_get_info(2, 0x7fc634010c60) = 0 -43939471593850:43939471594485 26086:26091 hsa_system_get_info(2, 0x7fc634010c68) = 0 -43939471595245:43939471595880 26086:26091 hsa_system_get_info(2, 0x7fc634010c70) = 0 -43939471596645:43939471597277 26086:26091 hsa_system_get_info(2, 0x7fc634010c78) = 0 -43939471598037:43939471598667 26086:26091 hsa_system_get_info(2, 0x7fc634010c80) = 0 -43939471599430:43939471600060 26086:26091 hsa_system_get_info(2, 0x7fc634010c88) = 0 -43939471600840:43939471601480 26086:26091 hsa_system_get_info(2, 0x7fc634010c90) = 0 -43939471602240:43939471602875 26086:26091 hsa_system_get_info(2, 0x7fc634010c98) = 0 -43939471603642:43939471604269 26086:26091 hsa_system_get_info(2, 0x7fc634010ca0) = 0 -43939471605032:43939471605662 26086:26091 hsa_system_get_info(2, 0x7fc634010ca8) = 0 -43939471607133:43939471607770 26086:26091 hsa_system_get_info(2, 0x7fc634010cb0) = 0 -43939471608531:43939471609153 26086:26091 hsa_system_get_info(2, 0x7fc634010cb8) = 0 -43939471609915:43939471610548 26086:26091 hsa_system_get_info(2, 0x7fc634010cc0) = 0 -43939471611314:43939471611948 26086:26091 hsa_system_get_info(2, 0x7fc634010cc8) = 0 -43939471612707:43939471613344 26086:26091 hsa_system_get_info(2, 0x7fc634010cd0) = 0 -43939471614107:43939471614739 26086:26091 hsa_system_get_info(2, 0x7fc634010cd8) = 0 -43939471615499:43939471616122 26086:26091 hsa_system_get_info(2, 0x7fc634010ce0) = 0 -43939471616880:43939471617511 26086:26091 hsa_system_get_info(2, 0x7fc634010ce8) = 0 -43939471618270:43939471618904 26086:26091 hsa_system_get_info(2, 0x7fc634010cf0) = 0 -43939471619664:43939471620289 26086:26091 hsa_system_get_info(2, 0x7fc634010cf8) = 0 -43939471621050:43939471621675 26086:26091 hsa_system_get_info(2, 0x7fc634010d00) = 0 -43939471622440:43939471623071 26086:26091 hsa_system_get_info(2, 0x7fc634010d08) = 0 -43939471623854:43939471624474 26086:26091 hsa_system_get_info(2, 0x7fc634010d10) = 0 -43939471625234:43939471625858 26086:26091 hsa_system_get_info(2, 0x7fc634010d18) = 0 -43939471626621:43939471627254 26086:26091 hsa_system_get_info(2, 0x7fc634010d20) = 0 -43939471628016:43939471628646 26086:26091 hsa_system_get_info(2, 0x7fc634010d28) = 0 -43939471629405:43939471630036 26086:26091 hsa_system_get_info(2, 0x7fc634010d30) = 0 -43939471630795:43939471631419 26086:26091 hsa_system_get_info(2, 0x7fc634010d38) = 0 -43939471632176:43939471632799 26086:26091 hsa_system_get_info(2, 0x7fc634010d40) = 0 -43939471633562:43939471634190 26086:26091 hsa_system_get_info(2, 0x7fc634010d48) = 0 -43939471634952:43939471635580 26086:26091 hsa_system_get_info(2, 0x7fc634010d50) = 0 -43939471636340:43939471636974 26086:26091 hsa_system_get_info(2, 0x7fc634010d58) = 0 -43939471637731:43939471638361 26086:26091 hsa_system_get_info(2, 0x7fc634010d60) = 0 -43939471639123:43939471639754 26086:26091 hsa_system_get_info(2, 0x7fc634010d68) = 0 -43939471640516:43939471641143 26086:26091 hsa_system_get_info(2, 0x7fc634010d70) = 0 -43939471641907:43939471642536 26086:26091 hsa_system_get_info(2, 0x7fc634010d78) = 0 -43939471643316:43939471643943 26086:26091 hsa_system_get_info(2, 0x7fc634010d80) = 0 -43939471644699:43939471645329 26086:26091 hsa_system_get_info(2, 0x7fc634010d88) = 0 -43939471646095:43939471646725 26086:26091 hsa_system_get_info(2, 0x7fc634010d90) = 0 -43939471648203:43939471648838 26086:26091 hsa_system_get_info(2, 0x7fc634010d98) = 0 -43939471649598:43939471650228 26086:26091 hsa_system_get_info(2, 0x7fc634010da0) = 0 -43939471650988:43939471651612 26086:26091 hsa_system_get_info(2, 0x7fc634010da8) = 0 -43939471652376:43939471653008 26086:26091 hsa_system_get_info(2, 0x7fc634010db0) = 0 -43939471653767:43939471654398 26086:26091 hsa_system_get_info(2, 0x7fc634010db8) = 0 -43939471655154:43939471655788 26086:26091 hsa_system_get_info(2, 0x7fc634010dc0) = 0 -43939471656553:43939471657184 26086:26091 hsa_system_get_info(2, 0x7fc634010dc8) = 0 -43939471657944:43939471658575 26086:26091 hsa_system_get_info(2, 0x7fc634010dd0) = 0 -43939471659334:43939471659956 26086:26091 hsa_system_get_info(2, 0x7fc634010dd8) = 0 -43939471660718:43939471661344 26086:26091 hsa_system_get_info(2, 0x7fc634010de0) = 0 -43939471662108:43939471662736 26086:26091 hsa_system_get_info(2, 0x7fc634010de8) = 0 -43939471663516:43939471664147 26086:26091 hsa_system_get_info(2, 0x7fc634010df0) = 0 -43939471664927:43939471665556 26086:26091 hsa_system_get_info(2, 0x7fc634010df8) = 0 -43939471666320:43939471666948 26086:26091 hsa_system_get_info(2, 0x7fc634010e00) = 0 -43939471667711:43939471668342 26086:26091 hsa_system_get_info(2, 0x7fc634010e08) = 0 -43939471669102:43939471669733 26086:26091 hsa_system_get_info(2, 0x7fc634010e10) = 0 -43939471670493:43939471671124 26086:26091 hsa_system_get_info(2, 0x7fc634010e18) = 0 -43939471671892:43939471672522 26086:26091 hsa_system_get_info(2, 0x7fc634010e20) = 0 -43939471673283:43939471673912 26086:26091 hsa_system_get_info(2, 0x7fc634010e28) = 0 -43939471674679:43939471675310 26086:26091 hsa_system_get_info(2, 0x7fc634010e30) = 0 -43939471676076:43939471676707 26086:26091 hsa_system_get_info(2, 0x7fc634010e38) = 0 -43939471677468:43939471678096 26086:26091 hsa_system_get_info(2, 0x7fc634010e40) = 0 -43939471678855:43939471679482 26086:26091 hsa_system_get_info(2, 0x7fc634010e48) = 0 -43939471680244:43939471680870 26086:26091 hsa_system_get_info(2, 0x7fc634010e50) = 0 -43939471681634:43939471682261 26086:26091 hsa_system_get_info(2, 0x7fc634010e58) = 0 -43939471683023:43939471683657 26086:26091 hsa_system_get_info(2, 0x7fc634010e60) = 0 -43939471684438:43939471685067 26086:26091 hsa_system_get_info(2, 0x7fc634010e68) = 0 -43939471685828:43939471686455 26086:26091 hsa_system_get_info(2, 0x7fc634010e70) = 0 -43939471687927:43939471688552 26086:26091 hsa_system_get_info(2, 0x7fc634010e78) = 0 -43939471689315:43939471689940 26086:26091 hsa_system_get_info(2, 0x7fc634010e80) = 0 -43939471690698:43939471691324 26086:26091 hsa_system_get_info(2, 0x7fc634010e88) = 0 -43939471692086:43939471692717 26086:26091 hsa_system_get_info(2, 0x7fc634010e90) = 0 -43939471693479:43939471694112 26086:26091 hsa_system_get_info(2, 0x7fc634010e98) = 0 -43939471694870:43939471695497 26086:26091 hsa_system_get_info(2, 0x7fc634010ea0) = 0 -43939471696261:43939471696886 26086:26091 hsa_system_get_info(2, 0x7fc634010ea8) = 0 -43939471697646:43939471698276 26086:26091 hsa_system_get_info(2, 0x7fc634010eb0) = 0 -43939471699036:43939471699667 26086:26091 hsa_system_get_info(2, 0x7fc634010eb8) = 0 -43939471700428:43939471701066 26086:26091 hsa_system_get_info(2, 0x7fc634010ec0) = 0 -43939471701829:43939471702460 26086:26091 hsa_system_get_info(2, 0x7fc634010ec8) = 0 -43939471703229:43939471703860 26086:26091 hsa_system_get_info(2, 0x7fc634010ed0) = 0 -43939471704626:43939471705266 26086:26091 hsa_system_get_info(2, 0x7fc634010ed8) = 0 -43939471706028:43939471706658 26086:26091 hsa_system_get_info(2, 0x7fc634010ee0) = 0 -43939471707417:43939471708045 26086:26091 hsa_system_get_info(2, 0x7fc634010ee8) = 0 -43939471708805:43939471709435 26086:26091 hsa_system_get_info(2, 0x7fc634010ef0) = 0 -43939471710197:43939471710825 26086:26091 hsa_system_get_info(2, 0x7fc634010ef8) = 0 -43939471711587:43939471712220 26086:26091 hsa_system_get_info(2, 0x7fc634010f00) = 0 -43939471712977:43939471713605 26086:26091 hsa_system_get_info(2, 0x7fc634010f08) = 0 -43939471714365:43939471714993 26086:26091 hsa_system_get_info(2, 0x7fc634010f10) = 0 -43939471715750:43939471716369 26086:26091 hsa_system_get_info(2, 0x7fc634010f18) = 0 -43939471717129:43939471717755 26086:26091 hsa_system_get_info(2, 0x7fc634010f20) = 0 -43939471718529:43939471719168 26086:26091 hsa_system_get_info(2, 0x7fc634010f28) = 0 -43939471719930:43939471720557 26086:26091 hsa_system_get_info(2, 0x7fc634010f30) = 0 -43939471721320:43939471721947 26086:26091 hsa_system_get_info(2, 0x7fc634010f38) = 0 -43939471722710:43939471723341 26086:26091 hsa_system_get_info(2, 0x7fc634010f40) = 0 -43939471724104:43939471724734 26086:26091 hsa_system_get_info(2, 0x7fc634010f48) = 0 -43939471725503:43939471726135 26086:26091 hsa_system_get_info(2, 0x7fc634010f50) = 0 -43939471727611:43939471728243 26086:26091 hsa_system_get_info(2, 0x7fc634010f58) = 0 -43939471736118:43939471736764 26086:26091 hsa_system_get_info(2, 0x7fc689f98868) = 0 -43939471737750:43939471739388 26086:26091 hsa_signal_create(1, , 0, 0x7fc677fff050) = 0 -43939471740411:43939471742928 26086:26091 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7fc677fff010) = 0 -43939471743918:43939471868890 26086:26091 hsa_amd_memory_async_copy(0x801b30000, , 0x902003000, , , , 0, ) = 0 -43939471888927:43939471892644 26086:26089 hsa_amd_profiling_get_async_copy_time(, 0x7fc68b9d8c40) = 0 -43939471904305:43939471905009 26086:26089 hsa_system_get_info(2, 0x7fc68b9d8ba8) = 0 -43939471906064:43939471906546 26086:26089 hsa_signal_load_relaxed() = 1 -43939471870218:43939471908084 26086:26091 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43939471907399:43939471908658 26086:26089 hsa_signal_store_screlease(, 0) = void -43939471909097:43939471909756 26086:26091 hsa_signal_destroy() = 0 -43939471909589:43939471910101 26086:26089 hsa_signal_destroy() = 0 -43939472099185:43939472126389 26086:26091 hsa_memory_free(0x801b30000) = 0 -43939472166227:43939472180093 26086:26091 hsa_executable_destroy() = 0 -43939472181250:43939472182075 26086:26091 hsa_signal_destroy() = 0 -43939472185037:43939472745522 26086:26091 hsa_queue_destroy() = 0 -43939471875582:43939471884862 async-copy0 diff --git a/test/golden_traces/ctrl_hsa_trace.txt b/test/golden_traces/ctrl_hsa_trace.txt deleted file mode 100644 index f56e21ee68..0000000000 --- a/test/golden_traces/ctrl_hsa_trace.txt +++ /dev/null @@ -1,4116 +0,0 @@ -ROCTracer (pid=26077): - HSA-trace() - HSA-activity-trace() -43937685556276:43937685559081 26077:26077 hsa_amd_profiling_async_copy_enable() = 0 -43937685573062:43937685573691 26077:26077 hsa_agent_get_info(, 17, 0x7ffda62d6480) = 0 -43937685575877:43937685576615 26077:26077 hsa_amd_memory_pool_get_info(, 0, 0x7ffda62d6300) = 0 -43937685577577:43937685578008 26077:26077 hsa_amd_memory_pool_get_info(, 1, 0x7ffda62d6304) = 0 -43937685578986:43937685579396 26077:26077 hsa_amd_memory_pool_get_info(, 0, 0x7ffda62d6300) = 0 -43937685580301:43937685580703 26077:26077 hsa_amd_memory_pool_get_info(, 1, 0x7ffda62d6304) = 0 -43937685580301:43937685581599 26077:26077 hsa_amd_agent_iterate_memory_pools(, 1, 0x11d9ef0) = 1 -43937685582977:43937685583382 26077:26077 hsa_amd_memory_pool_get_info(, 0, 0x7ffda62d6300) = 0 -43937685584267:43937685584670 26077:26077 hsa_amd_memory_pool_get_info(, 1, 0x7ffda62d6304) = 0 -43937685584267:43937685585560 26077:26077 hsa_amd_agent_iterate_memory_pools(, 1, 0x11d9f00) = 1 -43937685591239:43937685591737 26077:26077 hsa_agent_get_info(, 17, 0x7ffda62d6480) = 0 -43937685592810:43937685596928 26077:26077 hsa_agent_get_info(, 0, 0x11d9fc4) = 0 -43937685598684:43937685599115 26077:26077 hsa_agent_get_info(, 6, 0x11da004) = 0 -43937685600062:43937685600555 26077:26077 hsa_agent_get_info(, 14, 0x11da008) = 0 -43937685601475:43937685601904 26077:26077 hsa_agent_get_info(, 4, 0x11da00c) = 0 -43937685602821:43937685603241 26077:26077 hsa_agent_get_info(, 40962, 0x11da028) = 0 -43937685604159:43937685604584 26077:26077 hsa_agent_get_info(, 40970, 0x11da02c) = 0 -43937685605504:43937685605979 26077:26077 hsa_agent_get_info(, 40971, 0x11da030) = 0 -43937685606897:43937685607318 26077:26077 hsa_agent_get_info(, 40972, 0x11da034) = 0 -43937685608258:43937685608670 26077:26077 hsa_agent_get_info(, 40973, 0x11da038) = 0 -43937685610243:43937685610660 26077:26077 hsa_amd_memory_pool_get_info(, 0, 0x7ffda62d62f0) = 0 -43937685611544:43937685611966 26077:26077 hsa_amd_memory_pool_get_info(, 1, 0x7ffda62d62f4) = 0 -43937685611544:43937685612886 26077:26077 hsa_amd_agent_iterate_memory_pools(, 1, 0x11da018) = 1 -43937685611544:43937685615852 26077:26077 hsa_iterate_agents(1, 0x11bb320) = 0 -43937685616952:43937685712685 26077:26077 hsa_system_get_major_extension_table(, , , 0x11bb3b8) = 0 -43937685714392:43937685714851 26077:26077 hsa_system_get_major_extension_table(, , , 0x11bb408) = 0 -43937685716063:43937685716497 26077:26077 hsa_system_get_info(3, 0x7ffda62d65f8) = 0 -43937685723660:43937685724468 26077:26077 hsa_system_get_info(2, 0x11da890) = 0 -43937685726489:43937685727247 26077:26077 hsa_system_get_info(2, 0x11da898) = 0 -43937685729831:43937685730617 26077:26077 hsa_system_get_info(2, 0x11da8a0) = 0 -43937685731548:43937685732298 26077:26077 hsa_system_get_info(2, 0x11da8a8) = 0 -43937685733206:43937685733961 26077:26077 hsa_system_get_info(2, 0x11da8b0) = 0 -43937685734867:43937685735623 26077:26077 hsa_system_get_info(2, 0x11da8b8) = 0 -43937685736534:43937685737287 26077:26077 hsa_system_get_info(2, 0x11da8c0) = 0 -43937685738195:43937685738951 26077:26077 hsa_system_get_info(2, 0x11da8c8) = 0 -43937685739867:43937685740622 26077:26077 hsa_system_get_info(2, 0x11da8d0) = 0 -43937685741536:43937685742287 26077:26077 hsa_system_get_info(2, 0x11da8d8) = 0 -43937685743199:43937685743959 26077:26077 hsa_system_get_info(2, 0x11da8e0) = 0 -43937685744898:43937685745659 26077:26077 hsa_system_get_info(2, 0x11da8e8) = 0 -43937685746574:43937685747329 26077:26077 hsa_system_get_info(2, 0x11da8f0) = 0 -43937685748239:43937685748999 26077:26077 hsa_system_get_info(2, 0x11da8f8) = 0 -43937685749910:43937685750664 26077:26077 hsa_system_get_info(2, 0x11da900) = 0 -43937685751572:43937685752333 26077:26077 hsa_system_get_info(2, 0x11da908) = 0 -43937685753241:43937685754002 26077:26077 hsa_system_get_info(2, 0x11da910) = 0 -43937685754914:43937685755670 26077:26077 hsa_system_get_info(2, 0x11da918) = 0 -43937685756583:43937685757335 26077:26077 hsa_system_get_info(2, 0x11da920) = 0 -43937685758241:43937685758998 26077:26077 hsa_system_get_info(2, 0x11da928) = 0 -43937685759911:43937685760661 26077:26077 hsa_system_get_info(2, 0x11da930) = 0 -43937685761568:43937685762315 26077:26077 hsa_system_get_info(2, 0x11da938) = 0 -43937685763226:43937685764003 26077:26077 hsa_system_get_info(2, 0x11da940) = 0 -43937685764913:43937685765659 26077:26077 hsa_system_get_info(2, 0x11da948) = 0 -43937685766568:43937685767318 26077:26077 hsa_system_get_info(2, 0x11da950) = 0 -43937685768230:43937685768991 26077:26077 hsa_system_get_info(2, 0x11da958) = 0 -43937685769910:43937685770662 26077:26077 hsa_system_get_info(2, 0x11da960) = 0 -43937685771571:43937685772329 26077:26077 hsa_system_get_info(2, 0x11da968) = 0 -43937685773243:43937685773996 26077:26077 hsa_system_get_info(2, 0x11da970) = 0 -43937685774909:43937685775666 26077:26077 hsa_system_get_info(2, 0x11da978) = 0 -43937685778898:43937685779658 26077:26077 hsa_system_get_info(2, 0x11da980) = 0 -43937685780567:43937685781321 26077:26077 hsa_system_get_info(2, 0x11da988) = 0 -43937685782228:43937685782975 26077:26077 hsa_system_get_info(2, 0x11da990) = 0 -43937685783883:43937685784636 26077:26077 hsa_system_get_info(2, 0x11da998) = 0 -43937685785543:43937685786311 26077:26077 hsa_system_get_info(2, 0x11da9a0) = 0 -43937685787219:43937685787972 26077:26077 hsa_system_get_info(2, 0x11da9a8) = 0 -43937685788885:43937685789637 26077:26077 hsa_system_get_info(2, 0x11da9b0) = 0 -43937685790555:43937685791318 26077:26077 hsa_system_get_info(2, 0x11da9b8) = 0 -43937685792234:43937685792985 26077:26077 hsa_system_get_info(2, 0x11da9c0) = 0 -43937685793907:43937685794663 26077:26077 hsa_system_get_info(2, 0x11da9c8) = 0 -43937685795572:43937685796328 26077:26077 hsa_system_get_info(2, 0x11da9d0) = 0 -43937685797240:43937685797997 26077:26077 hsa_system_get_info(2, 0x11da9d8) = 0 -43937685798909:43937685799663 26077:26077 hsa_system_get_info(2, 0x11da9e0) = 0 -43937685800575:43937685801330 26077:26077 hsa_system_get_info(2, 0x11da9e8) = 0 -43937685802241:43937685802994 26077:26077 hsa_system_get_info(2, 0x11da9f0) = 0 -43937685803909:43937685804684 26077:26077 hsa_system_get_info(2, 0x11da9f8) = 0 -43937685805594:43937685806346 26077:26077 hsa_system_get_info(2, 0x11daa00) = 0 -43937685807257:43937685808009 26077:26077 hsa_system_get_info(2, 0x11daa08) = 0 -43937685808915:43937685809669 26077:26077 hsa_system_get_info(2, 0x11daa10) = 0 -43937685810583:43937685811341 26077:26077 hsa_system_get_info(2, 0x11daa18) = 0 -43937685812258:43937685813019 26077:26077 hsa_system_get_info(2, 0x11daa20) = 0 -43937685813932:43937685814688 26077:26077 hsa_system_get_info(2, 0x11daa28) = 0 -43937685815598:43937685816361 26077:26077 hsa_system_get_info(2, 0x11daa30) = 0 -43937685817272:43937685818033 26077:26077 hsa_system_get_info(2, 0x11daa38) = 0 -43937685818942:43937685819697 26077:26077 hsa_system_get_info(2, 0x11daa40) = 0 -43937685820602:43937685821356 26077:26077 hsa_system_get_info(2, 0x11daa48) = 0 -43937685822265:43937685823017 26077:26077 hsa_system_get_info(2, 0x11daa50) = 0 -43937685823926:43937685824680 26077:26077 hsa_system_get_info(2, 0x11daa58) = 0 -43937685825588:43937685826344 26077:26077 hsa_system_get_info(2, 0x11daa60) = 0 -43937685828529:43937685829297 26077:26077 hsa_system_get_info(2, 0x11daa68) = 0 -43937685830205:43937685830961 26077:26077 hsa_system_get_info(2, 0x11daa70) = 0 -43937685831878:43937685832631 26077:26077 hsa_system_get_info(2, 0x11daa78) = 0 -43937685833543:43937685834306 26077:26077 hsa_system_get_info(2, 0x11daa80) = 0 -43937685835209:43937685835965 26077:26077 hsa_system_get_info(2, 0x11daa88) = 0 -43937685836878:43937685837638 26077:26077 hsa_system_get_info(2, 0x11daa90) = 0 -43937685838551:43937685839311 26077:26077 hsa_system_get_info(2, 0x11daa98) = 0 -43937685840223:43937685840973 26077:26077 hsa_system_get_info(2, 0x11daaa0) = 0 -43937685841904:43937685842666 26077:26077 hsa_system_get_info(2, 0x11daaa8) = 0 -43937685843570:43937685844327 26077:26077 hsa_system_get_info(2, 0x11daab0) = 0 -43937685845234:43937685845993 26077:26077 hsa_system_get_info(2, 0x11daab8) = 0 -43937685846907:43937685847661 26077:26077 hsa_system_get_info(2, 0x11daac0) = 0 -43937685848573:43937685849330 26077:26077 hsa_system_get_info(2, 0x11daac8) = 0 -43937685850241:43937685850999 26077:26077 hsa_system_get_info(2, 0x11daad0) = 0 -43937685851910:43937685852662 26077:26077 hsa_system_get_info(2, 0x11daad8) = 0 -43937685853572:43937685854326 26077:26077 hsa_system_get_info(2, 0x11daae0) = 0 -43937685855240:43937685855995 26077:26077 hsa_system_get_info(2, 0x11daae8) = 0 -43937685856906:43937685857657 26077:26077 hsa_system_get_info(2, 0x11daaf0) = 0 -43937685858568:43937685859327 26077:26077 hsa_system_get_info(2, 0x11daaf8) = 0 -43937685860255:43937685861018 26077:26077 hsa_system_get_info(2, 0x11dab00) = 0 -43937685861931:43937685862683 26077:26077 hsa_system_get_info(2, 0x11dab08) = 0 -43937685863588:43937685864350 26077:26077 hsa_system_get_info(2, 0x11dab10) = 0 -43937685865259:43937685866024 26077:26077 hsa_system_get_info(2, 0x11dab18) = 0 -43937685866934:43937685867696 26077:26077 hsa_system_get_info(2, 0x11dab20) = 0 -43937685868609:43937685869370 26077:26077 hsa_system_get_info(2, 0x11dab28) = 0 -43937685870280:43937685871033 26077:26077 hsa_system_get_info(2, 0x11dab30) = 0 -43937685871945:43937685872699 26077:26077 hsa_system_get_info(2, 0x11dab38) = 0 -43937685873608:43937685874361 26077:26077 hsa_system_get_info(2, 0x11dab40) = 0 -43937685876213:43937685876975 26077:26077 hsa_system_get_info(2, 0x11dab48) = 0 -43937685877890:43937685878639 26077:26077 hsa_system_get_info(2, 0x11dab50) = 0 -43937685879548:43937685880303 26077:26077 hsa_system_get_info(2, 0x11dab58) = 0 -43937685881221:43937685881977 26077:26077 hsa_system_get_info(2, 0x11dab60) = 0 -43937685882889:43937685883640 26077:26077 hsa_system_get_info(2, 0x11dab68) = 0 -43937685884549:43937685885308 26077:26077 hsa_system_get_info(2, 0x11dab70) = 0 -43937685886223:43937685886980 26077:26077 hsa_system_get_info(2, 0x11dab78) = 0 -43937685887891:43937685888645 26077:26077 hsa_system_get_info(2, 0x11dab80) = 0 -43937685889552:43937685890310 26077:26077 hsa_system_get_info(2, 0x11dab88) = 0 -43937685891223:43937685891978 26077:26077 hsa_system_get_info(2, 0x11dab90) = 0 -43937685892881:43937685893643 26077:26077 hsa_system_get_info(2, 0x11dab98) = 0 -43937685894556:43937685895314 26077:26077 hsa_system_get_info(2, 0x11daba0) = 0 -43937685896222:43937685896984 26077:26077 hsa_system_get_info(2, 0x11daba8) = 0 -43937685897898:43937685898649 26077:26077 hsa_system_get_info(2, 0x11dabb0) = 0 -43937685899586:43937685900337 26077:26077 hsa_system_get_info(2, 0x11dabb8) = 0 -43937685901244:43937685902005 26077:26077 hsa_system_get_info(2, 0x11dabc0) = 0 -43937685902912:43937685903665 26077:26077 hsa_system_get_info(2, 0x11dabc8) = 0 -43937685904569:43937685905326 26077:26077 hsa_system_get_info(2, 0x11dabd0) = 0 -43937685906238:43937685906997 26077:26077 hsa_system_get_info(2, 0x11dabd8) = 0 -43937685907907:43937685908664 26077:26077 hsa_system_get_info(2, 0x11dabe0) = 0 -43937685909573:43937685910327 26077:26077 hsa_system_get_info(2, 0x11dabe8) = 0 -43937685911240:43937685911997 26077:26077 hsa_system_get_info(2, 0x11dabf0) = 0 -43937685912910:43937685913656 26077:26077 hsa_system_get_info(2, 0x11dabf8) = 0 -43937685914563:43937685915314 26077:26077 hsa_system_get_info(2, 0x11dac00) = 0 -43937685916233:43937685916978 26077:26077 hsa_system_get_info(2, 0x11dac08) = 0 -43937685917888:43937685918649 26077:26077 hsa_system_get_info(2, 0x11dac10) = 0 -43937685919564:43937685920312 26077:26077 hsa_system_get_info(2, 0x11dac18) = 0 -43937685921217:43937685921972 26077:26077 hsa_system_get_info(2, 0x11dac20) = 0 -43937685922888:43937685923648 26077:26077 hsa_system_get_info(2, 0x11dac28) = 0 -43937685925411:43937685926171 26077:26077 hsa_system_get_info(2, 0x11dac30) = 0 -43937685927084:43937685927838 26077:26077 hsa_system_get_info(2, 0x11dac38) = 0 -43937685928744:43937685929501 26077:26077 hsa_system_get_info(2, 0x11dac40) = 0 -43937685930415:43937685931176 26077:26077 hsa_system_get_info(2, 0x11dac48) = 0 -43937685932084:43937685932841 26077:26077 hsa_system_get_info(2, 0x11dac50) = 0 -43937685933755:43937685934501 26077:26077 hsa_system_get_info(2, 0x11dac58) = 0 -43937685935409:43937685936162 26077:26077 hsa_system_get_info(2, 0x11dac60) = 0 -43937685937069:43937685937822 26077:26077 hsa_system_get_info(2, 0x11dac68) = 0 -43937685938759:43937685939506 26077:26077 hsa_system_get_info(2, 0x11dac70) = 0 -43937685940419:43937685941175 26077:26077 hsa_system_get_info(2, 0x11dac78) = 0 -43937685942082:43937685942842 26077:26077 hsa_system_get_info(2, 0x11dac80) = 0 -43937685943750:43937685944506 26077:26077 hsa_system_get_info(2, 0x11dac88) = 0 -43937685945416:43937685946179 26077:26077 hsa_system_get_info(2, 0x11dac90) = 0 -43937685947104:43937685947859 26077:26077 hsa_system_get_info(2, 0x11dac98) = 0 -43937685948765:43937685949524 26077:26077 hsa_system_get_info(2, 0x11daca0) = 0 -43937685950437:43937685951196 26077:26077 hsa_system_get_info(2, 0x11daca8) = 0 -43937685952108:43937685952864 26077:26077 hsa_system_get_info(2, 0x11dacb0) = 0 -43937685953780:43937685954541 26077:26077 hsa_system_get_info(2, 0x11dacb8) = 0 -43937685955450:43937685956200 26077:26077 hsa_system_get_info(2, 0x11dacc0) = 0 -43937685957110:43937685957864 26077:26077 hsa_system_get_info(2, 0x11dacc8) = 0 -43937685958776:43937685959530 26077:26077 hsa_system_get_info(2, 0x11dacd0) = 0 -43937685960437:43937685961194 26077:26077 hsa_system_get_info(2, 0x11dacd8) = 0 -43937685962109:43937685962864 26077:26077 hsa_system_get_info(2, 0x11dace0) = 0 -43937685963774:43937685964528 26077:26077 hsa_system_get_info(2, 0x11dace8) = 0 -43937685965439:43937685966204 26077:26077 hsa_system_get_info(2, 0x11dacf0) = 0 -43937685967111:43937685967865 26077:26077 hsa_system_get_info(2, 0x11dacf8) = 0 -43937685968775:43937685969529 26077:26077 hsa_system_get_info(2, 0x11dad00) = 0 -43937685970437:43937685971210 26077:26077 hsa_system_get_info(2, 0x11dad08) = 0 -43937685973080:43937685973839 26077:26077 hsa_system_get_info(2, 0x11dad10) = 0 -43937685974746:43937685975500 26077:26077 hsa_system_get_info(2, 0x11dad18) = 0 -43937685976410:43937685977162 26077:26077 hsa_system_get_info(2, 0x11dad20) = 0 -43937685978073:43937685978840 26077:26077 hsa_system_get_info(2, 0x11dad28) = 0 -43937685979750:43937685980506 26077:26077 hsa_system_get_info(2, 0x11dad30) = 0 -43937685981411:43937685982157 26077:26077 hsa_system_get_info(2, 0x11dad38) = 0 -43937685983070:43937685983818 26077:26077 hsa_system_get_info(2, 0x11dad40) = 0 -43937685984729:43937685985476 26077:26077 hsa_system_get_info(2, 0x11dad48) = 0 -43937685986387:43937685987139 26077:26077 hsa_system_get_info(2, 0x11dad50) = 0 -43937685988058:43937685988818 26077:26077 hsa_system_get_info(2, 0x11dad58) = 0 -43937685989730:43937685990482 26077:26077 hsa_system_get_info(2, 0x11dad60) = 0 -43937685991390:43937685992143 26077:26077 hsa_system_get_info(2, 0x11dad68) = 0 -43937685993057:43937685993812 26077:26077 hsa_system_get_info(2, 0x11dad70) = 0 -43937685994726:43937685995504 26077:26077 hsa_system_get_info(2, 0x11dad78) = 0 -43937685996419:43937685997176 26077:26077 hsa_system_get_info(2, 0x11dad80) = 0 -43937685998088:43937685998842 26077:26077 hsa_system_get_info(2, 0x11dad88) = 0 -43937685999748:43937686000504 26077:26077 hsa_system_get_info(2, 0x11dad90) = 0 -43937686001415:43937686002177 26077:26077 hsa_system_get_info(2, 0x11dad98) = 0 -43937686003087:43937686003844 26077:26077 hsa_system_get_info(2, 0x11dada0) = 0 -43937686004767:43937686005525 26077:26077 hsa_system_get_info(2, 0x11dada8) = 0 -43937686006431:43937686007184 26077:26077 hsa_system_get_info(2, 0x11dadb0) = 0 -43937686008094:43937686008849 26077:26077 hsa_system_get_info(2, 0x11dadb8) = 0 -43937686009754:43937686010512 26077:26077 hsa_system_get_info(2, 0x11dadc0) = 0 -43937686011419:43937686012176 26077:26077 hsa_system_get_info(2, 0x11dadc8) = 0 -43937686013089:43937686013852 26077:26077 hsa_system_get_info(2, 0x11dadd0) = 0 -43937686014763:43937686015523 26077:26077 hsa_system_get_info(2, 0x11dadd8) = 0 -43937686016434:43937686017189 26077:26077 hsa_system_get_info(2, 0x11dade0) = 0 -43937686018097:43937686018861 26077:26077 hsa_system_get_info(2, 0x11dade8) = 0 -43937686019786:43937686020543 26077:26077 hsa_system_get_info(2, 0x11dadf0) = 0 -43937686022309:43937686023076 26077:26077 hsa_system_get_info(2, 0x11dadf8) = 0 -43937686023999:43937686024772 26077:26077 hsa_system_get_info(2, 0x11dae00) = 0 -43937686025683:43937686026439 26077:26077 hsa_system_get_info(2, 0x11dae08) = 0 -43937686027352:43937686028110 26077:26077 hsa_system_get_info(2, 0x11dae10) = 0 -43937686029024:43937686029775 26077:26077 hsa_system_get_info(2, 0x11dae18) = 0 -43937686030685:43937686031444 26077:26077 hsa_system_get_info(2, 0x11dae20) = 0 -43937686032357:43937686033111 26077:26077 hsa_system_get_info(2, 0x11dae28) = 0 -43937686034022:43937686034774 26077:26077 hsa_system_get_info(2, 0x11dae30) = 0 -43937686035710:43937686036465 26077:26077 hsa_system_get_info(2, 0x11dae38) = 0 -43937686037377:43937686038131 26077:26077 hsa_system_get_info(2, 0x11dae40) = 0 -43937686039040:43937686039795 26077:26077 hsa_system_get_info(2, 0x11dae48) = 0 -43937686040705:43937686041451 26077:26077 hsa_system_get_info(2, 0x11dae50) = 0 -43937686042365:43937686043122 26077:26077 hsa_system_get_info(2, 0x11dae58) = 0 -43937686044034:43937686044812 26077:26077 hsa_system_get_info(2, 0x11dae60) = 0 -43937686045725:43937686046480 26077:26077 hsa_system_get_info(2, 0x11dae68) = 0 -43937686047391:43937686048141 26077:26077 hsa_system_get_info(2, 0x11dae70) = 0 -43937686049047:43937686049807 26077:26077 hsa_system_get_info(2, 0x11dae78) = 0 -43937686050721:43937686051478 26077:26077 hsa_system_get_info(2, 0x11dae80) = 0 -43937686052392:43937686053146 26077:26077 hsa_system_get_info(2, 0x11dae88) = 0 -43937686054054:43937686054806 26077:26077 hsa_system_get_info(2, 0x11dae90) = 0 -43937686055714:43937686056461 26077:26077 hsa_system_get_info(2, 0x11dae98) = 0 -43937686057374:43937686058135 26077:26077 hsa_system_get_info(2, 0x11daea0) = 0 -43937686059043:43937686059799 26077:26077 hsa_system_get_info(2, 0x11daea8) = 0 -43937686060715:43937686061470 26077:26077 hsa_system_get_info(2, 0x11daeb0) = 0 -43937686062380:43937686063143 26077:26077 hsa_system_get_info(2, 0x11daeb8) = 0 -43937686064054:43937686064808 26077:26077 hsa_system_get_info(2, 0x11daec0) = 0 -43937686065721:43937686066472 26077:26077 hsa_system_get_info(2, 0x11daec8) = 0 -43937686067382:43937686068138 26077:26077 hsa_system_get_info(2, 0x11daed0) = 0 -43937686069909:43937686070667 26077:26077 hsa_system_get_info(2, 0x11daed8) = 0 -43937686071578:43937686072329 26077:26077 hsa_system_get_info(2, 0x11daee0) = 0 -43937686073240:43937686073989 26077:26077 hsa_system_get_info(2, 0x11daee8) = 0 -43937686074899:43937686075655 26077:26077 hsa_system_get_info(2, 0x11daef0) = 0 -43937686076566:43937686077310 26077:26077 hsa_system_get_info(2, 0x11daef8) = 0 -43937686078220:43937686078976 26077:26077 hsa_system_get_info(2, 0x11daf00) = 0 -43937686079890:43937686080655 26077:26077 hsa_system_get_info(2, 0x11daf08) = 0 -43937686081563:43937686082324 26077:26077 hsa_system_get_info(2, 0x11daf10) = 0 -43937686083232:43937686083989 26077:26077 hsa_system_get_info(2, 0x11daf18) = 0 -43937686084909:43937686085659 26077:26077 hsa_system_get_info(2, 0x11daf20) = 0 -43937686086571:43937686087318 26077:26077 hsa_system_get_info(2, 0x11daf28) = 0 -43937686088224:43937686088988 26077:26077 hsa_system_get_info(2, 0x11daf30) = 0 -43937686089903:43937686090657 26077:26077 hsa_system_get_info(2, 0x11daf38) = 0 -43937686091572:43937686092351 26077:26077 hsa_system_get_info(2, 0x11daf40) = 0 -43937686093263:43937686094016 26077:26077 hsa_system_get_info(2, 0x11daf48) = 0 -43937686094929:43937686095690 26077:26077 hsa_system_get_info(2, 0x11daf50) = 0 -43937686096601:43937686097359 26077:26077 hsa_system_get_info(2, 0x11daf58) = 0 -43937686098271:43937686099034 26077:26077 hsa_system_get_info(2, 0x11daf60) = 0 -43937686099949:43937686100718 26077:26077 hsa_system_get_info(2, 0x11daf68) = 0 -43937686101629:43937686102394 26077:26077 hsa_system_get_info(2, 0x11daf70) = 0 -43937686103319:43937686104074 26077:26077 hsa_system_get_info(2, 0x11daf78) = 0 -43937686104983:43937686105738 26077:26077 hsa_system_get_info(2, 0x11daf80) = 0 -43937686106644:43937686107405 26077:26077 hsa_system_get_info(2, 0x11daf88) = 0 -43937686108316:43937686109079 26077:26077 hsa_system_get_info(2, 0x11daf90) = 0 -43937686109995:43937686110749 26077:26077 hsa_system_get_info(2, 0x11daf98) = 0 -43937686111657:43937686112412 26077:26077 hsa_system_get_info(2, 0x11dafa0) = 0 -43937686113324:43937686114084 26077:26077 hsa_system_get_info(2, 0x11dafa8) = 0 -43937686114991:43937686115748 26077:26077 hsa_system_get_info(2, 0x11dafb0) = 0 -43937686117494:43937686118254 26077:26077 hsa_system_get_info(2, 0x11dafb8) = 0 -43937686119168:43937686119922 26077:26077 hsa_system_get_info(2, 0x11dafc0) = 0 -43937686120829:43937686121585 26077:26077 hsa_system_get_info(2, 0x11dafc8) = 0 -43937686122489:43937686123237 26077:26077 hsa_system_get_info(2, 0x11dafd0) = 0 -43937686124147:43937686124906 26077:26077 hsa_system_get_info(2, 0x11dafd8) = 0 -43937686125816:43937686126564 26077:26077 hsa_system_get_info(2, 0x11dafe0) = 0 -43937686127479:43937686128236 26077:26077 hsa_system_get_info(2, 0x11dafe8) = 0 -43937686129147:43937686129899 26077:26077 hsa_system_get_info(2, 0x11daff0) = 0 -43937686130813:43937686131570 26077:26077 hsa_system_get_info(2, 0x11daff8) = 0 -43937686132481:43937686133241 26077:26077 hsa_system_get_info(2, 0x11db000) = 0 -43937686134151:43937686134901 26077:26077 hsa_system_get_info(2, 0x11db008) = 0 -43937686135812:43937686136574 26077:26077 hsa_system_get_info(2, 0x11db010) = 0 -43937686137485:43937686138244 26077:26077 hsa_system_get_info(2, 0x11db018) = 0 -43937686139157:43937686139905 26077:26077 hsa_system_get_info(2, 0x11db020) = 0 -43937686140836:43937686141587 26077:26077 hsa_system_get_info(2, 0x11db028) = 0 -43937686142497:43937686143249 26077:26077 hsa_system_get_info(2, 0x11db030) = 0 -43937686144161:43937686144920 26077:26077 hsa_system_get_info(2, 0x11db038) = 0 -43937686145826:43937686146585 26077:26077 hsa_system_get_info(2, 0x11db040) = 0 -43937686147500:43937686148252 26077:26077 hsa_system_get_info(2, 0x11db048) = 0 -43937686149163:43937686149928 26077:26077 hsa_system_get_info(2, 0x11db050) = 0 -43937686150841:43937686151596 26077:26077 hsa_system_get_info(2, 0x11db058) = 0 -43937686152509:43937686153264 26077:26077 hsa_system_get_info(2, 0x11db060) = 0 -43937686154176:43937686154937 26077:26077 hsa_system_get_info(2, 0x11db068) = 0 -43937686155849:43937686156611 26077:26077 hsa_system_get_info(2, 0x11db070) = 0 -43937686157519:43937686158278 26077:26077 hsa_system_get_info(2, 0x11db078) = 0 -43937686159188:43937686159942 26077:26077 hsa_system_get_info(2, 0x11db080) = 0 -43937686160852:43937686161606 26077:26077 hsa_system_get_info(2, 0x11db088) = 0 -43937686162519:43937686163276 26077:26077 hsa_system_get_info(2, 0x11db090) = 0 -43937686164199:43937686164956 26077:26077 hsa_system_get_info(2, 0x11db098) = 0 -43937686166713:43937686167473 26077:26077 hsa_system_get_info(2, 0x11db0a0) = 0 -43937686168383:43937686169134 26077:26077 hsa_system_get_info(2, 0x11db0a8) = 0 -43937686170037:43937686170792 26077:26077 hsa_system_get_info(2, 0x11db0b0) = 0 -43937686171703:43937686172463 26077:26077 hsa_system_get_info(2, 0x11db0b8) = 0 -43937686173381:43937686174138 26077:26077 hsa_system_get_info(2, 0x11db0c0) = 0 -43937686175049:43937686175809 26077:26077 hsa_system_get_info(2, 0x11db0c8) = 0 -43937686176727:43937686177485 26077:26077 hsa_system_get_info(2, 0x11db0d0) = 0 -43937686178418:43937686179176 26077:26077 hsa_system_get_info(2, 0x11db0d8) = 0 -43937686180088:43937686180841 26077:26077 hsa_system_get_info(2, 0x11db0e0) = 0 -43937686181758:43937686182501 26077:26077 hsa_system_get_info(2, 0x11db0e8) = 0 -43937686183408:43937686184158 26077:26077 hsa_system_get_info(2, 0x11db0f0) = 0 -43937686185082:43937686185835 26077:26077 hsa_system_get_info(2, 0x11db0f8) = 0 -43937686186744:43937686187501 26077:26077 hsa_system_get_info(2, 0x11db100) = 0 -43937686188409:43937686189163 26077:26077 hsa_system_get_info(2, 0x11db108) = 0 -43937686190076:43937686190835 26077:26077 hsa_system_get_info(2, 0x11db110) = 0 -43937686191748:43937686192499 26077:26077 hsa_system_get_info(2, 0x11db118) = 0 -43937686193412:43937686194174 26077:26077 hsa_system_get_info(2, 0x11db120) = 0 -43937686195089:43937686195848 26077:26077 hsa_system_get_info(2, 0x11db128) = 0 -43937686196756:43937686197520 26077:26077 hsa_system_get_info(2, 0x11db130) = 0 -43937686198430:43937686199189 26077:26077 hsa_system_get_info(2, 0x11db138) = 0 -43937686200095:43937686200856 26077:26077 hsa_system_get_info(2, 0x11db140) = 0 -43937686201765:43937686202516 26077:26077 hsa_system_get_info(2, 0x11db148) = 0 -43937686203431:43937686204182 26077:26077 hsa_system_get_info(2, 0x11db150) = 0 -43937686205092:43937686205848 26077:26077 hsa_system_get_info(2, 0x11db158) = 0 -43937686206775:43937686207543 26077:26077 hsa_system_get_info(2, 0x11db160) = 0 -43937686208460:43937686209220 26077:26077 hsa_system_get_info(2, 0x11db168) = 0 -43937686210138:43937686210898 26077:26077 hsa_system_get_info(2, 0x11db170) = 0 -43937686211814:43937686212572 26077:26077 hsa_system_get_info(2, 0x11db178) = 0 -43937686214320:43937686215082 26077:26077 hsa_system_get_info(2, 0x11db180) = 0 -43937686216014:43937686216780 26077:26077 hsa_system_get_info(2, 0x11db188) = 0 -43937686217688:43937686218449 26077:26077 hsa_system_get_info(2, 0x11db190) = 0 -43937686219362:43937686220122 26077:26077 hsa_system_get_info(2, 0x11db198) = 0 -43937686221031:43937686221793 26077:26077 hsa_system_get_info(2, 0x11db1a0) = 0 -43937686222704:43937686223464 26077:26077 hsa_system_get_info(2, 0x11db1a8) = 0 -43937686224372:43937686225131 26077:26077 hsa_system_get_info(2, 0x11db1b0) = 0 -43937686226036:43937686226791 26077:26077 hsa_system_get_info(2, 0x11db1b8) = 0 -43937686227704:43937686228460 26077:26077 hsa_system_get_info(2, 0x11db1c0) = 0 -43937686229373:43937686230115 26077:26077 hsa_system_get_info(2, 0x11db1c8) = 0 -43937686231029:43937686231790 26077:26077 hsa_system_get_info(2, 0x11db1d0) = 0 -43937686232702:43937686233453 26077:26077 hsa_system_get_info(2, 0x11db1d8) = 0 -43937686234358:43937686235113 26077:26077 hsa_system_get_info(2, 0x11db1e0) = 0 -43937686236022:43937686236796 26077:26077 hsa_system_get_info(2, 0x11db1e8) = 0 -43937686237703:43937686238456 26077:26077 hsa_system_get_info(2, 0x11db1f0) = 0 -43937686239361:43937686240118 26077:26077 hsa_system_get_info(2, 0x11db1f8) = 0 -43937686241024:43937686241773 26077:26077 hsa_system_get_info(2, 0x11db200) = 0 -43937686242684:43937686243437 26077:26077 hsa_system_get_info(2, 0x11db208) = 0 -43937686244348:43937686245101 26077:26077 hsa_system_get_info(2, 0x11db210) = 0 -43937686246017:43937686246776 26077:26077 hsa_system_get_info(2, 0x11db218) = 0 -43937686247682:43937686248438 26077:26077 hsa_system_get_info(2, 0x11db220) = 0 -43937686249347:43937686250100 26077:26077 hsa_system_get_info(2, 0x11db228) = 0 -43937686251007:43937686251768 26077:26077 hsa_system_get_info(2, 0x11db230) = 0 -43937686252682:43937686253437 26077:26077 hsa_system_get_info(2, 0x11db238) = 0 -43937686254347:43937686255103 26077:26077 hsa_system_get_info(2, 0x11db240) = 0 -43937686256012:43937686256766 26077:26077 hsa_system_get_info(2, 0x11db248) = 0 -43937686257678:43937686258434 26077:26077 hsa_system_get_info(2, 0x11db250) = 0 -43937686259345:43937686260106 26077:26077 hsa_system_get_info(2, 0x11db258) = 0 -43937686261014:43937686261798 26077:26077 hsa_system_get_info(2, 0x11db260) = 0 -43937686263579:43937686264347 26077:26077 hsa_system_get_info(2, 0x11db268) = 0 -43937686265254:43937686266012 26077:26077 hsa_system_get_info(2, 0x11db270) = 0 -43937686266924:43937686267687 26077:26077 hsa_system_get_info(2, 0x11db278) = 0 -43937686268600:43937686269363 26077:26077 hsa_system_get_info(2, 0x11db280) = 0 -43937686270280:43937686271038 26077:26077 hsa_system_get_info(2, 0x11db288) = 0 -43937686271944:43937686272704 26077:26077 hsa_system_get_info(2, 0x11db290) = 0 -43937686273617:43937686274375 26077:26077 hsa_system_get_info(2, 0x11db298) = 0 -43937686275282:43937686276032 26077:26077 hsa_system_get_info(2, 0x11db2a0) = 0 -43937686276940:43937686277695 26077:26077 hsa_system_get_info(2, 0x11db2a8) = 0 -43937686278611:43937686279363 26077:26077 hsa_system_get_info(2, 0x11db2b0) = 0 -43937686280267:43937686281019 26077:26077 hsa_system_get_info(2, 0x11db2b8) = 0 -43937686281932:43937686282682 26077:26077 hsa_system_get_info(2, 0x11db2c0) = 0 -43937686283616:43937686284369 26077:26077 hsa_system_get_info(2, 0x11db2c8) = 0 -43937686285283:43937686286030 26077:26077 hsa_system_get_info(2, 0x11db2d0) = 0 -43937686286944:43937686287700 26077:26077 hsa_system_get_info(2, 0x11db2d8) = 0 -43937686288606:43937686289363 26077:26077 hsa_system_get_info(2, 0x11db2e0) = 0 -43937686290272:43937686291027 26077:26077 hsa_system_get_info(2, 0x11db2e8) = 0 -43937686291938:43937686292687 26077:26077 hsa_system_get_info(2, 0x11db2f0) = 0 -43937686293593:43937686294353 26077:26077 hsa_system_get_info(2, 0x11db2f8) = 0 -43937686295267:43937686296019 26077:26077 hsa_system_get_info(2, 0x11db300) = 0 -43937686296926:43937686297688 26077:26077 hsa_system_get_info(2, 0x11db308) = 0 -43937686298598:43937686299354 26077:26077 hsa_system_get_info(2, 0x11db310) = 0 -43937686300265:43937686301018 26077:26077 hsa_system_get_info(2, 0x11db318) = 0 -43937686301930:43937686302679 26077:26077 hsa_system_get_info(2, 0x11db320) = 0 -43937686303593:43937686304348 26077:26077 hsa_system_get_info(2, 0x11db328) = 0 -43937686305259:43937686306013 26077:26077 hsa_system_get_info(2, 0x11db330) = 0 -43937686306917:43937686307699 26077:26077 hsa_system_get_info(2, 0x11db338) = 0 -43937686308612:43937686309373 26077:26077 hsa_system_get_info(2, 0x11db340) = 0 -43937686311119:43937686311876 26077:26077 hsa_system_get_info(2, 0x11db348) = 0 -43937686312786:43937686313539 26077:26077 hsa_system_get_info(2, 0x11db350) = 0 -43937686314445:43937686315193 26077:26077 hsa_system_get_info(2, 0x11db358) = 0 -43937686316101:43937686316855 26077:26077 hsa_system_get_info(2, 0x11db360) = 0 -43937686317761:43937686318518 26077:26077 hsa_system_get_info(2, 0x11db368) = 0 -43937686319427:43937686320178 26077:26077 hsa_system_get_info(2, 0x11db370) = 0 -43937686321092:43937686321858 26077:26077 hsa_system_get_info(2, 0x11db378) = 0 -43937686322762:43937686323520 26077:26077 hsa_system_get_info(2, 0x11db380) = 0 -43937686324427:43937686325184 26077:26077 hsa_system_get_info(2, 0x11db388) = 0 -43937686326094:43937686326853 26077:26077 hsa_system_get_info(2, 0x11db390) = 0 -43937686327764:43937686328521 26077:26077 hsa_system_get_info(2, 0x11db398) = 0 -43937686329429:43937686330193 26077:26077 hsa_system_get_info(2, 0x11db3a0) = 0 -43937686331108:43937686331870 26077:26077 hsa_system_get_info(2, 0x11db3a8) = 0 -43937686332779:43937686333565 26077:26077 hsa_system_get_info(2, 0x11db3b0) = 0 -43937686334484:43937686335244 26077:26077 hsa_system_get_info(2, 0x11db3b8) = 0 -43937686336160:43937686336913 26077:26077 hsa_system_get_info(2, 0x11db3c0) = 0 -43937686337822:43937686338577 26077:26077 hsa_system_get_info(2, 0x11db3c8) = 0 -43937686339488:43937686340243 26077:26077 hsa_system_get_info(2, 0x11db3d0) = 0 -43937686341150:43937686341901 26077:26077 hsa_system_get_info(2, 0x11db3d8) = 0 -43937686342813:43937686343566 26077:26077 hsa_system_get_info(2, 0x11db3e0) = 0 -43937686344474:43937686345224 26077:26077 hsa_system_get_info(2, 0x11db3e8) = 0 -43937686346130:43937686346885 26077:26077 hsa_system_get_info(2, 0x11db3f0) = 0 -43937686347787:43937686348542 26077:26077 hsa_system_get_info(2, 0x11db3f8) = 0 -43937686349454:43937686350209 26077:26077 hsa_system_get_info(2, 0x11db400) = 0 -43937686351124:43937686351883 26077:26077 hsa_system_get_info(2, 0x11db408) = 0 -43937686352790:43937686353552 26077:26077 hsa_system_get_info(2, 0x11db410) = 0 -43937686354462:43937686355221 26077:26077 hsa_system_get_info(2, 0x11db418) = 0 -43937686356132:43937686356890 26077:26077 hsa_system_get_info(2, 0x11db420) = 0 -43937686357822:43937686358584 26077:26077 hsa_system_get_info(2, 0x11db428) = 0 -43937686361097:43937686361858 26077:26077 hsa_system_get_info(2, 0x11db430) = 0 -43937686362770:43937686363530 26077:26077 hsa_system_get_info(2, 0x11db438) = 0 -43937686364437:43937686365191 26077:26077 hsa_system_get_info(2, 0x11db440) = 0 -43937686366096:43937686366854 26077:26077 hsa_system_get_info(2, 0x11db448) = 0 -43937686367764:43937686368514 26077:26077 hsa_system_get_info(2, 0x11db450) = 0 -43937686369427:43937686370179 26077:26077 hsa_system_get_info(2, 0x11db458) = 0 -43937686371090:43937686371850 26077:26077 hsa_system_get_info(2, 0x11db460) = 0 -43937686372776:43937686373528 26077:26077 hsa_system_get_info(2, 0x11db468) = 0 -43937686374459:43937686375213 26077:26077 hsa_system_get_info(2, 0x11db470) = 0 -43937686376131:43937686376879 26077:26077 hsa_system_get_info(2, 0x11db478) = 0 -43937686377789:43937686378545 26077:26077 hsa_system_get_info(2, 0x11db480) = 0 -43937686379460:43937686380219 26077:26077 hsa_system_get_info(2, 0x11db488) = 0 -43937686381132:43937686381895 26077:26077 hsa_system_get_info(2, 0x11db490) = 0 -43937686382808:43937686383565 26077:26077 hsa_system_get_info(2, 0x11db498) = 0 -43937686384476:43937686385232 26077:26077 hsa_system_get_info(2, 0x11db4a0) = 0 -43937686386147:43937686386904 26077:26077 hsa_system_get_info(2, 0x11db4a8) = 0 -43937686387808:43937686388569 26077:26077 hsa_system_get_info(2, 0x11db4b0) = 0 -43937686389479:43937686390231 26077:26077 hsa_system_get_info(2, 0x11db4b8) = 0 -43937686391143:43937686391898 26077:26077 hsa_system_get_info(2, 0x11db4c0) = 0 -43937686392808:43937686393560 26077:26077 hsa_system_get_info(2, 0x11db4c8) = 0 -43937686394492:43937686395254 26077:26077 hsa_system_get_info(2, 0x11db4d0) = 0 -43937686396166:43937686396925 26077:26077 hsa_system_get_info(2, 0x11db4d8) = 0 -43937686397837:43937686398591 26077:26077 hsa_system_get_info(2, 0x11db4e0) = 0 -43937686399504:43937686400253 26077:26077 hsa_system_get_info(2, 0x11db4e8) = 0 -43937686401164:43937686401913 26077:26077 hsa_system_get_info(2, 0x11db4f0) = 0 -43937686402819:43937686403572 26077:26077 hsa_system_get_info(2, 0x11db4f8) = 0 -43937686404486:43937686405249 26077:26077 hsa_system_get_info(2, 0x11db500) = 0 -43937686406158:43937686406914 26077:26077 hsa_system_get_info(2, 0x11db508) = 0 -43937686408687:43937686409444 26077:26077 hsa_system_get_info(2, 0x11db510) = 0 -43937686410351:43937686411102 26077:26077 hsa_system_get_info(2, 0x11db518) = 0 -43937686412012:43937686412774 26077:26077 hsa_system_get_info(2, 0x11db520) = 0 -43937686413684:43937686414446 26077:26077 hsa_system_get_info(2, 0x11db528) = 0 -43937686415353:43937686416100 26077:26077 hsa_system_get_info(2, 0x11db530) = 0 -43937686417011:43937686417755 26077:26077 hsa_system_get_info(2, 0x11db538) = 0 -43937686418665:43937686419419 26077:26077 hsa_system_get_info(2, 0x11db540) = 0 -43937686420330:43937686421082 26077:26077 hsa_system_get_info(2, 0x11db548) = 0 -43937686421998:43937686422746 26077:26077 hsa_system_get_info(2, 0x11db550) = 0 -43937686423663:43937686424423 26077:26077 hsa_system_get_info(2, 0x11db558) = 0 -43937686425334:43937686426086 26077:26077 hsa_system_get_info(2, 0x11db560) = 0 -43937686426992:43937686427749 26077:26077 hsa_system_get_info(2, 0x11db568) = 0 -43937686428659:43937686429418 26077:26077 hsa_system_get_info(2, 0x11db570) = 0 -43937686430325:43937686431085 26077:26077 hsa_system_get_info(2, 0x11db578) = 0 -43937686431996:43937686432746 26077:26077 hsa_system_get_info(2, 0x11db580) = 0 -43937686433672:43937686434419 26077:26077 hsa_system_get_info(2, 0x11db588) = 0 -43937686435349:43937686436096 26077:26077 hsa_system_get_info(2, 0x11db590) = 0 -43937686437000:43937686437750 26077:26077 hsa_system_get_info(2, 0x11db598) = 0 -43937686438663:43937686439415 26077:26077 hsa_system_get_info(2, 0x11db5a0) = 0 -43937686440319:43937686441068 26077:26077 hsa_system_get_info(2, 0x11db5a8) = 0 -43937686441976:43937686442722 26077:26077 hsa_system_get_info(2, 0x11db5b0) = 0 -43937686443630:43937686444385 26077:26077 hsa_system_get_info(2, 0x11db5b8) = 0 -43937686445293:43937686446043 26077:26077 hsa_system_get_info(2, 0x11db5c0) = 0 -43937686446949:43937686447698 26077:26077 hsa_system_get_info(2, 0x11db5c8) = 0 -43937686448606:43937686449361 26077:26077 hsa_system_get_info(2, 0x11db5d0) = 0 -43937686450275:43937686451025 26077:26077 hsa_system_get_info(2, 0x11db5d8) = 0 -43937686451928:43937686452681 26077:26077 hsa_system_get_info(2, 0x11db5e0) = 0 -43937686453587:43937686454341 26077:26077 hsa_system_get_info(2, 0x11db5e8) = 0 -43937686455250:43937686456007 26077:26077 hsa_system_get_info(2, 0x11db5f0) = 0 -43937686457760:43937686458519 26077:26077 hsa_system_get_info(2, 0x11db5f8) = 0 -43937686459437:43937686460194 26077:26077 hsa_system_get_info(2, 0x11db600) = 0 -43937686461105:43937686461859 26077:26077 hsa_system_get_info(2, 0x11db608) = 0 -43937686462764:43937686463524 26077:26077 hsa_system_get_info(2, 0x11db610) = 0 -43937686464437:43937686465192 26077:26077 hsa_system_get_info(2, 0x11db618) = 0 -43937686466101:43937686466855 26077:26077 hsa_system_get_info(2, 0x11db620) = 0 -43937686467769:43937686468525 26077:26077 hsa_system_get_info(2, 0x11db628) = 0 -43937686469440:43937686470198 26077:26077 hsa_system_get_info(2, 0x11db630) = 0 -43937686471129:43937686471891 26077:26077 hsa_system_get_info(2, 0x11db638) = 0 -43937686472804:43937686473561 26077:26077 hsa_system_get_info(2, 0x11db640) = 0 -43937686474475:43937686475222 26077:26077 hsa_system_get_info(2, 0x11db648) = 0 -43937686476137:43937686476897 26077:26077 hsa_system_get_info(2, 0x11db650) = 0 -43937686477814:43937686478567 26077:26077 hsa_system_get_info(2, 0x11db658) = 0 -43937686479478:43937686480237 26077:26077 hsa_system_get_info(2, 0x11db660) = 0 -43937686481152:43937686481927 26077:26077 hsa_system_get_info(2, 0x11db668) = 0 -43937686482843:43937686483595 26077:26077 hsa_system_get_info(2, 0x11db670) = 0 -43937686484506:43937686485254 26077:26077 hsa_system_get_info(2, 0x11db678) = 0 -43937686486184:43937686486936 26077:26077 hsa_system_get_info(2, 0x11db680) = 0 -43937686487850:43937686488616 26077:26077 hsa_system_get_info(2, 0x11db688) = 0 -43937686489529:43937686490282 26077:26077 hsa_system_get_info(2, 0x11db690) = 0 -43937686491189:43937686491945 26077:26077 hsa_system_get_info(2, 0x11db698) = 0 -43937686492861:43937686493617 26077:26077 hsa_system_get_info(2, 0x11db6a0) = 0 -43937686494530:43937686495283 26077:26077 hsa_system_get_info(2, 0x11db6a8) = 0 -43937686496192:43937686496950 26077:26077 hsa_system_get_info(2, 0x11db6b0) = 0 -43937686497858:43937686498610 26077:26077 hsa_system_get_info(2, 0x11db6b8) = 0 -43937686499515:43937686500270 26077:26077 hsa_system_get_info(2, 0x11db6c0) = 0 -43937686501180:43937686501933 26077:26077 hsa_system_get_info(2, 0x11db6c8) = 0 -43937686502837:43937686503588 26077:26077 hsa_system_get_info(2, 0x11db6d0) = 0 -43937686505365:43937686506128 26077:26077 hsa_system_get_info(2, 0x11db6d8) = 0 -43937686507037:43937686507794 26077:26077 hsa_system_get_info(2, 0x11db6e0) = 0 -43937686508704:43937686509457 26077:26077 hsa_system_get_info(2, 0x11db6e8) = 0 -43937686510360:43937686511132 26077:26077 hsa_system_get_info(2, 0x11db6f0) = 0 -43937686512042:43937686512796 26077:26077 hsa_system_get_info(2, 0x11db6f8) = 0 -43937686513707:43937686514462 26077:26077 hsa_system_get_info(2, 0x11db700) = 0 -43937686515372:43937686516123 26077:26077 hsa_system_get_info(2, 0x11db708) = 0 -43937686517036:43937686517790 26077:26077 hsa_system_get_info(2, 0x11db710) = 0 -43937686518699:43937686519457 26077:26077 hsa_system_get_info(2, 0x11db718) = 0 -43937686520378:43937686521141 26077:26077 hsa_system_get_info(2, 0x11db720) = 0 -43937686522049:43937686522801 26077:26077 hsa_system_get_info(2, 0x11db728) = 0 -43937686523715:43937686524466 26077:26077 hsa_system_get_info(2, 0x11db730) = 0 -43937686525377:43937686526137 26077:26077 hsa_system_get_info(2, 0x11db738) = 0 -43937686527046:43937686527800 26077:26077 hsa_system_get_info(2, 0x11db740) = 0 -43937686528711:43937686529511 26077:26077 hsa_system_get_info(2, 0x11db748) = 0 -43937686530426:43937686531185 26077:26077 hsa_system_get_info(2, 0x11db750) = 0 -43937686532090:43937686532850 26077:26077 hsa_system_get_info(2, 0x11db758) = 0 -43937686533763:43937686534520 26077:26077 hsa_system_get_info(2, 0x11db760) = 0 -43937686535431:43937686536187 26077:26077 hsa_system_get_info(2, 0x11db768) = 0 -43937686537097:43937686537862 26077:26077 hsa_system_get_info(2, 0x11db770) = 0 -43937686538771:43937686539533 26077:26077 hsa_system_get_info(2, 0x11db778) = 0 -43937686540450:43937686541215 26077:26077 hsa_system_get_info(2, 0x11db780) = 0 -43937686542126:43937686542884 26077:26077 hsa_system_get_info(2, 0x11db788) = 0 -43937686543797:43937686544555 26077:26077 hsa_system_get_info(2, 0x11db790) = 0 -43937686545462:43937686546216 26077:26077 hsa_system_get_info(2, 0x11db798) = 0 -43937686547126:43937686547876 26077:26077 hsa_system_get_info(2, 0x11db7a0) = 0 -43937686548778:43937686549534 26077:26077 hsa_system_get_info(2, 0x11db7a8) = 0 -43937686550443:43937686551198 26077:26077 hsa_system_get_info(2, 0x11db7b0) = 0 -43937686552963:43937686553719 26077:26077 hsa_system_get_info(2, 0x11db7b8) = 0 -43937686554626:43937686555385 26077:26077 hsa_system_get_info(2, 0x11db7c0) = 0 -43937686556306:43937686557058 26077:26077 hsa_system_get_info(2, 0x11db7c8) = 0 -43937686557994:43937686558750 26077:26077 hsa_system_get_info(2, 0x11db7d0) = 0 -43937686559665:43937686560425 26077:26077 hsa_system_get_info(2, 0x11db7d8) = 0 -43937686561342:43937686562103 26077:26077 hsa_system_get_info(2, 0x11db7e0) = 0 -43937686563018:43937686563777 26077:26077 hsa_system_get_info(2, 0x11db7e8) = 0 -43937686564691:43937686565451 26077:26077 hsa_system_get_info(2, 0x11db7f0) = 0 -43937686566362:43937686567123 26077:26077 hsa_system_get_info(2, 0x11db7f8) = 0 -43937686568046:43937686568794 26077:26077 hsa_system_get_info(2, 0x11db800) = 0 -43937686569704:43937686570469 26077:26077 hsa_system_get_info(2, 0x11db808) = 0 -43937686571379:43937686572140 26077:26077 hsa_system_get_info(2, 0x11db810) = 0 -43937686573057:43937686573820 26077:26077 hsa_system_get_info(2, 0x11db818) = 0 -43937686574729:43937686575477 26077:26077 hsa_system_get_info(2, 0x11db820) = 0 -43937686576390:43937686577147 26077:26077 hsa_system_get_info(2, 0x11db828) = 0 -43937686578059:43937686578820 26077:26077 hsa_system_get_info(2, 0x11db830) = 0 -43937686579730:43937686580503 26077:26077 hsa_system_get_info(2, 0x11db838) = 0 -43937686581416:43937686582173 26077:26077 hsa_system_get_info(2, 0x11db840) = 0 -43937686583080:43937686583841 26077:26077 hsa_system_get_info(2, 0x11db848) = 0 -43937686584751:43937686585504 26077:26077 hsa_system_get_info(2, 0x11db850) = 0 -43937686586413:43937686587174 26077:26077 hsa_system_get_info(2, 0x11db858) = 0 -43937686588079:43937686588835 26077:26077 hsa_system_get_info(2, 0x11db860) = 0 -43937686589743:43937686590497 26077:26077 hsa_system_get_info(2, 0x11db868) = 0 -43937686591405:43937686592161 26077:26077 hsa_system_get_info(2, 0x11db870) = 0 -43937686593073:43937686593831 26077:26077 hsa_system_get_info(2, 0x11db878) = 0 -43937686594740:43937686595496 26077:26077 hsa_system_get_info(2, 0x11db880) = 0 -43937686596403:43937686597154 26077:26077 hsa_system_get_info(2, 0x11db888) = 0 -43937686598063:43937686598823 26077:26077 hsa_system_get_info(2, 0x11db890) = 0 -43937686599732:43937686600489 26077:26077 hsa_system_get_info(2, 0x11db898) = 0 -43937686602274:43937686603035 26077:26077 hsa_system_get_info(2, 0x11db8a0) = 0 -43937686603949:43937686604707 26077:26077 hsa_system_get_info(2, 0x11db8a8) = 0 -43937686605614:43937686606383 26077:26077 hsa_system_get_info(2, 0x11db8b0) = 0 -43937686607291:43937686608045 26077:26077 hsa_system_get_info(2, 0x11db8b8) = 0 -43937686608961:43937686609721 26077:26077 hsa_system_get_info(2, 0x11db8c0) = 0 -43937686610631:43937686611396 26077:26077 hsa_system_get_info(2, 0x11db8c8) = 0 -43937686612318:43937686613085 26077:26077 hsa_system_get_info(2, 0x11db8d0) = 0 -43937686613998:43937686614760 26077:26077 hsa_system_get_info(2, 0x11db8d8) = 0 -43937686615681:43937686616443 26077:26077 hsa_system_get_info(2, 0x11db8e0) = 0 -43937686617357:43937686618111 26077:26077 hsa_system_get_info(2, 0x11db8e8) = 0 -43937686619019:43937686619775 26077:26077 hsa_system_get_info(2, 0x11db8f0) = 0 -43937686620689:43937686621444 26077:26077 hsa_system_get_info(2, 0x11db8f8) = 0 -43937686622361:43937686623121 26077:26077 hsa_system_get_info(2, 0x11db900) = 0 -43937686624035:43937686624794 26077:26077 hsa_system_get_info(2, 0x11db908) = 0 -43937686625705:43937686626462 26077:26077 hsa_system_get_info(2, 0x11db910) = 0 -43937686627396:43937686628147 26077:26077 hsa_system_get_info(2, 0x11db918) = 0 -43937686629055:43937686629806 26077:26077 hsa_system_get_info(2, 0x11db920) = 0 -43937686630716:43937686631469 26077:26077 hsa_system_get_info(2, 0x11db928) = 0 -43937686632381:43937686633135 26077:26077 hsa_system_get_info(2, 0x11db930) = 0 -43937686634045:43937686634798 26077:26077 hsa_system_get_info(2, 0x11db938) = 0 -43937686635708:43937686636466 26077:26077 hsa_system_get_info(2, 0x11db940) = 0 -43937686637379:43937686638134 26077:26077 hsa_system_get_info(2, 0x11db948) = 0 -43937686639046:43937686639805 26077:26077 hsa_system_get_info(2, 0x11db950) = 0 -43937686640710:43937686641471 26077:26077 hsa_system_get_info(2, 0x11db958) = 0 -43937686642382:43937686643139 26077:26077 hsa_system_get_info(2, 0x11db960) = 0 -43937686644048:43937686644797 26077:26077 hsa_system_get_info(2, 0x11db968) = 0 -43937686645710:43937686646474 26077:26077 hsa_system_get_info(2, 0x11db970) = 0 -43937686647387:43937686648155 26077:26077 hsa_system_get_info(2, 0x11db978) = 0 -43937686649903:43937686650668 26077:26077 hsa_system_get_info(2, 0x11db980) = 0 -43937686651582:43937686652342 26077:26077 hsa_system_get_info(2, 0x11db988) = 0 -43937686653252:43937686654011 26077:26077 hsa_system_get_info(2, 0x11db990) = 0 -43937686654917:43937686655673 26077:26077 hsa_system_get_info(2, 0x11db998) = 0 -43937686656582:43937686657343 26077:26077 hsa_system_get_info(2, 0x11db9a0) = 0 -43937686658245:43937686659002 26077:26077 hsa_system_get_info(2, 0x11db9a8) = 0 -43937686659915:43937686660672 26077:26077 hsa_system_get_info(2, 0x11db9b0) = 0 -43937686661582:43937686662335 26077:26077 hsa_system_get_info(2, 0x11db9b8) = 0 -43937686663264:43937686664024 26077:26077 hsa_system_get_info(2, 0x11db9c0) = 0 -43937686664940:43937686665690 26077:26077 hsa_system_get_info(2, 0x11db9c8) = 0 -43937686666604:43937686667358 26077:26077 hsa_system_get_info(2, 0x11db9d0) = 0 -43937686668277:43937686669038 26077:26077 hsa_system_get_info(2, 0x11db9d8) = 0 -43937686669954:43937686670709 26077:26077 hsa_system_get_info(2, 0x11db9e0) = 0 -43937686671614:43937686672365 26077:26077 hsa_system_get_info(2, 0x11db9e8) = 0 -43937686673279:43937686674038 26077:26077 hsa_system_get_info(2, 0x11db9f0) = 0 -43937686674950:43937686675705 26077:26077 hsa_system_get_info(2, 0x11db9f8) = 0 -43937686676612:43937686677370 26077:26077 hsa_system_get_info(2, 0x11dba00) = 0 -43937686678281:43937686679036 26077:26077 hsa_system_get_info(2, 0x11dba08) = 0 -43937686679938:43937686680690 26077:26077 hsa_system_get_info(2, 0x11dba10) = 0 -43937686681597:43937686682360 26077:26077 hsa_system_get_info(2, 0x11dba18) = 0 -43937686683274:43937686684033 26077:26077 hsa_system_get_info(2, 0x11dba20) = 0 -43937686684940:43937686685696 26077:26077 hsa_system_get_info(2, 0x11dba28) = 0 -43937686686614:43937686687396 26077:26077 hsa_system_get_info(2, 0x11dba30) = 0 -43937686688301:43937686689051 26077:26077 hsa_system_get_info(2, 0x11dba38) = 0 -43937686689962:43937686690718 26077:26077 hsa_system_get_info(2, 0x11dba40) = 0 -43937686691622:43937686692385 26077:26077 hsa_system_get_info(2, 0x11dba48) = 0 -43937686693296:43937686694050 26077:26077 hsa_system_get_info(2, 0x11dba50) = 0 -43937686694957:43937686695697 26077:26077 hsa_system_get_info(2, 0x11dba58) = 0 -43937686696608:43937686697356 26077:26077 hsa_system_get_info(2, 0x11dba60) = 0 -43937686699125:43937686699885 26077:26077 hsa_system_get_info(2, 0x11dba68) = 0 -43937686700796:43937686701547 26077:26077 hsa_system_get_info(2, 0x11dba70) = 0 -43937686702458:43937686703217 26077:26077 hsa_system_get_info(2, 0x11dba78) = 0 -43937686704126:43937686704884 26077:26077 hsa_system_get_info(2, 0x11dba80) = 0 -43937686705788:43937686706546 26077:26077 hsa_system_get_info(2, 0x11dba88) = 0 -43937686707461:43937686708217 26077:26077 hsa_system_get_info(2, 0x11dba90) = 0 -43937686709125:43937686709882 26077:26077 hsa_system_get_info(2, 0x11dba98) = 0 -43937686710812:43937686711572 26077:26077 hsa_system_get_info(2, 0x11dbaa0) = 0 -43937686712487:43937686713249 26077:26077 hsa_system_get_info(2, 0x11dbaa8) = 0 -43937686714155:43937686714917 26077:26077 hsa_system_get_info(2, 0x11dbab0) = 0 -43937686715825:43937686716575 26077:26077 hsa_system_get_info(2, 0x11dbab8) = 0 -43937686717492:43937686718250 26077:26077 hsa_system_get_info(2, 0x11dbac0) = 0 -43937686719159:43937686719908 26077:26077 hsa_system_get_info(2, 0x11dbac8) = 0 -43937686720818:43937686721568 26077:26077 hsa_system_get_info(2, 0x11dbad0) = 0 -43937686722476:43937686723232 26077:26077 hsa_system_get_info(2, 0x11dbad8) = 0 -43937686724142:43937686724900 26077:26077 hsa_system_get_info(2, 0x11dbae0) = 0 -43937686725817:43937686726563 26077:26077 hsa_system_get_info(2, 0x11dbae8) = 0 -43937686727473:43937686728225 26077:26077 hsa_system_get_info(2, 0x11dbaf0) = 0 -43937686729138:43937686729887 26077:26077 hsa_system_get_info(2, 0x11dbaf8) = 0 -43937686730796:43937686731549 26077:26077 hsa_system_get_info(2, 0x11dbb00) = 0 -43937686732460:43937686733210 26077:26077 hsa_system_get_info(2, 0x11dbb08) = 0 -43937686734148:43937686734903 26077:26077 hsa_system_get_info(2, 0x11dbb10) = 0 -43937686735835:43937686736590 26077:26077 hsa_system_get_info(2, 0x11dbb18) = 0 -43937686737517:43937686738269 26077:26077 hsa_system_get_info(2, 0x11dbb20) = 0 -43937686739172:43937686739931 26077:26077 hsa_system_get_info(2, 0x11dbb28) = 0 -43937686740838:43937686741594 26077:26077 hsa_system_get_info(2, 0x11dbb30) = 0 -43937686742502:43937686743252 26077:26077 hsa_system_get_info(2, 0x11dbb38) = 0 -43937686744160:43937686744912 26077:26077 hsa_system_get_info(2, 0x11dbb40) = 0 -43937686746642:43937686747396 26077:26077 hsa_system_get_info(2, 0x11dbb48) = 0 -43937686748304:43937686749055 26077:26077 hsa_system_get_info(2, 0x11dbb50) = 0 -43937686749967:43937686750719 26077:26077 hsa_system_get_info(2, 0x11dbb58) = 0 -43937686751633:43937686752394 26077:26077 hsa_system_get_info(2, 0x11dbb60) = 0 -43937686753307:43937686754058 26077:26077 hsa_system_get_info(2, 0x11dbb68) = 0 -43937686754967:43937686755726 26077:26077 hsa_system_get_info(2, 0x11dbb70) = 0 -43937686756640:43937686757405 26077:26077 hsa_system_get_info(2, 0x11dbb78) = 0 -43937686758320:43937686759080 26077:26077 hsa_system_get_info(2, 0x11dbb80) = 0 -43937686759999:43937686760760 26077:26077 hsa_system_get_info(2, 0x11dbb88) = 0 -43937686761675:43937686762434 26077:26077 hsa_system_get_info(2, 0x11dbb90) = 0 -43937686763341:43937686764098 26077:26077 hsa_system_get_info(2, 0x11dbb98) = 0 -43937686765004:43937686765763 26077:26077 hsa_system_get_info(2, 0x11dbba0) = 0 -43937686766683:43937686767439 26077:26077 hsa_system_get_info(2, 0x11dbba8) = 0 -43937686768362:43937686769120 26077:26077 hsa_system_get_info(2, 0x11dbbb0) = 0 -43937686770028:43937686770787 26077:26077 hsa_system_get_info(2, 0x11dbbb8) = 0 -43937686771698:43937686772447 26077:26077 hsa_system_get_info(2, 0x11dbbc0) = 0 -43937686773360:43937686774107 26077:26077 hsa_system_get_info(2, 0x11dbbc8) = 0 -43937686775016:43937686775770 26077:26077 hsa_system_get_info(2, 0x11dbbd0) = 0 -43937686776674:43937686777425 26077:26077 hsa_system_get_info(2, 0x11dbbd8) = 0 -43937686778338:43937686779093 26077:26077 hsa_system_get_info(2, 0x11dbbe0) = 0 -43937686780005:43937686780762 26077:26077 hsa_system_get_info(2, 0x11dbbe8) = 0 -43937686781675:43937686782425 26077:26077 hsa_system_get_info(2, 0x11dbbf0) = 0 -43937686783334:43937686784093 26077:26077 hsa_system_get_info(2, 0x11dbbf8) = 0 -43937686785004:43937686785760 26077:26077 hsa_system_get_info(2, 0x11dbc00) = 0 -43937686786674:43937686787431 26077:26077 hsa_system_get_info(2, 0x11dbc08) = 0 -43937686788341:43937686789099 26077:26077 hsa_system_get_info(2, 0x11dbc10) = 0 -43937686790007:43937686790753 26077:26077 hsa_system_get_info(2, 0x11dbc18) = 0 -43937686791668:43937686792451 26077:26077 hsa_system_get_info(2, 0x11dbc20) = 0 -43937686793362:43937686794112 26077:26077 hsa_system_get_info(2, 0x11dbc28) = 0 -43937686795842:43937686796604 26077:26077 hsa_system_get_info(2, 0x11dbc30) = 0 -43937686797516:43937686798272 26077:26077 hsa_system_get_info(2, 0x11dbc38) = 0 -43937686799185:43937686799943 26077:26077 hsa_system_get_info(2, 0x11dbc40) = 0 -43937686800859:43937686801624 26077:26077 hsa_system_get_info(2, 0x11dbc48) = 0 -43937686802528:43937686803279 26077:26077 hsa_system_get_info(2, 0x11dbc50) = 0 -43937686804189:43937686804945 26077:26077 hsa_system_get_info(2, 0x11dbc58) = 0 -43937686805852:43937686806610 26077:26077 hsa_system_get_info(2, 0x11dbc60) = 0 -43937686807521:43937686808278 26077:26077 hsa_system_get_info(2, 0x11dbc68) = 0 -43937686809212:43937686809973 26077:26077 hsa_system_get_info(2, 0x11dbc70) = 0 -43937686810882:43937686811638 26077:26077 hsa_system_get_info(2, 0x11dbc78) = 0 -43937686812549:43937686813296 26077:26077 hsa_system_get_info(2, 0x11dbc80) = 0 -43937686814202:43937686814953 26077:26077 hsa_system_get_info(2, 0x11dbc88) = 0 -43937686815858:43937686816610 26077:26077 hsa_system_get_info(2, 0x11dbc90) = 0 -43937686817536:43937686818296 26077:26077 hsa_system_get_info(2, 0x11dbc98) = 0 -43937686819208:43937686819963 26077:26077 hsa_system_get_info(2, 0x11dbca0) = 0 -43937686820873:43937686821628 26077:26077 hsa_system_get_info(2, 0x11dbca8) = 0 -43937686822531:43937686823285 26077:26077 hsa_system_get_info(2, 0x11dbcb0) = 0 -43937686824196:43937686824949 26077:26077 hsa_system_get_info(2, 0x11dbcb8) = 0 -43937686825856:43937686826617 26077:26077 hsa_system_get_info(2, 0x11dbcc0) = 0 -43937686827529:43937686828292 26077:26077 hsa_system_get_info(2, 0x11dbcc8) = 0 -43937686829205:43937686829959 26077:26077 hsa_system_get_info(2, 0x11dbcd0) = 0 -43937686830872:43937686831617 26077:26077 hsa_system_get_info(2, 0x11dbcd8) = 0 -43937686832533:43937686833282 26077:26077 hsa_system_get_info(2, 0x11dbce0) = 0 -43937686834193:43937686834937 26077:26077 hsa_system_get_info(2, 0x11dbce8) = 0 -43937686835847:43937686836603 26077:26077 hsa_system_get_info(2, 0x11dbcf0) = 0 -43937686837514:43937686838267 26077:26077 hsa_system_get_info(2, 0x11dbcf8) = 0 -43937686839180:43937686839931 26077:26077 hsa_system_get_info(2, 0x11dbd00) = 0 -43937686840845:43937686841627 26077:26077 hsa_system_get_info(2, 0x11dbd08) = 0 -43937686843384:43937686844150 26077:26077 hsa_system_get_info(2, 0x11dbd10) = 0 -43937686845067:43937686845823 26077:26077 hsa_system_get_info(2, 0x11dbd18) = 0 -43937686846739:43937686847499 26077:26077 hsa_system_get_info(2, 0x11dbd20) = 0 -43937686848412:43937686849169 26077:26077 hsa_system_get_info(2, 0x11dbd28) = 0 -43937686850084:43937686850834 26077:26077 hsa_system_get_info(2, 0x11dbd30) = 0 -43937686851747:43937686852504 26077:26077 hsa_system_get_info(2, 0x11dbd38) = 0 -43937686853416:43937686854171 26077:26077 hsa_system_get_info(2, 0x11dbd40) = 0 -43937686855077:43937686855828 26077:26077 hsa_system_get_info(2, 0x11dbd48) = 0 -43937686856737:43937686857494 26077:26077 hsa_system_get_info(2, 0x11dbd50) = 0 -43937686858413:43937686859176 26077:26077 hsa_system_get_info(2, 0x11dbd58) = 0 -43937686860095:43937686860842 26077:26077 hsa_system_get_info(2, 0x11dbd60) = 0 -43937686861756:43937686862511 26077:26077 hsa_system_get_info(2, 0x11dbd68) = 0 -43937686863424:43937686864181 26077:26077 hsa_system_get_info(2, 0x11dbd70) = 0 -43937686865093:43937686865843 26077:26077 hsa_system_get_info(2, 0x11dbd78) = 0 -43937686866753:43937686867526 26077:26077 hsa_system_get_info(2, 0x11dbd80) = 0 -43937686868438:43937686869193 26077:26077 hsa_system_get_info(2, 0x11dbd88) = 0 -43937686870104:43937686870859 26077:26077 hsa_system_get_info(2, 0x11dbd90) = 0 -43937686871764:43937686872517 26077:26077 hsa_system_get_info(2, 0x11dbd98) = 0 -43937686873424:43937686874177 26077:26077 hsa_system_get_info(2, 0x11dbda0) = 0 -43937686875084:43937686875840 26077:26077 hsa_system_get_info(2, 0x11dbda8) = 0 -43937686876753:43937686877515 26077:26077 hsa_system_get_info(2, 0x11dbdb0) = 0 -43937686878426:43937686879185 26077:26077 hsa_system_get_info(2, 0x11dbdb8) = 0 -43937686880090:43937686880846 26077:26077 hsa_system_get_info(2, 0x11dbdc0) = 0 -43937686881760:43937686882507 26077:26077 hsa_system_get_info(2, 0x11dbdc8) = 0 -43937686883414:43937686884171 26077:26077 hsa_system_get_info(2, 0x11dbdd0) = 0 -43937686885083:43937686885846 26077:26077 hsa_system_get_info(2, 0x11dbdd8) = 0 -43937686886757:43937686887514 26077:26077 hsa_system_get_info(2, 0x11dbde0) = 0 -43937686888427:43937686889186 26077:26077 hsa_system_get_info(2, 0x11dbde8) = 0 -43937686890098:43937686890865 26077:26077 hsa_system_get_info(2, 0x11dbdf0) = 0 -43937686892662:43937686893433 26077:26077 hsa_system_get_info(2, 0x11dbdf8) = 0 -43937686894348:43937686895101 26077:26077 hsa_system_get_info(2, 0x11dbe00) = 0 -43937686896007:43937686896766 26077:26077 hsa_system_get_info(2, 0x11dbe08) = 0 -43937686897678:43937686898434 26077:26077 hsa_system_get_info(2, 0x11dbe10) = 0 -43937686899351:43937686900106 26077:26077 hsa_system_get_info(2, 0x11dbe18) = 0 -43937686901019:43937686901778 26077:26077 hsa_system_get_info(2, 0x11dbe20) = 0 -43937686902693:43937686903447 26077:26077 hsa_system_get_info(2, 0x11dbe28) = 0 -43937686904358:43937686905107 26077:26077 hsa_system_get_info(2, 0x11dbe30) = 0 -43937686906039:43937686906790 26077:26077 hsa_system_get_info(2, 0x11dbe38) = 0 -43937686907699:43937686908449 26077:26077 hsa_system_get_info(2, 0x11dbe40) = 0 -43937686909359:43937686910107 26077:26077 hsa_system_get_info(2, 0x11dbe48) = 0 -43937686911019:43937686911776 26077:26077 hsa_system_get_info(2, 0x11dbe50) = 0 -43937686912688:43937686913441 26077:26077 hsa_system_get_info(2, 0x11dbe58) = 0 -43937686914352:43937686915110 26077:26077 hsa_system_get_info(2, 0x11dbe60) = 0 -43937686916018:43937686916793 26077:26077 hsa_system_get_info(2, 0x11dbe68) = 0 -43937686917704:43937686918463 26077:26077 hsa_system_get_info(2, 0x11dbe70) = 0 -43937686919377:43937686920136 26077:26077 hsa_system_get_info(2, 0x11dbe78) = 0 -43937686921047:43937686921797 26077:26077 hsa_system_get_info(2, 0x11dbe80) = 0 -43937686922710:43937686923468 26077:26077 hsa_system_get_info(2, 0x11dbe88) = 0 -43937686924377:43937686925139 26077:26077 hsa_system_get_info(2, 0x11dbe90) = 0 -43937686926048:43937686926810 26077:26077 hsa_system_get_info(2, 0x11dbe98) = 0 -43937686927716:43937686928477 26077:26077 hsa_system_get_info(2, 0x11dbea0) = 0 -43937686929386:43937686930149 26077:26077 hsa_system_get_info(2, 0x11dbea8) = 0 -43937686931060:43937686931818 26077:26077 hsa_system_get_info(2, 0x11dbeb0) = 0 -43937686932731:43937686933495 26077:26077 hsa_system_get_info(2, 0x11dbeb8) = 0 -43937686934406:43937686935162 26077:26077 hsa_system_get_info(2, 0x11dbec0) = 0 -43937686936071:43937686936824 26077:26077 hsa_system_get_info(2, 0x11dbec8) = 0 -43937686937732:43937686938486 26077:26077 hsa_system_get_info(2, 0x11dbed0) = 0 -43937686940233:43937686940994 26077:26077 hsa_system_get_info(2, 0x11dbed8) = 0 -43937686941904:43937686942655 26077:26077 hsa_system_get_info(2, 0x11dbee0) = 0 -43937686943560:43937686944315 26077:26077 hsa_system_get_info(2, 0x11dbee8) = 0 -43937686945220:43937686945967 26077:26077 hsa_system_get_info(2, 0x11dbef0) = 0 -43937686946876:43937686947629 26077:26077 hsa_system_get_info(2, 0x11dbef8) = 0 -43937686948540:43937686949291 26077:26077 hsa_system_get_info(2, 0x11dbf00) = 0 -43937686950200:43937686950957 26077:26077 hsa_system_get_info(2, 0x11dbf08) = 0 -43937686951869:43937686952626 26077:26077 hsa_system_get_info(2, 0x11dbf10) = 0 -43937686953531:43937686954286 26077:26077 hsa_system_get_info(2, 0x11dbf18) = 0 -43937686955205:43937686955964 26077:26077 hsa_system_get_info(2, 0x11dbf20) = 0 -43937686956876:43937686957633 26077:26077 hsa_system_get_info(2, 0x11dbf28) = 0 -43937686958568:43937686959328 26077:26077 hsa_system_get_info(2, 0x11dbf30) = 0 -43937686960241:43937686960995 26077:26077 hsa_system_get_info(2, 0x11dbf38) = 0 -43937686961908:43937686962652 26077:26077 hsa_system_get_info(2, 0x11dbf40) = 0 -43937686963562:43937686964320 26077:26077 hsa_system_get_info(2, 0x11dbf48) = 0 -43937686965236:43937686965995 26077:26077 hsa_system_get_info(2, 0x11dbf50) = 0 -43937686966909:43937686967669 26077:26077 hsa_system_get_info(2, 0x11dbf58) = 0 -43937686968579:43937686969337 26077:26077 hsa_system_get_info(2, 0x11dbf60) = 0 -43937686970251:43937686971011 26077:26077 hsa_system_get_info(2, 0x11dbf68) = 0 -43937686971921:43937686972683 26077:26077 hsa_system_get_info(2, 0x11dbf70) = 0 -43937686973594:43937686974358 26077:26077 hsa_system_get_info(2, 0x11dbf78) = 0 -43937686975264:43937686976026 26077:26077 hsa_system_get_info(2, 0x11dbf80) = 0 -43937686976943:43937686977703 26077:26077 hsa_system_get_info(2, 0x11dbf88) = 0 -43937686978616:43937686979372 26077:26077 hsa_system_get_info(2, 0x11dbf90) = 0 -43937686980288:43937686981044 26077:26077 hsa_system_get_info(2, 0x11dbf98) = 0 -43937686981950:43937686982729 26077:26077 hsa_system_get_info(2, 0x11dbfa0) = 0 -43937686983644:43937686984406 26077:26077 hsa_system_get_info(2, 0x11dbfa8) = 0 -43937686985319:43937686986093 26077:26077 hsa_system_get_info(2, 0x11dbfb0) = 0 -43937686987835:43937686988596 26077:26077 hsa_system_get_info(2, 0x11dbfb8) = 0 -43937686989508:43937686990263 26077:26077 hsa_system_get_info(2, 0x11dbfc0) = 0 -43937686991178:43937686991929 26077:26077 hsa_system_get_info(2, 0x11dbfc8) = 0 -43937686992838:43937686993599 26077:26077 hsa_system_get_info(2, 0x11dbfd0) = 0 -43937686994511:43937686995264 26077:26077 hsa_system_get_info(2, 0x11dbfd8) = 0 -43937686996171:43937686996931 26077:26077 hsa_system_get_info(2, 0x11dbfe0) = 0 -43937686997837:43937686998593 26077:26077 hsa_system_get_info(2, 0x11dbfe8) = 0 -43937686999508:43937687000269 26077:26077 hsa_system_get_info(2, 0x11dbff0) = 0 -43937687001181:43937687001930 26077:26077 hsa_system_get_info(2, 0x11dbff8) = 0 -43937687002842:43937687003602 26077:26077 hsa_system_get_info(2, 0x11dc000) = 0 -43937687004515:43937687005272 26077:26077 hsa_system_get_info(2, 0x11dc008) = 0 -43937687006185:43937687006933 26077:26077 hsa_system_get_info(2, 0x11dc010) = 0 -43937687007842:43937687008596 26077:26077 hsa_system_get_info(2, 0x11dc018) = 0 -43937687009511:43937687010284 26077:26077 hsa_system_get_info(2, 0x11dc020) = 0 -43937687011192:43937687011948 26077:26077 hsa_system_get_info(2, 0x11dc028) = 0 -43937687012866:43937687013625 26077:26077 hsa_system_get_info(2, 0x11dc030) = 0 -43937687014538:43937687015290 26077:26077 hsa_system_get_info(2, 0x11dc038) = 0 -43937687016203:43937687016969 26077:26077 hsa_system_get_info(2, 0x11dc040) = 0 -43937687017883:43937687018640 26077:26077 hsa_system_get_info(2, 0x11dc048) = 0 -43937687019551:43937687020302 26077:26077 hsa_system_get_info(2, 0x11dc050) = 0 -43937687021211:43937687021967 26077:26077 hsa_system_get_info(2, 0x11dc058) = 0 -43937687022881:43937687023644 26077:26077 hsa_system_get_info(2, 0x11dc060) = 0 -43937687024560:43937687025317 26077:26077 hsa_system_get_info(2, 0x11dc068) = 0 -43937687026237:43937687026994 26077:26077 hsa_system_get_info(2, 0x11dc070) = 0 -43937687027904:43937687028657 26077:26077 hsa_system_get_info(2, 0x11dc078) = 0 -43937687029565:43937687030315 26077:26077 hsa_system_get_info(2, 0x11dc080) = 0 -43937687031228:43937687031978 26077:26077 hsa_system_get_info(2, 0x11dc088) = 0 -43937687032887:43937687033642 26077:26077 hsa_system_get_info(2, 0x11dc090) = 0 -43937687034550:43937687035311 26077:26077 hsa_system_get_info(2, 0x11dc098) = 0 -43937687037812:43937687038578 26077:26077 hsa_system_get_info(2, 0x11dc0a0) = 0 -43937687039489:43937687040244 26077:26077 hsa_system_get_info(2, 0x11dc0a8) = 0 -43937687041153:43937687041912 26077:26077 hsa_system_get_info(2, 0x11dc0b0) = 0 -43937687042822:43937687043581 26077:26077 hsa_system_get_info(2, 0x11dc0b8) = 0 -43937687044497:43937687045253 26077:26077 hsa_system_get_info(2, 0x11dc0c0) = 0 -43937687046165:43937687046925 26077:26077 hsa_system_get_info(2, 0x11dc0c8) = 0 -43937687047846:43937687048608 26077:26077 hsa_system_get_info(2, 0x11dc0d0) = 0 -43937687049524:43937687050278 26077:26077 hsa_system_get_info(2, 0x11dc0d8) = 0 -43937687051192:43937687051950 26077:26077 hsa_system_get_info(2, 0x11dc0e0) = 0 -43937687052864:43937687053625 26077:26077 hsa_system_get_info(2, 0x11dc0e8) = 0 -43937687054537:43937687055289 26077:26077 hsa_system_get_info(2, 0x11dc0f0) = 0 -43937687056196:43937687056956 26077:26077 hsa_system_get_info(2, 0x11dc0f8) = 0 -43937687057867:43937687058622 26077:26077 hsa_system_get_info(2, 0x11dc100) = 0 -43937687059532:43937687060290 26077:26077 hsa_system_get_info(2, 0x11dc108) = 0 -43937687061203:43937687061977 26077:26077 hsa_system_get_info(2, 0x11dc110) = 0 -43937687062892:43937687063654 26077:26077 hsa_system_get_info(2, 0x11dc118) = 0 -43937687064565:43937687065328 26077:26077 hsa_system_get_info(2, 0x11dc120) = 0 -43937687066239:43937687066992 26077:26077 hsa_system_get_info(2, 0x11dc128) = 0 -43937687067907:43937687068668 26077:26077 hsa_system_get_info(2, 0x11dc130) = 0 -43937687069576:43937687070332 26077:26077 hsa_system_get_info(2, 0x11dc138) = 0 -43937687071240:43937687071994 26077:26077 hsa_system_get_info(2, 0x11dc140) = 0 -43937687072903:43937687073656 26077:26077 hsa_system_get_info(2, 0x11dc148) = 0 -43937687074565:43937687075320 26077:26077 hsa_system_get_info(2, 0x11dc150) = 0 -43937687076231:43937687076990 26077:26077 hsa_system_get_info(2, 0x11dc158) = 0 -43937687077900:43937687078653 26077:26077 hsa_system_get_info(2, 0x11dc160) = 0 -43937687079559:43937687080316 26077:26077 hsa_system_get_info(2, 0x11dc168) = 0 -43937687081226:43937687081985 26077:26077 hsa_system_get_info(2, 0x11dc170) = 0 -43937687082895:43937687083647 26077:26077 hsa_system_get_info(2, 0x11dc178) = 0 -43937687085437:43937687086201 26077:26077 hsa_system_get_info(2, 0x11dc180) = 0 -43937687087111:43937687087865 26077:26077 hsa_system_get_info(2, 0x11dc188) = 0 -43937687088769:43937687089524 26077:26077 hsa_system_get_info(2, 0x11dc190) = 0 -43937687090432:43937687091188 26077:26077 hsa_system_get_info(2, 0x11dc198) = 0 -43937687092094:43937687092845 26077:26077 hsa_system_get_info(2, 0x11dc1a0) = 0 -43937687093752:43937687094504 26077:26077 hsa_system_get_info(2, 0x11dc1a8) = 0 -43937687095412:43937687096163 26077:26077 hsa_system_get_info(2, 0x11dc1b0) = 0 -43937687097070:43937687097819 26077:26077 hsa_system_get_info(2, 0x11dc1b8) = 0 -43937687098732:43937687099495 26077:26077 hsa_system_get_info(2, 0x11dc1c0) = 0 -43937687100410:43937687101164 26077:26077 hsa_system_get_info(2, 0x11dc1c8) = 0 -43937687102073:43937687102830 26077:26077 hsa_system_get_info(2, 0x11dc1d0) = 0 -43937687103734:43937687104490 26077:26077 hsa_system_get_info(2, 0x11dc1d8) = 0 -43937687105404:43937687106160 26077:26077 hsa_system_get_info(2, 0x11dc1e0) = 0 -43937687107069:43937687107818 26077:26077 hsa_system_get_info(2, 0x11dc1e8) = 0 -43937687108738:43937687109487 26077:26077 hsa_system_get_info(2, 0x11dc1f0) = 0 -43937687110397:43937687111155 26077:26077 hsa_system_get_info(2, 0x11dc1f8) = 0 -43937687112060:43937687112813 26077:26077 hsa_system_get_info(2, 0x11dc200) = 0 -43937687113719:43937687114474 26077:26077 hsa_system_get_info(2, 0x11dc208) = 0 -43937687115383:43937687116140 26077:26077 hsa_system_get_info(2, 0x11dc210) = 0 -43937687117050:43937687117806 26077:26077 hsa_system_get_info(2, 0x11dc218) = 0 -43937687118712:43937687119467 26077:26077 hsa_system_get_info(2, 0x11dc220) = 0 -43937687120374:43937687121122 26077:26077 hsa_system_get_info(2, 0x11dc228) = 0 -43937687122029:43937687122788 26077:26077 hsa_system_get_info(2, 0x11dc230) = 0 -43937687123698:43937687124460 26077:26077 hsa_system_get_info(2, 0x11dc238) = 0 -43937687125375:43937687126131 26077:26077 hsa_system_get_info(2, 0x11dc240) = 0 -43937687127044:43937687127797 26077:26077 hsa_system_get_info(2, 0x11dc248) = 0 -43937687128708:43937687129462 26077:26077 hsa_system_get_info(2, 0x11dc250) = 0 -43937687130372:43937687131128 26077:26077 hsa_system_get_info(2, 0x11dc258) = 0 -43937687132034:43937687132789 26077:26077 hsa_system_get_info(2, 0x11dc260) = 0 -43937687134525:43937687135290 26077:26077 hsa_system_get_info(2, 0x11dc268) = 0 -43937687136197:43937687136948 26077:26077 hsa_system_get_info(2, 0x11dc270) = 0 -43937687137863:43937687138622 26077:26077 hsa_system_get_info(2, 0x11dc278) = 0 -43937687139528:43937687140282 26077:26077 hsa_system_get_info(2, 0x11dc280) = 0 -43937687141193:43937687141955 26077:26077 hsa_system_get_info(2, 0x11dc288) = 0 -43937687142866:43937687143628 26077:26077 hsa_system_get_info(2, 0x11dc290) = 0 -43937687144535:43937687145285 26077:26077 hsa_system_get_info(2, 0x11dc298) = 0 -43937687146196:43937687146958 26077:26077 hsa_system_get_info(2, 0x11dc2a0) = 0 -43937687147865:43937687148624 26077:26077 hsa_system_get_info(2, 0x11dc2a8) = 0 -43937687149529:43937687150289 26077:26077 hsa_system_get_info(2, 0x11dc2b0) = 0 -43937687151198:43937687151945 26077:26077 hsa_system_get_info(2, 0x11dc2b8) = 0 -43937687152851:43937687153599 26077:26077 hsa_system_get_info(2, 0x11dc2c0) = 0 -43937687154510:43937687155263 26077:26077 hsa_system_get_info(2, 0x11dc2c8) = 0 -43937687156169:43937687156927 26077:26077 hsa_system_get_info(2, 0x11dc2d0) = 0 -43937687157841:43937687158613 26077:26077 hsa_system_get_info(2, 0x11dc2d8) = 0 -43937687159525:43937687160286 26077:26077 hsa_system_get_info(2, 0x11dc2e0) = 0 -43937687161199:43937687161954 26077:26077 hsa_system_get_info(2, 0x11dc2e8) = 0 -43937687162864:43937687163611 26077:26077 hsa_system_get_info(2, 0x11dc2f0) = 0 -43937687164522:43937687165275 26077:26077 hsa_system_get_info(2, 0x11dc2f8) = 0 -43937687166189:43937687166946 26077:26077 hsa_system_get_info(2, 0x11dc300) = 0 -43937687167853:43937687168613 26077:26077 hsa_system_get_info(2, 0x11dc308) = 0 -43937687169528:43937687170280 26077:26077 hsa_system_get_info(2, 0x11dc310) = 0 -43937687171194:43937687171952 26077:26077 hsa_system_get_info(2, 0x11dc318) = 0 -43937687172858:43937687173617 26077:26077 hsa_system_get_info(2, 0x11dc320) = 0 -43937687174557:43937687175323 26077:26077 hsa_system_get_info(2, 0x11dc328) = 0 -43937687176234:43937687176991 26077:26077 hsa_system_get_info(2, 0x11dc330) = 0 -43937687177920:43937687178674 26077:26077 hsa_system_get_info(2, 0x11dc338) = 0 -43937687179591:43937687180347 26077:26077 hsa_system_get_info(2, 0x11dc340) = 0 -43937687182103:43937687182854 26077:26077 hsa_system_get_info(2, 0x11dc348) = 0 -43937687183763:43937687184522 26077:26077 hsa_system_get_info(2, 0x11dc350) = 0 -43937687185437:43937687186196 26077:26077 hsa_system_get_info(2, 0x11dc358) = 0 -43937687187103:43937687187862 26077:26077 hsa_system_get_info(2, 0x11dc360) = 0 -43937687188774:43937687189535 26077:26077 hsa_system_get_info(2, 0x11dc368) = 0 -43937687190445:43937687191200 26077:26077 hsa_system_get_info(2, 0x11dc370) = 0 -43937687192109:43937687192869 26077:26077 hsa_system_get_info(2, 0x11dc378) = 0 -43937687193783:43937687194540 26077:26077 hsa_system_get_info(2, 0x11dc380) = 0 -43937687195482:43937687196241 26077:26077 hsa_system_get_info(2, 0x11dc388) = 0 -43937687197155:43937687197917 26077:26077 hsa_system_get_info(2, 0x11dc390) = 0 -43937687198829:43937687199591 26077:26077 hsa_system_get_info(2, 0x11dc398) = 0 -43937687200504:43937687201257 26077:26077 hsa_system_get_info(2, 0x11dc3a0) = 0 -43937687202172:43937687202920 26077:26077 hsa_system_get_info(2, 0x11dc3a8) = 0 -43937687203835:43937687204595 26077:26077 hsa_system_get_info(2, 0x11dc3b0) = 0 -43937687205513:43937687206288 26077:26077 hsa_system_get_info(2, 0x11dc3b8) = 0 -43937687207198:43937687207956 26077:26077 hsa_system_get_info(2, 0x11dc3c0) = 0 -43937687208870:43937687209629 26077:26077 hsa_system_get_info(2, 0x11dc3c8) = 0 -43937687210546:43937687211305 26077:26077 hsa_system_get_info(2, 0x11dc3d0) = 0 -43937687212213:43937687212970 26077:26077 hsa_system_get_info(2, 0x11dc3d8) = 0 -43937687213879:43937687214635 26077:26077 hsa_system_get_info(2, 0x11dc3e0) = 0 -43937687215546:43937687216302 26077:26077 hsa_system_get_info(2, 0x11dc3e8) = 0 -43937687217213:43937687217966 26077:26077 hsa_system_get_info(2, 0x11dc3f0) = 0 -43937687218886:43937687219642 26077:26077 hsa_system_get_info(2, 0x11dc3f8) = 0 -43937687220551:43937687221311 26077:26077 hsa_system_get_info(2, 0x11dc400) = 0 -43937687222240:43937687223000 26077:26077 hsa_system_get_info(2, 0x11dc408) = 0 -43937687223911:43937687224671 26077:26077 hsa_system_get_info(2, 0x11dc410) = 0 -43937687225581:43937687226329 26077:26077 hsa_system_get_info(2, 0x11dc418) = 0 -43937687227242:43937687228000 26077:26077 hsa_system_get_info(2, 0x11dc420) = 0 -43937687228915:43937687229669 26077:26077 hsa_system_get_info(2, 0x11dc428) = 0 -43937687231432:43937687232194 26077:26077 hsa_system_get_info(2, 0x11dc430) = 0 -43937687233111:43937687233863 26077:26077 hsa_system_get_info(2, 0x11dc438) = 0 -43937687234768:43937687235522 26077:26077 hsa_system_get_info(2, 0x11dc440) = 0 -43937687236430:43937687237184 26077:26077 hsa_system_get_info(2, 0x11dc448) = 0 -43937687238090:43937687238851 26077:26077 hsa_system_get_info(2, 0x11dc450) = 0 -43937687239762:43937687240511 26077:26077 hsa_system_get_info(2, 0x11dc458) = 0 -43937687241440:43937687242197 26077:26077 hsa_system_get_info(2, 0x11dc460) = 0 -43937687243111:43937687243870 26077:26077 hsa_system_get_info(2, 0x11dc468) = 0 -43937687244806:43937687245558 26077:26077 hsa_system_get_info(2, 0x11dc470) = 0 -43937687246465:43937687247222 26077:26077 hsa_system_get_info(2, 0x11dc478) = 0 -43937687248133:43937687248891 26077:26077 hsa_system_get_info(2, 0x11dc480) = 0 -43937687249801:43937687250559 26077:26077 hsa_system_get_info(2, 0x11dc488) = 0 -43937687251466:43937687252221 26077:26077 hsa_system_get_info(2, 0x11dc490) = 0 -43937687253130:43937687253892 26077:26077 hsa_system_get_info(2, 0x11dc498) = 0 -43937687254802:43937687255556 26077:26077 hsa_system_get_info(2, 0x11dc4a0) = 0 -43937687256460:43937687257217 26077:26077 hsa_system_get_info(2, 0x11dc4a8) = 0 -43937687258124:43937687258868 26077:26077 hsa_system_get_info(2, 0x11dc4b0) = 0 -43937687259775:43937687260531 26077:26077 hsa_system_get_info(2, 0x11dc4b8) = 0 -43937687261441:43937687262202 26077:26077 hsa_system_get_info(2, 0x11dc4c0) = 0 -43937687263107:43937687263860 26077:26077 hsa_system_get_info(2, 0x11dc4c8) = 0 -43937687264763:43937687265536 26077:26077 hsa_system_get_info(2, 0x11dc4d0) = 0 -43937687266449:43937687267216 26077:26077 hsa_system_get_info(2, 0x11dc4d8) = 0 -43937687268132:43937687268888 26077:26077 hsa_system_get_info(2, 0x11dc4e0) = 0 -43937687269788:43937687270547 26077:26077 hsa_system_get_info(2, 0x11dc4e8) = 0 -43937687271455:43937687272212 26077:26077 hsa_system_get_info(2, 0x11dc4f0) = 0 -43937687273120:43937687273873 26077:26077 hsa_system_get_info(2, 0x11dc4f8) = 0 -43937687274780:43937687275531 26077:26077 hsa_system_get_info(2, 0x11dc500) = 0 -43937687276430:43937687277185 26077:26077 hsa_system_get_info(2, 0x11dc508) = 0 -43937687280411:43937687281177 26077:26077 hsa_system_get_info(2, 0x11dc510) = 0 -43937687282090:43937687282838 26077:26077 hsa_system_get_info(2, 0x11dc518) = 0 -43937687283749:43937687284506 26077:26077 hsa_system_get_info(2, 0x11dc520) = 0 -43937687285421:43937687286177 26077:26077 hsa_system_get_info(2, 0x11dc528) = 0 -43937687287085:43937687287847 26077:26077 hsa_system_get_info(2, 0x11dc530) = 0 -43937687288759:43937687289513 26077:26077 hsa_system_get_info(2, 0x11dc538) = 0 -43937687290424:43937687291181 26077:26077 hsa_system_get_info(2, 0x11dc540) = 0 -43937687292089:43937687292862 26077:26077 hsa_system_get_info(2, 0x11dc548) = 0 -43937687293777:43937687294527 26077:26077 hsa_system_get_info(2, 0x11dc550) = 0 -43937687295444:43937687296203 26077:26077 hsa_system_get_info(2, 0x11dc558) = 0 -43937687297114:43937687297864 26077:26077 hsa_system_get_info(2, 0x11dc560) = 0 -43937687298768:43937687299519 26077:26077 hsa_system_get_info(2, 0x11dc568) = 0 -43937687300429:43937687301193 26077:26077 hsa_system_get_info(2, 0x11dc570) = 0 -43937687302106:43937687302865 26077:26077 hsa_system_get_info(2, 0x11dc578) = 0 -43937687303770:43937687304546 26077:26077 hsa_system_get_info(2, 0x11dc580) = 0 -43937687305451:43937687306216 26077:26077 hsa_system_get_info(2, 0x11dc588) = 0 -43937687307125:43937687307880 26077:26077 hsa_system_get_info(2, 0x11dc590) = 0 -43937687308794:43937687309546 26077:26077 hsa_system_get_info(2, 0x11dc598) = 0 -43937687310452:43937687311208 26077:26077 hsa_system_get_info(2, 0x11dc5a0) = 0 -43937687312117:43937687312863 26077:26077 hsa_system_get_info(2, 0x11dc5a8) = 0 -43937687313774:43937687314529 26077:26077 hsa_system_get_info(2, 0x11dc5b0) = 0 -43937687315440:43937687316194 26077:26077 hsa_system_get_info(2, 0x11dc5b8) = 0 -43937687317106:43937687317859 26077:26077 hsa_system_get_info(2, 0x11dc5c0) = 0 -43937687318771:43937687319523 26077:26077 hsa_system_get_info(2, 0x11dc5c8) = 0 -43937687320432:43937687321185 26077:26077 hsa_system_get_info(2, 0x11dc5d0) = 0 -43937687322096:43937687322850 26077:26077 hsa_system_get_info(2, 0x11dc5d8) = 0 -43937687323758:43937687324507 26077:26077 hsa_system_get_info(2, 0x11dc5e0) = 0 -43937687325415:43937687326173 26077:26077 hsa_system_get_info(2, 0x11dc5e8) = 0 -43937687327094:43937687327850 26077:26077 hsa_system_get_info(2, 0x11dc5f0) = 0 -43937687329613:43937687330383 26077:26077 hsa_system_get_info(2, 0x11dc5f8) = 0 -43937687331298:43937687332060 26077:26077 hsa_system_get_info(2, 0x11dc600) = 0 -43937687332969:43937687333723 26077:26077 hsa_system_get_info(2, 0x11dc608) = 0 -43937687334627:43937687335387 26077:26077 hsa_system_get_info(2, 0x11dc610) = 0 -43937687336299:43937687337060 26077:26077 hsa_system_get_info(2, 0x11dc618) = 0 -43937687337972:43937687338731 26077:26077 hsa_system_get_info(2, 0x11dc620) = 0 -43937687339643:43937687340390 26077:26077 hsa_system_get_info(2, 0x11dc628) = 0 -43937687341301:43937687342063 26077:26077 hsa_system_get_info(2, 0x11dc630) = 0 -43937687342999:43937687343760 26077:26077 hsa_system_get_info(2, 0x11dc638) = 0 -43937687344673:43937687345438 26077:26077 hsa_system_get_info(2, 0x11dc640) = 0 -43937687346352:43937687347114 26077:26077 hsa_system_get_info(2, 0x11dc648) = 0 -43937687348027:43937687348785 26077:26077 hsa_system_get_info(2, 0x11dc650) = 0 -43937687349699:43937687350452 26077:26077 hsa_system_get_info(2, 0x11dc658) = 0 -43937687351359:43937687352139 26077:26077 hsa_system_get_info(2, 0x11dc660) = 0 -43937687353053:43937687353812 26077:26077 hsa_system_get_info(2, 0x11dc668) = 0 -43937687354721:43937687355479 26077:26077 hsa_system_get_info(2, 0x11dc670) = 0 -43937687356390:43937687357141 26077:26077 hsa_system_get_info(2, 0x11dc678) = 0 -43937687358049:43937687358803 26077:26077 hsa_system_get_info(2, 0x11dc680) = 0 -43937687359716:43937687360472 26077:26077 hsa_system_get_info(2, 0x11dc688) = 0 -43937687361380:43937687362138 26077:26077 hsa_system_get_info(2, 0x11dc690) = 0 -43937687363044:43937687363794 26077:26077 hsa_system_get_info(2, 0x11dc698) = 0 -43937687364707:43937687365467 26077:26077 hsa_system_get_info(2, 0x11dc6a0) = 0 -43937687366374:43937687367126 26077:26077 hsa_system_get_info(2, 0x11dc6a8) = 0 -43937687368035:43937687368793 26077:26077 hsa_system_get_info(2, 0x11dc6b0) = 0 -43937687369704:43937687370466 26077:26077 hsa_system_get_info(2, 0x11dc6b8) = 0 -43937687371374:43937687372126 26077:26077 hsa_system_get_info(2, 0x11dc6c0) = 0 -43937687373037:43937687373789 26077:26077 hsa_system_get_info(2, 0x11dc6c8) = 0 -43937687374697:43937687375453 26077:26077 hsa_system_get_info(2, 0x11dc6d0) = 0 -43937687377214:43937687377985 26077:26077 hsa_system_get_info(2, 0x11dc6d8) = 0 -43937687378891:43937687379649 26077:26077 hsa_system_get_info(2, 0x11dc6e0) = 0 -43937687380557:43937687381314 26077:26077 hsa_system_get_info(2, 0x11dc6e8) = 0 -43937687382221:43937687382972 26077:26077 hsa_system_get_info(2, 0x11dc6f0) = 0 -43937687383883:43937687384639 26077:26077 hsa_system_get_info(2, 0x11dc6f8) = 0 -43937687385549:43937687386302 26077:26077 hsa_system_get_info(2, 0x11dc700) = 0 -43937687387210:43937687387968 26077:26077 hsa_system_get_info(2, 0x11dc708) = 0 -43937687388878:43937687389640 26077:26077 hsa_system_get_info(2, 0x11dc710) = 0 -43937687390553:43937687391317 26077:26077 hsa_system_get_info(2, 0x11dc718) = 0 -43937687392237:43937687392996 26077:26077 hsa_system_get_info(2, 0x11dc720) = 0 -43937687393932:43937687394687 26077:26077 hsa_system_get_info(2, 0x11dc728) = 0 -43937687395596:43937687396348 26077:26077 hsa_system_get_info(2, 0x11dc730) = 0 -43937687397257:43937687398011 26077:26077 hsa_system_get_info(2, 0x11dc738) = 0 -43937687398924:43937687399679 26077:26077 hsa_system_get_info(2, 0x11dc740) = 0 -43937687400589:43937687401343 26077:26077 hsa_system_get_info(2, 0x11dc748) = 0 -43937687402252:43937687403006 26077:26077 hsa_system_get_info(2, 0x11dc750) = 0 -43937687403914:43937687404672 26077:26077 hsa_system_get_info(2, 0x11dc758) = 0 -43937687405581:43937687406329 26077:26077 hsa_system_get_info(2, 0x11dc760) = 0 -43937687407237:43937687407991 26077:26077 hsa_system_get_info(2, 0x11dc768) = 0 -43937687408902:43937687409659 26077:26077 hsa_system_get_info(2, 0x11dc770) = 0 -43937687410572:43937687411330 26077:26077 hsa_system_get_info(2, 0x11dc778) = 0 -43937687412238:43937687413006 26077:26077 hsa_system_get_info(2, 0x11dc780) = 0 -43937687413916:43937687414674 26077:26077 hsa_system_get_info(2, 0x11dc788) = 0 -43937687415582:43937687416335 26077:26077 hsa_system_get_info(2, 0x11dc790) = 0 -43937687417248:43937687418019 26077:26077 hsa_system_get_info(2, 0x11dc798) = 0 -43937687418929:43937687419678 26077:26077 hsa_system_get_info(2, 0x11dc7a0) = 0 -43937687420593:43937687421347 26077:26077 hsa_system_get_info(2, 0x11dc7a8) = 0 -43937687422254:43937687423001 26077:26077 hsa_system_get_info(2, 0x11dc7b0) = 0 -43937687424772:43937687425538 26077:26077 hsa_system_get_info(2, 0x11dc7b8) = 0 -43937687426469:43937687427226 26077:26077 hsa_system_get_info(2, 0x11dc7c0) = 0 -43937687428139:43937687428900 26077:26077 hsa_system_get_info(2, 0x11dc7c8) = 0 -43937687443696:43937687444516 26077:26077 hsa_system_get_info(2, 0x11da890) = 0 -43937687445471:43937687446233 26077:26077 hsa_system_get_info(2, 0x11da898) = 0 -43937687447192:43937687447959 26077:26077 hsa_system_get_info(2, 0x11da8a0) = 0 -43937687448896:43937687449670 26077:26077 hsa_system_get_info(2, 0x11da8a8) = 0 -43937687450606:43937687451375 26077:26077 hsa_system_get_info(2, 0x11da8b0) = 0 -43937687452319:43937687453091 26077:26077 hsa_system_get_info(2, 0x11da8b8) = 0 -43937687454033:43937687454801 26077:26077 hsa_system_get_info(2, 0x11da8c0) = 0 -43937687455735:43937687456510 26077:26077 hsa_system_get_info(2, 0x11da8c8) = 0 -43937687457449:43937687458221 26077:26077 hsa_system_get_info(2, 0x11da8d0) = 0 -43937687459158:43937687459931 26077:26077 hsa_system_get_info(2, 0x11da8d8) = 0 -43937687460868:43937687461643 26077:26077 hsa_system_get_info(2, 0x11da8e0) = 0 -43937687462579:43937687463355 26077:26077 hsa_system_get_info(2, 0x11da8e8) = 0 -43937687464288:43937687465062 26077:26077 hsa_system_get_info(2, 0x11da8f0) = 0 -43937687466001:43937687466774 26077:26077 hsa_system_get_info(2, 0x11da8f8) = 0 -43937687467710:43937687468485 26077:26077 hsa_system_get_info(2, 0x11da900) = 0 -43937687469421:43937687470193 26077:26077 hsa_system_get_info(2, 0x11da908) = 0 -43937687471128:43937687471919 26077:26077 hsa_system_get_info(2, 0x11da910) = 0 -43937687472855:43937687473629 26077:26077 hsa_system_get_info(2, 0x11da918) = 0 -43937687474565:43937687475338 26077:26077 hsa_system_get_info(2, 0x11da920) = 0 -43937687476272:43937687477046 26077:26077 hsa_system_get_info(2, 0x11da928) = 0 -43937687477979:43937687478751 26077:26077 hsa_system_get_info(2, 0x11da930) = 0 -43937687479690:43937687480463 26077:26077 hsa_system_get_info(2, 0x11da938) = 0 -43937687481397:43937687482172 26077:26077 hsa_system_get_info(2, 0x11da940) = 0 -43937687483108:43937687483879 26077:26077 hsa_system_get_info(2, 0x11da948) = 0 -43937687484818:43937687485591 26077:26077 hsa_system_get_info(2, 0x11da950) = 0 -43937687486531:43937687487303 26077:26077 hsa_system_get_info(2, 0x11da958) = 0 -43937687489185:43937687489956 26077:26077 hsa_system_get_info(2, 0x11da960) = 0 -43937687490893:43937687491662 26077:26077 hsa_system_get_info(2, 0x11da968) = 0 -43937687492597:43937687493371 26077:26077 hsa_system_get_info(2, 0x11da970) = 0 -43937687494306:43937687495076 26077:26077 hsa_system_get_info(2, 0x11da978) = 0 -43937687496015:43937687496789 26077:26077 hsa_system_get_info(2, 0x11da980) = 0 -43937687497724:43937687498499 26077:26077 hsa_system_get_info(2, 0x11da988) = 0 -43937687499434:43937687500204 26077:26077 hsa_system_get_info(2, 0x11da990) = 0 -43937687501144:43937687501913 26077:26077 hsa_system_get_info(2, 0x11da998) = 0 -43937687502848:43937687503624 26077:26077 hsa_system_get_info(2, 0x11da9a0) = 0 -43937687504563:43937687505338 26077:26077 hsa_system_get_info(2, 0x11da9a8) = 0 -43937687506274:43937687507046 26077:26077 hsa_system_get_info(2, 0x11da9b0) = 0 -43937687507984:43937687508754 26077:26077 hsa_system_get_info(2, 0x11da9b8) = 0 -43937687509689:43937687510466 26077:26077 hsa_system_get_info(2, 0x11da9c0) = 0 -43937687511400:43937687512190 26077:26077 hsa_system_get_info(2, 0x11da9c8) = 0 -43937687513127:43937687513898 26077:26077 hsa_system_get_info(2, 0x11da9d0) = 0 -43937687514836:43937687515604 26077:26077 hsa_system_get_info(2, 0x11da9d8) = 0 -43937687516545:43937687517316 26077:26077 hsa_system_get_info(2, 0x11da9e0) = 0 -43937687518252:43937687519028 26077:26077 hsa_system_get_info(2, 0x11da9e8) = 0 -43937687519963:43937687520736 26077:26077 hsa_system_get_info(2, 0x11da9f0) = 0 -43937687521672:43937687522441 26077:26077 hsa_system_get_info(2, 0x11da9f8) = 0 -43937687523378:43937687524152 26077:26077 hsa_system_get_info(2, 0x11daa00) = 0 -43937687525089:43937687525860 26077:26077 hsa_system_get_info(2, 0x11daa08) = 0 -43937687526798:43937687527569 26077:26077 hsa_system_get_info(2, 0x11daa10) = 0 -43937687528504:43937687529275 26077:26077 hsa_system_get_info(2, 0x11daa18) = 0 -43937687530211:43937687530984 26077:26077 hsa_system_get_info(2, 0x11daa20) = 0 -43937687531922:43937687532694 26077:26077 hsa_system_get_info(2, 0x11daa28) = 0 -43937687533628:43937687534403 26077:26077 hsa_system_get_info(2, 0x11daa30) = 0 -43937687535337:43937687536106 26077:26077 hsa_system_get_info(2, 0x11daa38) = 0 -43937687537934:43937687538705 26077:26077 hsa_system_get_info(2, 0x11daa40) = 0 -43937687539647:43937687540413 26077:26077 hsa_system_get_info(2, 0x11daa48) = 0 -43937687541348:43937687542121 26077:26077 hsa_system_get_info(2, 0x11daa50) = 0 -43937687543058:43937687543824 26077:26077 hsa_system_get_info(2, 0x11daa58) = 0 -43937687544761:43937687545530 26077:26077 hsa_system_get_info(2, 0x11daa60) = 0 -43937687546463:43937687547232 26077:26077 hsa_system_get_info(2, 0x11daa68) = 0 -43937687548174:43937687548943 26077:26077 hsa_system_get_info(2, 0x11daa70) = 0 -43937687549875:43937687550648 26077:26077 hsa_system_get_info(2, 0x11daa78) = 0 -43937687551587:43937687552355 26077:26077 hsa_system_get_info(2, 0x11daa80) = 0 -43937687553298:43937687554066 26077:26077 hsa_system_get_info(2, 0x11daa88) = 0 -43937687555000:43937687555772 26077:26077 hsa_system_get_info(2, 0x11daa90) = 0 -43937687556706:43937687557475 26077:26077 hsa_system_get_info(2, 0x11daa98) = 0 -43937687558417:43937687559186 26077:26077 hsa_system_get_info(2, 0x11daaa0) = 0 -43937687560119:43937687560907 26077:26077 hsa_system_get_info(2, 0x11daaa8) = 0 -43937687561844:43937687562615 26077:26077 hsa_system_get_info(2, 0x11daab0) = 0 -43937687563546:43937687564314 26077:26077 hsa_system_get_info(2, 0x11daab8) = 0 -43937687565248:43937687566020 26077:26077 hsa_system_get_info(2, 0x11daac0) = 0 -43937687566953:43937687567721 26077:26077 hsa_system_get_info(2, 0x11daac8) = 0 -43937687568659:43937687569428 26077:26077 hsa_system_get_info(2, 0x11daad0) = 0 -43937687570363:43937687571136 26077:26077 hsa_system_get_info(2, 0x11daad8) = 0 -43937687572072:43937687572843 26077:26077 hsa_system_get_info(2, 0x11daae0) = 0 -43937687573778:43937687574547 26077:26077 hsa_system_get_info(2, 0x11daae8) = 0 -43937687575479:43937687576244 26077:26077 hsa_system_get_info(2, 0x11daaf0) = 0 -43937687577174:43937687577944 26077:26077 hsa_system_get_info(2, 0x11daaf8) = 0 -43937687578881:43937687579648 26077:26077 hsa_system_get_info(2, 0x11dab00) = 0 -43937687580586:43937687581354 26077:26077 hsa_system_get_info(2, 0x11dab08) = 0 -43937687582314:43937687583079 26077:26077 hsa_system_get_info(2, 0x11dab10) = 0 -43937687584010:43937687584777 26077:26077 hsa_system_get_info(2, 0x11dab18) = 0 -43937687585717:43937687586486 26077:26077 hsa_system_get_info(2, 0x11dab20) = 0 -43937687588280:43937687589051 26077:26077 hsa_system_get_info(2, 0x11dab28) = 0 -43937687589989:43937687590756 26077:26077 hsa_system_get_info(2, 0x11dab30) = 0 -43937687591695:43937687592468 26077:26077 hsa_system_get_info(2, 0x11dab38) = 0 -43937687593403:43937687594173 26077:26077 hsa_system_get_info(2, 0x11dab40) = 0 -43937687595105:43937687595880 26077:26077 hsa_system_get_info(2, 0x11dab48) = 0 -43937687596812:43937687597580 26077:26077 hsa_system_get_info(2, 0x11dab50) = 0 -43937687598515:43937687599282 26077:26077 hsa_system_get_info(2, 0x11dab58) = 0 -43937687600215:43937687600983 26077:26077 hsa_system_get_info(2, 0x11dab60) = 0 -43937687601920:43937687602690 26077:26077 hsa_system_get_info(2, 0x11dab68) = 0 -43937687603624:43937687604396 26077:26077 hsa_system_get_info(2, 0x11dab70) = 0 -43937687605330:43937687606101 26077:26077 hsa_system_get_info(2, 0x11dab78) = 0 -43937687607039:43937687607806 26077:26077 hsa_system_get_info(2, 0x11dab80) = 0 -43937687608739:43937687609506 26077:26077 hsa_system_get_info(2, 0x11dab88) = 0 -43937687610442:43937687611226 26077:26077 hsa_system_get_info(2, 0x11dab90) = 0 -43937687612164:43937687612935 26077:26077 hsa_system_get_info(2, 0x11dab98) = 0 -43937687613870:43937687614641 26077:26077 hsa_system_get_info(2, 0x11daba0) = 0 -43937687615575:43937687616345 26077:26077 hsa_system_get_info(2, 0x11daba8) = 0 -43937687617285:43937687618052 26077:26077 hsa_system_get_info(2, 0x11dabb0) = 0 -43937687618986:43937687619752 26077:26077 hsa_system_get_info(2, 0x11dabb8) = 0 -43937687620690:43937687621458 26077:26077 hsa_system_get_info(2, 0x11dabc0) = 0 -43937687622393:43937687623167 26077:26077 hsa_system_get_info(2, 0x11dabc8) = 0 -43937687624101:43937687624870 26077:26077 hsa_system_get_info(2, 0x11dabd0) = 0 -43937687625809:43937687626579 26077:26077 hsa_system_get_info(2, 0x11dabd8) = 0 -43937687627514:43937687628280 26077:26077 hsa_system_get_info(2, 0x11dabe0) = 0 -43937687629217:43937687629983 26077:26077 hsa_system_get_info(2, 0x11dabe8) = 0 -43937687630918:43937687631686 26077:26077 hsa_system_get_info(2, 0x11dabf0) = 0 -43937687632626:43937687633396 26077:26077 hsa_system_get_info(2, 0x11dabf8) = 0 -43937687634335:43937687635105 26077:26077 hsa_system_get_info(2, 0x11dac00) = 0 -43937687636886:43937687637660 26077:26077 hsa_system_get_info(2, 0x11dac08) = 0 -43937687638595:43937687639360 26077:26077 hsa_system_get_info(2, 0x11dac10) = 0 -43937687640298:43937687641069 26077:26077 hsa_system_get_info(2, 0x11dac18) = 0 -43937687642005:43937687642770 26077:26077 hsa_system_get_info(2, 0x11dac20) = 0 -43937687643708:43937687644478 26077:26077 hsa_system_get_info(2, 0x11dac28) = 0 -43937687645414:43937687646186 26077:26077 hsa_system_get_info(2, 0x11dac30) = 0 -43937687647119:43937687647890 26077:26077 hsa_system_get_info(2, 0x11dac38) = 0 -43937687648830:43937687649597 26077:26077 hsa_system_get_info(2, 0x11dac40) = 0 -43937687650536:43937687651310 26077:26077 hsa_system_get_info(2, 0x11dac48) = 0 -43937687652251:43937687653017 26077:26077 hsa_system_get_info(2, 0x11dac50) = 0 -43937687653954:43937687654724 26077:26077 hsa_system_get_info(2, 0x11dac58) = 0 -43937687655667:43937687656434 26077:26077 hsa_system_get_info(2, 0x11dac60) = 0 -43937687657367:43937687658137 26077:26077 hsa_system_get_info(2, 0x11dac68) = 0 -43937687659077:43937687659858 26077:26077 hsa_system_get_info(2, 0x11dac70) = 0 -43937687660794:43937687661560 26077:26077 hsa_system_get_info(2, 0x11dac78) = 0 -43937687662498:43937687663265 26077:26077 hsa_system_get_info(2, 0x11dac80) = 0 -43937687664202:43937687664970 26077:26077 hsa_system_get_info(2, 0x11dac88) = 0 -43937687665902:43937687666673 26077:26077 hsa_system_get_info(2, 0x11dac90) = 0 -43937687667612:43937687668380 26077:26077 hsa_system_get_info(2, 0x11dac98) = 0 -43937687669313:43937687670082 26077:26077 hsa_system_get_info(2, 0x11daca0) = 0 -43937687671015:43937687671782 26077:26077 hsa_system_get_info(2, 0x11daca8) = 0 -43937687672718:43937687673486 26077:26077 hsa_system_get_info(2, 0x11dacb0) = 0 -43937687674423:43937687675188 26077:26077 hsa_system_get_info(2, 0x11dacb8) = 0 -43937687676122:43937687676889 26077:26077 hsa_system_get_info(2, 0x11dacc0) = 0 -43937687677829:43937687678599 26077:26077 hsa_system_get_info(2, 0x11dacc8) = 0 -43937687679532:43937687680301 26077:26077 hsa_system_get_info(2, 0x11dacd0) = 0 -43937687681235:43937687682007 26077:26077 hsa_system_get_info(2, 0x11dacd8) = 0 -43937687682938:43937687683707 26077:26077 hsa_system_get_info(2, 0x11dace0) = 0 -43937687684662:43937687685427 26077:26077 hsa_system_get_info(2, 0x11dace8) = 0 -43937687687207:43937687687976 26077:26077 hsa_system_get_info(2, 0x11dacf0) = 0 -43937687688910:43937687689684 26077:26077 hsa_system_get_info(2, 0x11dacf8) = 0 -43937687690619:43937687691389 26077:26077 hsa_system_get_info(2, 0x11dad00) = 0 -43937687692330:43937687693101 26077:26077 hsa_system_get_info(2, 0x11dad08) = 0 -43937687694036:43937687694807 26077:26077 hsa_system_get_info(2, 0x11dad10) = 0 -43937687695742:43937687696509 26077:26077 hsa_system_get_info(2, 0x11dad18) = 0 -43937687697444:43937687698216 26077:26077 hsa_system_get_info(2, 0x11dad20) = 0 -43937687699156:43937687699930 26077:26077 hsa_system_get_info(2, 0x11dad28) = 0 -43937687700896:43937687701664 26077:26077 hsa_system_get_info(2, 0x11dad30) = 0 -43937687702596:43937687703367 26077:26077 hsa_system_get_info(2, 0x11dad38) = 0 -43937687704304:43937687705073 26077:26077 hsa_system_get_info(2, 0x11dad40) = 0 -43937687706008:43937687706779 26077:26077 hsa_system_get_info(2, 0x11dad48) = 0 -43937687707712:43937687708481 26077:26077 hsa_system_get_info(2, 0x11dad50) = 0 -43937687709417:43937687710187 26077:26077 hsa_system_get_info(2, 0x11dad58) = 0 -43937687711142:43937687711908 26077:26077 hsa_system_get_info(2, 0x11dad60) = 0 -43937687712843:43937687713611 26077:26077 hsa_system_get_info(2, 0x11dad68) = 0 -43937687714551:43937687715317 26077:26077 hsa_system_get_info(2, 0x11dad70) = 0 -43937687716253:43937687717024 26077:26077 hsa_system_get_info(2, 0x11dad78) = 0 -43937687717959:43937687718727 26077:26077 hsa_system_get_info(2, 0x11dad80) = 0 -43937687719661:43937687720431 26077:26077 hsa_system_get_info(2, 0x11dad88) = 0 -43937687721366:43937687722132 26077:26077 hsa_system_get_info(2, 0x11dad90) = 0 -43937687723069:43937687723836 26077:26077 hsa_system_get_info(2, 0x11dad98) = 0 -43937687724773:43937687725539 26077:26077 hsa_system_get_info(2, 0x11dada0) = 0 -43937687726477:43937687727245 26077:26077 hsa_system_get_info(2, 0x11dada8) = 0 -43937687728186:43937687728952 26077:26077 hsa_system_get_info(2, 0x11dadb0) = 0 -43937687729886:43937687730656 26077:26077 hsa_system_get_info(2, 0x11dadb8) = 0 -43937687731593:43937687732360 26077:26077 hsa_system_get_info(2, 0x11dadc0) = 0 -43937687733293:43937687734060 26077:26077 hsa_system_get_info(2, 0x11dadc8) = 0 -43937687736617:43937687737385 26077:26077 hsa_system_get_info(2, 0x11dadd0) = 0 -43937687738323:43937687739094 26077:26077 hsa_system_get_info(2, 0x11dadd8) = 0 -43937687740028:43937687740798 26077:26077 hsa_system_get_info(2, 0x11dade0) = 0 -43937687741733:43937687742505 26077:26077 hsa_system_get_info(2, 0x11dade8) = 0 -43937687743443:43937687744210 26077:26077 hsa_system_get_info(2, 0x11dadf0) = 0 -43937687745143:43937687745917 26077:26077 hsa_system_get_info(2, 0x11dadf8) = 0 -43937687746853:43937687747619 26077:26077 hsa_system_get_info(2, 0x11dae00) = 0 -43937687748553:43937687749326 26077:26077 hsa_system_get_info(2, 0x11dae08) = 0 -43937687750264:43937687751031 26077:26077 hsa_system_get_info(2, 0x11dae10) = 0 -43937687751970:43937687752742 26077:26077 hsa_system_get_info(2, 0x11dae18) = 0 -43937687753677:43937687754447 26077:26077 hsa_system_get_info(2, 0x11dae20) = 0 -43937687755381:43937687756151 26077:26077 hsa_system_get_info(2, 0x11dae28) = 0 -43937687757090:43937687757856 26077:26077 hsa_system_get_info(2, 0x11dae30) = 0 -43937687758791:43937687759564 26077:26077 hsa_system_get_info(2, 0x11dae38) = 0 -43937687760501:43937687761285 26077:26077 hsa_system_get_info(2, 0x11dae40) = 0 -43937687762219:43937687762991 26077:26077 hsa_system_get_info(2, 0x11dae48) = 0 -43937687763929:43937687764696 26077:26077 hsa_system_get_info(2, 0x11dae50) = 0 -43937687765627:43937687766398 26077:26077 hsa_system_get_info(2, 0x11dae58) = 0 -43937687767338:43937687768104 26077:26077 hsa_system_get_info(2, 0x11dae60) = 0 -43937687769040:43937687769814 26077:26077 hsa_system_get_info(2, 0x11dae68) = 0 -43937687770749:43937687771516 26077:26077 hsa_system_get_info(2, 0x11dae70) = 0 -43937687772455:43937687773226 26077:26077 hsa_system_get_info(2, 0x11dae78) = 0 -43937687774163:43937687774934 26077:26077 hsa_system_get_info(2, 0x11dae80) = 0 -43937687775868:43937687776639 26077:26077 hsa_system_get_info(2, 0x11dae88) = 0 -43937687777577:43937687778344 26077:26077 hsa_system_get_info(2, 0x11dae90) = 0 -43937687779279:43937687780050 26077:26077 hsa_system_get_info(2, 0x11dae98) = 0 -43937687780988:43937687781755 26077:26077 hsa_system_get_info(2, 0x11daea0) = 0 -43937687782689:43937687783463 26077:26077 hsa_system_get_info(2, 0x11daea8) = 0 -43937687784399:43937687785166 26077:26077 hsa_system_get_info(2, 0x11daeb0) = 0 -43937687786975:43937687787748 26077:26077 hsa_system_get_info(2, 0x11daeb8) = 0 -43937687788686:43937687789454 26077:26077 hsa_system_get_info(2, 0x11daec0) = 0 -43937687790395:43937687791167 26077:26077 hsa_system_get_info(2, 0x11daec8) = 0 -43937687792108:43937687792879 26077:26077 hsa_system_get_info(2, 0x11daed0) = 0 -43937687793817:43937687794592 26077:26077 hsa_system_get_info(2, 0x11daed8) = 0 -43937687795528:43937687796298 26077:26077 hsa_system_get_info(2, 0x11daee0) = 0 -43937687797235:43937687798008 26077:26077 hsa_system_get_info(2, 0x11daee8) = 0 -43937687798948:43937687799720 26077:26077 hsa_system_get_info(2, 0x11daef0) = 0 -43937687800669:43937687801440 26077:26077 hsa_system_get_info(2, 0x11daef8) = 0 -43937687802378:43937687803151 26077:26077 hsa_system_get_info(2, 0x11daf00) = 0 -43937687804083:43937687804856 26077:26077 hsa_system_get_info(2, 0x11daf08) = 0 -43937687805795:43937687806567 26077:26077 hsa_system_get_info(2, 0x11daf10) = 0 -43937687807506:43937687808282 26077:26077 hsa_system_get_info(2, 0x11daf18) = 0 -43937687809220:43937687810007 26077:26077 hsa_system_get_info(2, 0x11daf20) = 0 -43937687810940:43937687811708 26077:26077 hsa_system_get_info(2, 0x11daf28) = 0 -43937687812648:43937687813416 26077:26077 hsa_system_get_info(2, 0x11daf30) = 0 -43937687814356:43937687815127 26077:26077 hsa_system_get_info(2, 0x11daf38) = 0 -43937687816064:43937687816833 26077:26077 hsa_system_get_info(2, 0x11daf40) = 0 -43937687817772:43937687818544 26077:26077 hsa_system_get_info(2, 0x11daf48) = 0 -43937687819487:43937687820255 26077:26077 hsa_system_get_info(2, 0x11daf50) = 0 -43937687821194:43937687821965 26077:26077 hsa_system_get_info(2, 0x11daf58) = 0 -43937687822898:43937687823667 26077:26077 hsa_system_get_info(2, 0x11daf60) = 0 -43937687824603:43937687825374 26077:26077 hsa_system_get_info(2, 0x11daf68) = 0 -43937687826309:43937687827078 26077:26077 hsa_system_get_info(2, 0x11daf70) = 0 -43937687828016:43937687828786 26077:26077 hsa_system_get_info(2, 0x11daf78) = 0 -43937687829726:43937687830495 26077:26077 hsa_system_get_info(2, 0x11daf80) = 0 -43937687831434:43937687832202 26077:26077 hsa_system_get_info(2, 0x11daf88) = 0 -43937687833140:43937687833908 26077:26077 hsa_system_get_info(2, 0x11daf90) = 0 -43937687835746:43937687836516 26077:26077 hsa_system_get_info(2, 0x11daf98) = 0 -43937687837456:43937687838224 26077:26077 hsa_system_get_info(2, 0x11dafa0) = 0 -43937687839158:43937687839934 26077:26077 hsa_system_get_info(2, 0x11dafa8) = 0 -43937687840869:43937687841637 26077:26077 hsa_system_get_info(2, 0x11dafb0) = 0 -43937687842575:43937687843347 26077:26077 hsa_system_get_info(2, 0x11dafb8) = 0 -43937687844282:43937687845055 26077:26077 hsa_system_get_info(2, 0x11dafc0) = 0 -43937687845991:43937687846761 26077:26077 hsa_system_get_info(2, 0x11dafc8) = 0 -43937687847701:43937687848469 26077:26077 hsa_system_get_info(2, 0x11dafd0) = 0 -43937687849408:43937687850182 26077:26077 hsa_system_get_info(2, 0x11dafd8) = 0 -43937687851123:43937687851891 26077:26077 hsa_system_get_info(2, 0x11dafe0) = 0 -43937687852829:43937687853601 26077:26077 hsa_system_get_info(2, 0x11dafe8) = 0 -43937687854542:43937687855312 26077:26077 hsa_system_get_info(2, 0x11daff0) = 0 -43937687856247:43937687857023 26077:26077 hsa_system_get_info(2, 0x11daff8) = 0 -43937687857958:43937687858727 26077:26077 hsa_system_get_info(2, 0x11db000) = 0 -43937687859689:43937687860456 26077:26077 hsa_system_get_info(2, 0x11db008) = 0 -43937687861397:43937687862168 26077:26077 hsa_system_get_info(2, 0x11db010) = 0 -43937687863110:43937687863878 26077:26077 hsa_system_get_info(2, 0x11db018) = 0 -43937687864814:43937687865588 26077:26077 hsa_system_get_info(2, 0x11db020) = 0 -43937687866527:43937687867296 26077:26077 hsa_system_get_info(2, 0x11db028) = 0 -43937687868235:43937687869006 26077:26077 hsa_system_get_info(2, 0x11db030) = 0 -43937687869942:43937687870715 26077:26077 hsa_system_get_info(2, 0x11db038) = 0 -43937687871650:43937687872422 26077:26077 hsa_system_get_info(2, 0x11db040) = 0 -43937687873362:43937687874131 26077:26077 hsa_system_get_info(2, 0x11db048) = 0 -43937687875072:43937687875843 26077:26077 hsa_system_get_info(2, 0x11db050) = 0 -43937687876781:43937687877552 26077:26077 hsa_system_get_info(2, 0x11db058) = 0 -43937687878488:43937687879259 26077:26077 hsa_system_get_info(2, 0x11db060) = 0 -43937687880199:43937687880968 26077:26077 hsa_system_get_info(2, 0x11db068) = 0 -43937687881904:43937687882677 26077:26077 hsa_system_get_info(2, 0x11db070) = 0 -43937687884453:43937687885224 26077:26077 hsa_system_get_info(2, 0x11db078) = 0 -43937687886162:43937687886933 26077:26077 hsa_system_get_info(2, 0x11db080) = 0 -43937687887873:43937687888648 26077:26077 hsa_system_get_info(2, 0x11db088) = 0 -43937687889586:43937687890354 26077:26077 hsa_system_get_info(2, 0x11db090) = 0 -43937687891298:43937687892068 26077:26077 hsa_system_get_info(2, 0x11db098) = 0 -43937687893007:43937687893779 26077:26077 hsa_system_get_info(2, 0x11db0a0) = 0 -43937687894722:43937687895495 26077:26077 hsa_system_get_info(2, 0x11db0a8) = 0 -43937687896434:43937687897206 26077:26077 hsa_system_get_info(2, 0x11db0b0) = 0 -43937687898143:43937687898915 26077:26077 hsa_system_get_info(2, 0x11db0b8) = 0 -43937687899867:43937687900640 26077:26077 hsa_system_get_info(2, 0x11db0c0) = 0 -43937687901582:43937687902354 26077:26077 hsa_system_get_info(2, 0x11db0c8) = 0 -43937687903298:43937687904066 26077:26077 hsa_system_get_info(2, 0x11db0d0) = 0 -43937687905009:43937687905780 26077:26077 hsa_system_get_info(2, 0x11db0d8) = 0 -43937687906720:43937687907496 26077:26077 hsa_system_get_info(2, 0x11db0e0) = 0 -43937687908450:43937687909217 26077:26077 hsa_system_get_info(2, 0x11db0e8) = 0 -43937687910151:43937687910920 26077:26077 hsa_system_get_info(2, 0x11db0f0) = 0 -43937687911861:43937687912632 26077:26077 hsa_system_get_info(2, 0x11db0f8) = 0 -43937687913573:43937687914345 26077:26077 hsa_system_get_info(2, 0x11db100) = 0 -43937687915284:43937687916058 26077:26077 hsa_system_get_info(2, 0x11db108) = 0 -43937687916997:43937687917766 26077:26077 hsa_system_get_info(2, 0x11db110) = 0 -43937687918705:43937687919477 26077:26077 hsa_system_get_info(2, 0x11db118) = 0 -43937687920412:43937687921187 26077:26077 hsa_system_get_info(2, 0x11db120) = 0 -43937687922127:43937687922901 26077:26077 hsa_system_get_info(2, 0x11db128) = 0 -43937687923837:43937687924606 26077:26077 hsa_system_get_info(2, 0x11db130) = 0 -43937687925543:43937687926316 26077:26077 hsa_system_get_info(2, 0x11db138) = 0 -43937687927253:43937687928029 26077:26077 hsa_system_get_info(2, 0x11db140) = 0 -43937687928968:43937687929742 26077:26077 hsa_system_get_info(2, 0x11db148) = 0 -43937687930679:43937687931450 26077:26077 hsa_system_get_info(2, 0x11db150) = 0 -43937687932388:43937687933162 26077:26077 hsa_system_get_info(2, 0x11db158) = 0 -43937687934941:43937687935715 26077:26077 hsa_system_get_info(2, 0x11db160) = 0 -43937687936648:43937687937416 26077:26077 hsa_system_get_info(2, 0x11db168) = 0 -43937687938354:43937687939123 26077:26077 hsa_system_get_info(2, 0x11db170) = 0 -43937687940058:43937687940831 26077:26077 hsa_system_get_info(2, 0x11db178) = 0 -43937687941766:43937687942535 26077:26077 hsa_system_get_info(2, 0x11db180) = 0 -43937687943473:43937687944242 26077:26077 hsa_system_get_info(2, 0x11db188) = 0 -43937687945174:43937687945944 26077:26077 hsa_system_get_info(2, 0x11db190) = 0 -43937687946881:43937687947649 26077:26077 hsa_system_get_info(2, 0x11db198) = 0 -43937687948586:43937687949358 26077:26077 hsa_system_get_info(2, 0x11db1a0) = 0 -43937687950297:43937687951065 26077:26077 hsa_system_get_info(2, 0x11db1a8) = 0 -43937687952002:43937687952771 26077:26077 hsa_system_get_info(2, 0x11db1b0) = 0 -43937687953706:43937687954479 26077:26077 hsa_system_get_info(2, 0x11db1b8) = 0 -43937687955415:43937687956183 26077:26077 hsa_system_get_info(2, 0x11db1c0) = 0 -43937687957118:43937687957886 26077:26077 hsa_system_get_info(2, 0x11db1c8) = 0 -43937687958867:43937687959633 26077:26077 hsa_system_get_info(2, 0x11db1d0) = 0 -43937687960569:43937687961339 26077:26077 hsa_system_get_info(2, 0x11db1d8) = 0 -43937687962281:43937687963049 26077:26077 hsa_system_get_info(2, 0x11db1e0) = 0 -43937687963987:43937687964763 26077:26077 hsa_system_get_info(2, 0x11db1e8) = 0 -43937687965698:43937687966468 26077:26077 hsa_system_get_info(2, 0x11db1f0) = 0 -43937687967407:43937687968179 26077:26077 hsa_system_get_info(2, 0x11db1f8) = 0 -43937687969116:43937687969888 26077:26077 hsa_system_get_info(2, 0x11db200) = 0 -43937687970827:43937687971599 26077:26077 hsa_system_get_info(2, 0x11db208) = 0 -43937687972538:43937687973307 26077:26077 hsa_system_get_info(2, 0x11db210) = 0 -43937687974243:43937687975017 26077:26077 hsa_system_get_info(2, 0x11db218) = 0 -43937687975954:43937687976723 26077:26077 hsa_system_get_info(2, 0x11db220) = 0 -43937687977666:43937687978438 26077:26077 hsa_system_get_info(2, 0x11db228) = 0 -43937687979379:43937687980149 26077:26077 hsa_system_get_info(2, 0x11db230) = 0 -43937687981085:43937687981860 26077:26077 hsa_system_get_info(2, 0x11db238) = 0 -43937687983647:43937687984421 26077:26077 hsa_system_get_info(2, 0x11db240) = 0 -43937687985359:43937687986129 26077:26077 hsa_system_get_info(2, 0x11db248) = 0 -43937687987074:43937687987845 26077:26077 hsa_system_get_info(2, 0x11db250) = 0 -43937687988787:43937687989557 26077:26077 hsa_system_get_info(2, 0x11db258) = 0 -43937687990499:43937687991273 26077:26077 hsa_system_get_info(2, 0x11db260) = 0 -43937687992210:43937687992985 26077:26077 hsa_system_get_info(2, 0x11db268) = 0 -43937687993924:43937687994695 26077:26077 hsa_system_get_info(2, 0x11db270) = 0 -43937687995635:43937687996403 26077:26077 hsa_system_get_info(2, 0x11db278) = 0 -43937687997360:43937687998132 26077:26077 hsa_system_get_info(2, 0x11db280) = 0 -43937687999079:43937687999851 26077:26077 hsa_system_get_info(2, 0x11db288) = 0 -43937688008403:43937688009166 26077:26077 hsa_system_get_info(2, 0x11db290) = 0 -43937688010098:43937688010863 26077:26077 hsa_system_get_info(2, 0x11db298) = 0 -43937688011802:43937688012567 26077:26077 hsa_system_get_info(2, 0x11db2a0) = 0 -43937688013499:43937688030360 26077:26077 hsa_system_get_info(2, 0x11db2a8) = 0 -43937688031201:43937688031863 26077:26077 hsa_system_get_info(2, 0x11db2b0) = 0 -43937688032656:43937688033302 26077:26077 hsa_system_get_info(2, 0x11db2b8) = 0 -43937688034094:43937688034743 26077:26077 hsa_system_get_info(2, 0x11db2c0) = 0 -43937688035536:43937688036189 26077:26077 hsa_system_get_info(2, 0x11db2c8) = 0 -43937688036999:43937688037656 26077:26077 hsa_system_get_info(2, 0x11db2d0) = 0 -43937688038443:43937688039104 26077:26077 hsa_system_get_info(2, 0x11db2d8) = 0 -43937688051805:43937688052508 26077:26077 hsa_system_get_info(2, 0x11db2e0) = 0 -43937688053330:43937688053974 26077:26077 hsa_system_get_info(2, 0x11db2e8) = 0 -43937688054743:43937688055383 26077:26077 hsa_system_get_info(2, 0x11db2f0) = 0 -43937688056150:43937688056788 26077:26077 hsa_system_get_info(2, 0x11db2f8) = 0 -43937688057562:43937688058204 26077:26077 hsa_system_get_info(2, 0x11db300) = 0 -43937688058972:43937688059613 26077:26077 hsa_system_get_info(2, 0x11db308) = 0 -43937688060383:43937688070669 26077:26077 hsa_system_get_info(2, 0x11db310) = 0 -43937688071483:43937688072105 26077:26077 hsa_system_get_info(2, 0x11db318) = 0 -43937688072853:43937688073480 26077:26077 hsa_system_get_info(2, 0x11db320) = 0 -43937688075008:43937688075627 26077:26077 hsa_system_get_info(2, 0x11db328) = 0 -43937688076379:43937688076998 26077:26077 hsa_system_get_info(2, 0x11db330) = 0 -43937688077755:43937688078383 26077:26077 hsa_system_get_info(2, 0x11db338) = 0 -43937688079132:43937688079757 26077:26077 hsa_system_get_info(2, 0x11db340) = 0 -43937688080504:43937688081129 26077:26077 hsa_system_get_info(2, 0x11db348) = 0 -43937688081880:43937688082502 26077:26077 hsa_system_get_info(2, 0x11db350) = 0 -43937688083255:43937688083879 26077:26077 hsa_system_get_info(2, 0x11db358) = 0 -43937688084631:43937688085261 26077:26077 hsa_system_get_info(2, 0x11db360) = 0 -43937688086015:43937688086637 26077:26077 hsa_system_get_info(2, 0x11db368) = 0 -43937688087392:43937688088015 26077:26077 hsa_system_get_info(2, 0x11db370) = 0 -43937688088765:43937688089392 26077:26077 hsa_system_get_info(2, 0x11db378) = 0 -43937688090143:43937688090775 26077:26077 hsa_system_get_info(2, 0x11db380) = 0 -43937688091523:43937688092144 26077:26077 hsa_system_get_info(2, 0x11db388) = 0 -43937688092888:43937688093519 26077:26077 hsa_system_get_info(2, 0x11db390) = 0 -43937688094291:43937688094919 26077:26077 hsa_system_get_info(2, 0x11db398) = 0 -43937688095671:43937688096289 26077:26077 hsa_system_get_info(2, 0x11db3a0) = 0 -43937688097040:43937688097654 26077:26077 hsa_system_get_info(2, 0x11db3a8) = 0 -43937688098403:43937688099025 26077:26077 hsa_system_get_info(2, 0x11db3b0) = 0 -43937688099772:43937688100396 26077:26077 hsa_system_get_info(2, 0x11db3b8) = 0 -43937688101146:43937688101767 26077:26077 hsa_system_get_info(2, 0x11db3c0) = 0 -43937688102517:43937688103137 26077:26077 hsa_system_get_info(2, 0x11db3c8) = 0 -43937688103887:43937688104506 26077:26077 hsa_system_get_info(2, 0x11db3d0) = 0 -43937688105254:43937688105882 26077:26077 hsa_system_get_info(2, 0x11db3d8) = 0 -43937688106629:43937688107255 26077:26077 hsa_system_get_info(2, 0x11db3e0) = 0 -43937688108008:43937688108628 26077:26077 hsa_system_get_info(2, 0x11db3e8) = 0 -43937688109376:43937688109996 26077:26077 hsa_system_get_info(2, 0x11db3f0) = 0 -43937688110744:43937688111371 26077:26077 hsa_system_get_info(2, 0x11db3f8) = 0 -43937688112123:43937688112745 26077:26077 hsa_system_get_info(2, 0x11db400) = 0 -43937688114198:43937688114822 26077:26077 hsa_system_get_info(2, 0x11db408) = 0 -43937688115575:43937688116198 26077:26077 hsa_system_get_info(2, 0x11db410) = 0 -43937688116949:43937688117568 26077:26077 hsa_system_get_info(2, 0x11db418) = 0 -43937688118331:43937688118960 26077:26077 hsa_system_get_info(2, 0x11db420) = 0 -43937688119715:43937688120337 26077:26077 hsa_system_get_info(2, 0x11db428) = 0 -43937688121093:43937688121716 26077:26077 hsa_system_get_info(2, 0x11db430) = 0 -43937688122465:43937688123085 26077:26077 hsa_system_get_info(2, 0x11db438) = 0 -43937688123843:43937688124468 26077:26077 hsa_system_get_info(2, 0x11db440) = 0 -43937688125219:43937688125841 26077:26077 hsa_system_get_info(2, 0x11db448) = 0 -43937688126591:43937688127210 26077:26077 hsa_system_get_info(2, 0x11db450) = 0 -43937688127961:43937688128582 26077:26077 hsa_system_get_info(2, 0x11db458) = 0 -43937688129336:43937688129958 26077:26077 hsa_system_get_info(2, 0x11db460) = 0 -43937688130711:43937688131330 26077:26077 hsa_system_get_info(2, 0x11db468) = 0 -43937688132087:43937688132711 26077:26077 hsa_system_get_info(2, 0x11db470) = 0 -43937688133464:43937688134089 26077:26077 hsa_system_get_info(2, 0x11db478) = 0 -43937688134835:43937688135454 26077:26077 hsa_system_get_info(2, 0x11db480) = 0 -43937688136202:43937688136824 26077:26077 hsa_system_get_info(2, 0x11db488) = 0 -43937688137576:43937688138225 26077:26077 hsa_system_get_info(2, 0x11db490) = 0 -43937688138977:43937688139603 26077:26077 hsa_system_get_info(2, 0x11db498) = 0 -43937688140353:43937688140975 26077:26077 hsa_system_get_info(2, 0x11db4a0) = 0 -43937688141727:43937688142353 26077:26077 hsa_system_get_info(2, 0x11db4a8) = 0 -43937688143105:43937688143723 26077:26077 hsa_system_get_info(2, 0x11db4b0) = 0 -43937688144471:43937688145097 26077:26077 hsa_system_get_info(2, 0x11db4b8) = 0 -43937688145849:43937688146468 26077:26077 hsa_system_get_info(2, 0x11db4c0) = 0 -43937688147222:43937688147846 26077:26077 hsa_system_get_info(2, 0x11db4c8) = 0 -43937688148594:43937688149211 26077:26077 hsa_system_get_info(2, 0x11db4d0) = 0 -43937688149962:43937688150583 26077:26077 hsa_system_get_info(2, 0x11db4d8) = 0 -43937688151334:43937688151954 26077:26077 hsa_system_get_info(2, 0x11db4e0) = 0 -43937688152709:43937688153334 26077:26077 hsa_system_get_info(2, 0x11db4e8) = 0 -43937688154787:43937688155413 26077:26077 hsa_system_get_info(2, 0x11db4f0) = 0 -43937688156168:43937688156791 26077:26077 hsa_system_get_info(2, 0x11db4f8) = 0 -43937688157543:43937688158165 26077:26077 hsa_system_get_info(2, 0x11db500) = 0 -43937688158917:43937688159536 26077:26077 hsa_system_get_info(2, 0x11db508) = 0 -43937688160299:43937688160920 26077:26077 hsa_system_get_info(2, 0x11db510) = 0 -43937688161691:43937688162316 26077:26077 hsa_system_get_info(2, 0x11db518) = 0 -43937688163069:43937688163692 26077:26077 hsa_system_get_info(2, 0x11db520) = 0 -43937688164448:43937688165067 26077:26077 hsa_system_get_info(2, 0x11db528) = 0 -43937688165831:43937688166456 26077:26077 hsa_system_get_info(2, 0x11db530) = 0 -43937688167212:43937688167835 26077:26077 hsa_system_get_info(2, 0x11db538) = 0 -43937688168589:43937688169212 26077:26077 hsa_system_get_info(2, 0x11db540) = 0 -43937688169962:43937688170600 26077:26077 hsa_system_get_info(2, 0x11db548) = 0 -43937688171361:43937688171986 26077:26077 hsa_system_get_info(2, 0x11db550) = 0 -43937688172737:43937688173365 26077:26077 hsa_system_get_info(2, 0x11db558) = 0 -43937688174116:43937688174752 26077:26077 hsa_system_get_info(2, 0x11db560) = 0 -43937688175505:43937688176128 26077:26077 hsa_system_get_info(2, 0x11db568) = 0 -43937688176882:43937688177504 26077:26077 hsa_system_get_info(2, 0x11db570) = 0 -43937688178260:43937688178884 26077:26077 hsa_system_get_info(2, 0x11db578) = 0 -43937688179638:43937688180268 26077:26077 hsa_system_get_info(2, 0x11db580) = 0 -43937688181018:43937688181660 26077:26077 hsa_system_get_info(2, 0x11db588) = 0 -43937688182412:43937688183033 26077:26077 hsa_system_get_info(2, 0x11db590) = 0 -43937688183790:43937688184410 26077:26077 hsa_system_get_info(2, 0x11db598) = 0 -43937688185163:43937688185792 26077:26077 hsa_system_get_info(2, 0x11db5a0) = 0 -43937688186540:43937688187162 26077:26077 hsa_system_get_info(2, 0x11db5a8) = 0 -43937688187915:43937688188531 26077:26077 hsa_system_get_info(2, 0x11db5b0) = 0 -43937688189280:43937688189902 26077:26077 hsa_system_get_info(2, 0x11db5b8) = 0 -43937688190666:43937688191295 26077:26077 hsa_system_get_info(2, 0x11db5c0) = 0 -43937688192045:43937688192668 26077:26077 hsa_system_get_info(2, 0x11db5c8) = 0 -43937688194173:43937688194795 26077:26077 hsa_system_get_info(2, 0x11db5d0) = 0 -43937688195546:43937688196169 26077:26077 hsa_system_get_info(2, 0x11db5d8) = 0 -43937688196917:43937688197535 26077:26077 hsa_system_get_info(2, 0x11db5e0) = 0 -43937688198282:43937688198906 26077:26077 hsa_system_get_info(2, 0x11db5e8) = 0 -43937688199652:43937688200278 26077:26077 hsa_system_get_info(2, 0x11db5f0) = 0 -43937688201028:43937688201648 26077:26077 hsa_system_get_info(2, 0x11db5f8) = 0 -43937688202401:43937688203017 26077:26077 hsa_system_get_info(2, 0x11db600) = 0 -43937688203762:43937688204388 26077:26077 hsa_system_get_info(2, 0x11db608) = 0 -43937688205135:43937688205763 26077:26077 hsa_system_get_info(2, 0x11db610) = 0 -43937688206520:43937688207151 26077:26077 hsa_system_get_info(2, 0x11db618) = 0 -43937688207897:43937688208523 26077:26077 hsa_system_get_info(2, 0x11db620) = 0 -43937688209273:43937688209904 26077:26077 hsa_system_get_info(2, 0x11db628) = 0 -43937688210653:43937688211280 26077:26077 hsa_system_get_info(2, 0x11db630) = 0 -43937688212029:43937688212654 26077:26077 hsa_system_get_info(2, 0x11db638) = 0 -43937688213418:43937688214041 26077:26077 hsa_system_get_info(2, 0x11db640) = 0 -43937688214792:43937688215417 26077:26077 hsa_system_get_info(2, 0x11db648) = 0 -43937688216168:43937688216789 26077:26077 hsa_system_get_info(2, 0x11db650) = 0 -43937688217537:43937688218159 26077:26077 hsa_system_get_info(2, 0x11db658) = 0 -43937688218910:43937688219528 26077:26077 hsa_system_get_info(2, 0x11db660) = 0 -43937688220272:43937688220892 26077:26077 hsa_system_get_info(2, 0x11db668) = 0 -43937688221640:43937688222259 26077:26077 hsa_system_get_info(2, 0x11db670) = 0 -43937688223006:43937688223626 26077:26077 hsa_system_get_info(2, 0x11db678) = 0 -43937688224375:43937688224993 26077:26077 hsa_system_get_info(2, 0x11db680) = 0 -43937688225742:43937688226366 26077:26077 hsa_system_get_info(2, 0x11db688) = 0 -43937688227116:43937688227742 26077:26077 hsa_system_get_info(2, 0x11db690) = 0 -43937688228492:43937688229114 26077:26077 hsa_system_get_info(2, 0x11db698) = 0 -43937688229864:43937688230490 26077:26077 hsa_system_get_info(2, 0x11db6a0) = 0 -43937688231239:43937688231861 26077:26077 hsa_system_get_info(2, 0x11db6a8) = 0 -43937688232620:43937688233261 26077:26077 hsa_system_get_info(2, 0x11db6b0) = 0 -43937688234703:43937688235336 26077:26077 hsa_system_get_info(2, 0x11db6b8) = 0 -43937688236100:43937688236729 26077:26077 hsa_system_get_info(2, 0x11db6c0) = 0 -43937688237478:43937688238110 26077:26077 hsa_system_get_info(2, 0x11db6c8) = 0 -43937688238860:43937688239483 26077:26077 hsa_system_get_info(2, 0x11db6d0) = 0 -43937688240234:43937688240864 26077:26077 hsa_system_get_info(2, 0x11db6d8) = 0 -43937688241613:43937688242237 26077:26077 hsa_system_get_info(2, 0x11db6e0) = 0 -43937688242990:43937688243615 26077:26077 hsa_system_get_info(2, 0x11db6e8) = 0 -43937688244366:43937688244994 26077:26077 hsa_system_get_info(2, 0x11db6f0) = 0 -43937688245763:43937688246383 26077:26077 hsa_system_get_info(2, 0x11db6f8) = 0 -43937688247129:43937688247749 26077:26077 hsa_system_get_info(2, 0x11db700) = 0 -43937688248501:43937688249129 26077:26077 hsa_system_get_info(2, 0x11db708) = 0 -43937688249879:43937688250507 26077:26077 hsa_system_get_info(2, 0x11db710) = 0 -43937688251256:43937688251885 26077:26077 hsa_system_get_info(2, 0x11db718) = 0 -43937688252648:43937688253262 26077:26077 hsa_system_get_info(2, 0x11db720) = 0 -43937688254010:43937688254634 26077:26077 hsa_system_get_info(2, 0x11db728) = 0 -43937688255381:43937688256003 26077:26077 hsa_system_get_info(2, 0x11db730) = 0 -43937688256754:43937688257382 26077:26077 hsa_system_get_info(2, 0x11db738) = 0 -43937688258129:43937688258755 26077:26077 hsa_system_get_info(2, 0x11db740) = 0 -43937688259507:43937688260134 26077:26077 hsa_system_get_info(2, 0x11db748) = 0 -43937688260885:43937688261514 26077:26077 hsa_system_get_info(2, 0x11db750) = 0 -43937688262262:43937688262888 26077:26077 hsa_system_get_info(2, 0x11db758) = 0 -43937688263636:43937688264258 26077:26077 hsa_system_get_info(2, 0x11db760) = 0 -43937688265009:43937688265631 26077:26077 hsa_system_get_info(2, 0x11db768) = 0 -43937688266377:43937688266997 26077:26077 hsa_system_get_info(2, 0x11db770) = 0 -43937688267745:43937688268366 26077:26077 hsa_system_get_info(2, 0x11db778) = 0 -43937688269111:43937688269737 26077:26077 hsa_system_get_info(2, 0x11db780) = 0 -43937688270487:43937688271118 26077:26077 hsa_system_get_info(2, 0x11db788) = 0 -43937688271869:43937688272495 26077:26077 hsa_system_get_info(2, 0x11db790) = 0 -43937688273922:43937688274543 26077:26077 hsa_system_get_info(2, 0x11db798) = 0 -43937688275291:43937688275911 26077:26077 hsa_system_get_info(2, 0x11db7a0) = 0 -43937688276665:43937688277290 26077:26077 hsa_system_get_info(2, 0x11db7a8) = 0 -43937688278041:43937688278662 26077:26077 hsa_system_get_info(2, 0x11db7b0) = 0 -43937688279414:43937688280037 26077:26077 hsa_system_get_info(2, 0x11db7b8) = 0 -43937688280792:43937688281416 26077:26077 hsa_system_get_info(2, 0x11db7c0) = 0 -43937688282165:43937688282787 26077:26077 hsa_system_get_info(2, 0x11db7c8) = 0 -43937688283537:43937688284158 26077:26077 hsa_system_get_info(2, 0x11db7d0) = 0 -43937688284911:43937688285539 26077:26077 hsa_system_get_info(2, 0x11db7d8) = 0 -43937688286292:43937688286917 26077:26077 hsa_system_get_info(2, 0x11db7e0) = 0 -43937688287669:43937688288287 26077:26077 hsa_system_get_info(2, 0x11db7e8) = 0 -43937688289038:43937688289660 26077:26077 hsa_system_get_info(2, 0x11db7f0) = 0 -43937688290410:43937688291039 26077:26077 hsa_system_get_info(2, 0x11db7f8) = 0 -43937688291791:43937688292425 26077:26077 hsa_system_get_info(2, 0x11db800) = 0 -43937688293173:43937688293795 26077:26077 hsa_system_get_info(2, 0x11db808) = 0 -43937688294546:43937688295166 26077:26077 hsa_system_get_info(2, 0x11db810) = 0 -43937688295924:43937688296548 26077:26077 hsa_system_get_info(2, 0x11db818) = 0 -43937688297302:43937688297926 26077:26077 hsa_system_get_info(2, 0x11db820) = 0 -43937688298677:43937688299304 26077:26077 hsa_system_get_info(2, 0x11db828) = 0 -43937688300094:43937688300717 26077:26077 hsa_system_get_info(2, 0x11db830) = 0 -43937688301467:43937688302098 26077:26077 hsa_system_get_info(2, 0x11db838) = 0 -43937688302851:43937688303473 26077:26077 hsa_system_get_info(2, 0x11db840) = 0 -43937688304227:43937688304851 26077:26077 hsa_system_get_info(2, 0x11db848) = 0 -43937688305602:43937688306223 26077:26077 hsa_system_get_info(2, 0x11db850) = 0 -43937688306974:43937688307592 26077:26077 hsa_system_get_info(2, 0x11db858) = 0 -43937688308345:43937688308968 26077:26077 hsa_system_get_info(2, 0x11db860) = 0 -43937688309720:43937688310334 26077:26077 hsa_system_get_info(2, 0x11db868) = 0 -43937688311095:43937688311725 26077:26077 hsa_system_get_info(2, 0x11db870) = 0 -43937688313152:43937688313774 26077:26077 hsa_system_get_info(2, 0x11db878) = 0 -43937688314526:43937688315142 26077:26077 hsa_system_get_info(2, 0x11db880) = 0 -43937688315896:43937688316523 26077:26077 hsa_system_get_info(2, 0x11db888) = 0 -43937688317270:43937688317889 26077:26077 hsa_system_get_info(2, 0x11db890) = 0 -43937688318640:43937688319268 26077:26077 hsa_system_get_info(2, 0x11db898) = 0 -43937688320018:43937688320645 26077:26077 hsa_system_get_info(2, 0x11db8a0) = 0 -43937688321400:43937688322022 26077:26077 hsa_system_get_info(2, 0x11db8a8) = 0 -43937688322770:43937688323400 26077:26077 hsa_system_get_info(2, 0x11db8b0) = 0 -43937688324152:43937688324774 26077:26077 hsa_system_get_info(2, 0x11db8b8) = 0 -43937688325540:43937688326153 26077:26077 hsa_system_get_info(2, 0x11db8c0) = 0 -43937688326901:43937688327526 26077:26077 hsa_system_get_info(2, 0x11db8c8) = 0 -43937688328274:43937688328896 26077:26077 hsa_system_get_info(2, 0x11db8d0) = 0 -43937688329642:43937688330265 26077:26077 hsa_system_get_info(2, 0x11db8d8) = 0 -43937688331018:43937688331647 26077:26077 hsa_system_get_info(2, 0x11db8e0) = 0 -43937688332397:43937688333044 26077:26077 hsa_system_get_info(2, 0x11db8e8) = 0 -43937688333795:43937688334420 26077:26077 hsa_system_get_info(2, 0x11db8f0) = 0 -43937688335174:43937688335801 26077:26077 hsa_system_get_info(2, 0x11db8f8) = 0 -43937688336548:43937688337175 26077:26077 hsa_system_get_info(2, 0x11db900) = 0 -43937688337925:43937688338548 26077:26077 hsa_system_get_info(2, 0x11db908) = 0 -43937688339292:43937688339913 26077:26077 hsa_system_get_info(2, 0x11db910) = 0 -43937688340661:43937688341287 26077:26077 hsa_system_get_info(2, 0x11db918) = 0 -43937688342034:43937688342665 26077:26077 hsa_system_get_info(2, 0x11db920) = 0 -43937688343415:43937688344036 26077:26077 hsa_system_get_info(2, 0x11db928) = 0 -43937688344783:43937688345412 26077:26077 hsa_system_get_info(2, 0x11db930) = 0 -43937688346163:43937688346794 26077:26077 hsa_system_get_info(2, 0x11db938) = 0 -43937688347545:43937688348167 26077:26077 hsa_system_get_info(2, 0x11db940) = 0 -43937688348917:43937688349542 26077:26077 hsa_system_get_info(2, 0x11db948) = 0 -43937688350293:43937688350923 26077:26077 hsa_system_get_info(2, 0x11db950) = 0 -43937688351674:43937688352297 26077:26077 hsa_system_get_info(2, 0x11db958) = 0 -43937688353751:43937688354382 26077:26077 hsa_system_get_info(2, 0x11db960) = 0 -43937688355132:43937688355770 26077:26077 hsa_system_get_info(2, 0x11db968) = 0 -43937688356517:43937688357142 26077:26077 hsa_system_get_info(2, 0x11db970) = 0 -43937688357892:43937688358512 26077:26077 hsa_system_get_info(2, 0x11db978) = 0 -43937688359264:43937688359893 26077:26077 hsa_system_get_info(2, 0x11db980) = 0 -43937688360644:43937688361271 26077:26077 hsa_system_get_info(2, 0x11db988) = 0 -43937688362023:43937688362654 26077:26077 hsa_system_get_info(2, 0x11db990) = 0 -43937688363410:43937688364042 26077:26077 hsa_system_get_info(2, 0x11db998) = 0 -43937688364797:43937688365428 26077:26077 hsa_system_get_info(2, 0x11db9a0) = 0 -43937688366184:43937688366808 26077:26077 hsa_system_get_info(2, 0x11db9a8) = 0 -43937688367558:43937688368186 26077:26077 hsa_system_get_info(2, 0x11db9b0) = 0 -43937688368933:43937688369565 26077:26077 hsa_system_get_info(2, 0x11db9b8) = 0 -43937688370314:43937688370945 26077:26077 hsa_system_get_info(2, 0x11db9c0) = 0 -43937688371691:43937688372318 26077:26077 hsa_system_get_info(2, 0x11db9c8) = 0 -43937688373067:43937688373690 26077:26077 hsa_system_get_info(2, 0x11db9d0) = 0 -43937688374438:43937688375056 26077:26077 hsa_system_get_info(2, 0x11db9d8) = 0 -43937688375819:43937688376449 26077:26077 hsa_system_get_info(2, 0x11db9e0) = 0 -43937688377193:43937688377818 26077:26077 hsa_system_get_info(2, 0x11db9e8) = 0 -43937688378570:43937688379191 26077:26077 hsa_system_get_info(2, 0x11db9f0) = 0 -43937688379940:43937688380562 26077:26077 hsa_system_get_info(2, 0x11db9f8) = 0 -43937688381310:43937688381933 26077:26077 hsa_system_get_info(2, 0x11dba00) = 0 -43937688382681:43937688383304 26077:26077 hsa_system_get_info(2, 0x11dba08) = 0 -43937688384054:43937688384683 26077:26077 hsa_system_get_info(2, 0x11dba10) = 0 -43937688385433:43937688386065 26077:26077 hsa_system_get_info(2, 0x11dba18) = 0 -43937688386814:43937688387428 26077:26077 hsa_system_get_info(2, 0x11dba20) = 0 -43937688388179:43937688388800 26077:26077 hsa_system_get_info(2, 0x11dba28) = 0 -43937688389555:43937688390176 26077:26077 hsa_system_get_info(2, 0x11dba30) = 0 -43937688390920:43937688391546 26077:26077 hsa_system_get_info(2, 0x11dba38) = 0 -43937688393598:43937688394234 26077:26077 hsa_system_get_info(2, 0x11dba40) = 0 -43937688394990:43937688395611 26077:26077 hsa_system_get_info(2, 0x11dba48) = 0 -43937688396359:43937688396985 26077:26077 hsa_system_get_info(2, 0x11dba50) = 0 -43937688397732:43937688398351 26077:26077 hsa_system_get_info(2, 0x11dba58) = 0 -43937688399102:43937688399722 26077:26077 hsa_system_get_info(2, 0x11dba60) = 0 -43937688400473:43937688401096 26077:26077 hsa_system_get_info(2, 0x11dba68) = 0 -43937688401846:43937688402469 26077:26077 hsa_system_get_info(2, 0x11dba70) = 0 -43937688403217:43937688403830 26077:26077 hsa_system_get_info(2, 0x11dba78) = 0 -43937688404581:43937688405204 26077:26077 hsa_system_get_info(2, 0x11dba80) = 0 -43937688405962:43937688406580 26077:26077 hsa_system_get_info(2, 0x11dba88) = 0 -43937688407335:43937688407958 26077:26077 hsa_system_get_info(2, 0x11dba90) = 0 -43937688408707:43937688409330 26077:26077 hsa_system_get_info(2, 0x11dba98) = 0 -43937688410080:43937688410733 26077:26077 hsa_system_get_info(2, 0x11dbaa0) = 0 -43937688411491:43937688412114 26077:26077 hsa_system_get_info(2, 0x11dbaa8) = 0 -43937688412870:43937688413495 26077:26077 hsa_system_get_info(2, 0x11dbab0) = 0 -43937688414246:43937688414867 26077:26077 hsa_system_get_info(2, 0x11dbab8) = 0 -43937688415621:43937688416247 26077:26077 hsa_system_get_info(2, 0x11dbac0) = 0 -43937688416998:43937688417618 26077:26077 hsa_system_get_info(2, 0x11dbac8) = 0 -43937688418372:43937688418993 26077:26077 hsa_system_get_info(2, 0x11dbad0) = 0 -43937688419744:43937688420364 26077:26077 hsa_system_get_info(2, 0x11dbad8) = 0 -43937688421114:43937688421733 26077:26077 hsa_system_get_info(2, 0x11dbae0) = 0 -43937688422505:43937688423136 26077:26077 hsa_system_get_info(2, 0x11dbae8) = 0 -43937688423884:43937688424506 26077:26077 hsa_system_get_info(2, 0x11dbaf0) = 0 -43937688425255:43937688425875 26077:26077 hsa_system_get_info(2, 0x11dbaf8) = 0 -43937688426626:43937688427250 26077:26077 hsa_system_get_info(2, 0x11dbb00) = 0 -43937688427997:43937688428617 26077:26077 hsa_system_get_info(2, 0x11dbb08) = 0 -43937688429387:43937688430010 26077:26077 hsa_system_get_info(2, 0x11dbb10) = 0 -43937688430773:43937688431393 26077:26077 hsa_system_get_info(2, 0x11dbb18) = 0 -43937688432156:43937688432775 26077:26077 hsa_system_get_info(2, 0x11dbb20) = 0 -43937688434248:43937688434878 26077:26077 hsa_system_get_info(2, 0x11dbb28) = 0 -43937688435635:43937688436259 26077:26077 hsa_system_get_info(2, 0x11dbb30) = 0 -43937688437016:43937688437643 26077:26077 hsa_system_get_info(2, 0x11dbb38) = 0 -43937688438394:43937688439016 26077:26077 hsa_system_get_info(2, 0x11dbb40) = 0 -43937688439768:43937688440390 26077:26077 hsa_system_get_info(2, 0x11dbb48) = 0 -43937688441138:43937688441760 26077:26077 hsa_system_get_info(2, 0x11dbb50) = 0 -43937688442513:43937688443135 26077:26077 hsa_system_get_info(2, 0x11dbb58) = 0 -43937688443886:43937688444507 26077:26077 hsa_system_get_info(2, 0x11dbb60) = 0 -43937688445259:43937688445880 26077:26077 hsa_system_get_info(2, 0x11dbb68) = 0 -43937688446632:43937688447254 26077:26077 hsa_system_get_info(2, 0x11dbb70) = 0 -43937688448003:43937688448623 26077:26077 hsa_system_get_info(2, 0x11dbb78) = 0 -43937688449371:43937688449994 26077:26077 hsa_system_get_info(2, 0x11dbb80) = 0 -43937688450743:43937688451364 26077:26077 hsa_system_get_info(2, 0x11dbb88) = 0 -43937688452113:43937688452735 26077:26077 hsa_system_get_info(2, 0x11dbb90) = 0 -43937688453486:43937688454123 26077:26077 hsa_system_get_info(2, 0x11dbb98) = 0 -43937688454873:43937688455504 26077:26077 hsa_system_get_info(2, 0x11dbba0) = 0 -43937688456255:43937688456878 26077:26077 hsa_system_get_info(2, 0x11dbba8) = 0 -43937688457630:43937688458257 26077:26077 hsa_system_get_info(2, 0x11dbbb0) = 0 -43937688459009:43937688459637 26077:26077 hsa_system_get_info(2, 0x11dbbb8) = 0 -43937688460389:43937688461019 26077:26077 hsa_system_get_info(2, 0x11dbbc0) = 0 -43937688461766:43937688462388 26077:26077 hsa_system_get_info(2, 0x11dbbc8) = 0 -43937688463139:43937688463762 26077:26077 hsa_system_get_info(2, 0x11dbbd0) = 0 -43937688464512:43937688465136 26077:26077 hsa_system_get_info(2, 0x11dbbd8) = 0 -43937688465885:43937688466513 26077:26077 hsa_system_get_info(2, 0x11dbbe0) = 0 -43937688467261:43937688467897 26077:26077 hsa_system_get_info(2, 0x11dbbe8) = 0 -43937688468652:43937688469280 26077:26077 hsa_system_get_info(2, 0x11dbbf0) = 0 -43937688470028:43937688470654 26077:26077 hsa_system_get_info(2, 0x11dbbf8) = 0 -43937688471403:43937688472028 26077:26077 hsa_system_get_info(2, 0x11dbc00) = 0 -43937688473485:43937688474117 26077:26077 hsa_system_get_info(2, 0x11dbc08) = 0 -43937688474871:43937688475491 26077:26077 hsa_system_get_info(2, 0x11dbc10) = 0 -43937688476240:43937688476856 26077:26077 hsa_system_get_info(2, 0x11dbc18) = 0 -43937688477606:43937688478226 26077:26077 hsa_system_get_info(2, 0x11dbc20) = 0 -43937688478971:43937688479596 26077:26077 hsa_system_get_info(2, 0x11dbc28) = 0 -43937688480348:43937688480969 26077:26077 hsa_system_get_info(2, 0x11dbc30) = 0 -43937688481720:43937688482343 26077:26077 hsa_system_get_info(2, 0x11dbc38) = 0 -43937688483094:43937688483712 26077:26077 hsa_system_get_info(2, 0x11dbc40) = 0 -43937688484462:43937688485087 26077:26077 hsa_system_get_info(2, 0x11dbc48) = 0 -43937688485842:43937688486480 26077:26077 hsa_system_get_info(2, 0x11dbc50) = 0 -43937688487233:43937688487852 26077:26077 hsa_system_get_info(2, 0x11dbc58) = 0 -43937688488602:43937688489224 26077:26077 hsa_system_get_info(2, 0x11dbc60) = 0 -43937688489974:43937688490593 26077:26077 hsa_system_get_info(2, 0x11dbc68) = 0 -43937688491347:43937688491974 26077:26077 hsa_system_get_info(2, 0x11dbc70) = 0 -43937688492725:43937688493344 26077:26077 hsa_system_get_info(2, 0x11dbc78) = 0 -43937688494092:43937688494713 26077:26077 hsa_system_get_info(2, 0x11dbc80) = 0 -43937688495462:43937688496082 26077:26077 hsa_system_get_info(2, 0x11dbc88) = 0 -43937688496836:43937688497458 26077:26077 hsa_system_get_info(2, 0x11dbc90) = 0 -43937688498207:43937688498828 26077:26077 hsa_system_get_info(2, 0x11dbc98) = 0 -43937688499579:43937688500202 26077:26077 hsa_system_get_info(2, 0x11dbca0) = 0 -43937688500955:43937688501579 26077:26077 hsa_system_get_info(2, 0x11dbca8) = 0 -43937688502332:43937688502951 26077:26077 hsa_system_get_info(2, 0x11dbcb0) = 0 -43937688503701:43937688504323 26077:26077 hsa_system_get_info(2, 0x11dbcb8) = 0 -43937688505073:43937688505693 26077:26077 hsa_system_get_info(2, 0x11dbcc0) = 0 -43937688506446:43937688507088 26077:26077 hsa_system_get_info(2, 0x11dbcc8) = 0 -43937688507838:43937688508460 26077:26077 hsa_system_get_info(2, 0x11dbcd0) = 0 -43937688509213:43937688509830 26077:26077 hsa_system_get_info(2, 0x11dbcd8) = 0 -43937688510585:43937688511209 26077:26077 hsa_system_get_info(2, 0x11dbce0) = 0 -43937688511976:43937688512600 26077:26077 hsa_system_get_info(2, 0x11dbce8) = 0 -43937688514046:43937688514677 26077:26077 hsa_system_get_info(2, 0x11dbcf0) = 0 -43937688515453:43937688516081 26077:26077 hsa_system_get_info(2, 0x11dbcf8) = 0 -43937688516834:43937688517456 26077:26077 hsa_system_get_info(2, 0x11dbd00) = 0 -43937688518211:43937688518833 26077:26077 hsa_system_get_info(2, 0x11dbd08) = 0 -43937688519584:43937688520206 26077:26077 hsa_system_get_info(2, 0x11dbd10) = 0 -43937688520958:43937688521576 26077:26077 hsa_system_get_info(2, 0x11dbd18) = 0 -43937688522331:43937688522945 26077:26077 hsa_system_get_info(2, 0x11dbd20) = 0 -43937688523696:43937688524315 26077:26077 hsa_system_get_info(2, 0x11dbd28) = 0 -43937688525075:43937688525697 26077:26077 hsa_system_get_info(2, 0x11dbd30) = 0 -43937688526447:43937688527071 26077:26077 hsa_system_get_info(2, 0x11dbd38) = 0 -43937688527824:43937688528448 26077:26077 hsa_system_get_info(2, 0x11dbd40) = 0 -43937688529199:43937688529823 26077:26077 hsa_system_get_info(2, 0x11dbd48) = 0 -43937688530571:43937688531197 26077:26077 hsa_system_get_info(2, 0x11dbd50) = 0 -43937688531949:43937688532569 26077:26077 hsa_system_get_info(2, 0x11dbd58) = 0 -43937688533327:43937688533949 26077:26077 hsa_system_get_info(2, 0x11dbd60) = 0 -43937688534703:43937688535348 26077:26077 hsa_system_get_info(2, 0x11dbd68) = 0 -43937688536100:43937688536721 26077:26077 hsa_system_get_info(2, 0x11dbd70) = 0 -43937688537475:43937688538095 26077:26077 hsa_system_get_info(2, 0x11dbd78) = 0 -43937688538842:43937688539463 26077:26077 hsa_system_get_info(2, 0x11dbd80) = 0 -43937688540209:43937688540832 26077:26077 hsa_system_get_info(2, 0x11dbd88) = 0 -43937688541584:43937688542208 26077:26077 hsa_system_get_info(2, 0x11dbd90) = 0 -43937688542959:43937688543593 26077:26077 hsa_system_get_info(2, 0x11dbd98) = 0 -43937688544355:43937688544977 26077:26077 hsa_system_get_info(2, 0x11dbda0) = 0 -43937688545728:43937688546349 26077:26077 hsa_system_get_info(2, 0x11dbda8) = 0 -43937688547099:43937688547722 26077:26077 hsa_system_get_info(2, 0x11dbdb0) = 0 -43937688548473:43937688549103 26077:26077 hsa_system_get_info(2, 0x11dbdb8) = 0 -43937688549858:43937688550475 26077:26077 hsa_system_get_info(2, 0x11dbdc0) = 0 -43937688551229:43937688551848 26077:26077 hsa_system_get_info(2, 0x11dbdc8) = 0 -43937688553290:43937688553920 26077:26077 hsa_system_get_info(2, 0x11dbdd0) = 0 -43937688554666:43937688555292 26077:26077 hsa_system_get_info(2, 0x11dbdd8) = 0 -43937688556040:43937688556671 26077:26077 hsa_system_get_info(2, 0x11dbde0) = 0 -43937688557419:43937688558046 26077:26077 hsa_system_get_info(2, 0x11dbde8) = 0 -43937688558794:43937688559416 26077:26077 hsa_system_get_info(2, 0x11dbdf0) = 0 -43937688560163:43937688560781 26077:26077 hsa_system_get_info(2, 0x11dbdf8) = 0 -43937688561528:43937688562155 26077:26077 hsa_system_get_info(2, 0x11dbe00) = 0 -43937688562906:43937688563521 26077:26077 hsa_system_get_info(2, 0x11dbe08) = 0 -43937688564276:43937688564898 26077:26077 hsa_system_get_info(2, 0x11dbe10) = 0 -43937688565653:43937688566280 26077:26077 hsa_system_get_info(2, 0x11dbe18) = 0 -43937688567031:43937688567657 26077:26077 hsa_system_get_info(2, 0x11dbe20) = 0 -43937688568412:43937688569035 26077:26077 hsa_system_get_info(2, 0x11dbe28) = 0 -43937688569782:43937688570402 26077:26077 hsa_system_get_info(2, 0x11dbe30) = 0 -43937688571154:43937688571789 26077:26077 hsa_system_get_info(2, 0x11dbe38) = 0 -43937688572541:43937688573164 26077:26077 hsa_system_get_info(2, 0x11dbe40) = 0 -43937688573917:43937688574537 26077:26077 hsa_system_get_info(2, 0x11dbe48) = 0 -43937688575287:43937688575912 26077:26077 hsa_system_get_info(2, 0x11dbe50) = 0 -43937688576665:43937688577287 26077:26077 hsa_system_get_info(2, 0x11dbe58) = 0 -43937688578037:43937688578651 26077:26077 hsa_system_get_info(2, 0x11dbe60) = 0 -43937688579400:43937688580018 26077:26077 hsa_system_get_info(2, 0x11dbe68) = 0 -43937688580765:43937688581387 26077:26077 hsa_system_get_info(2, 0x11dbe70) = 0 -43937688582138:43937688582757 26077:26077 hsa_system_get_info(2, 0x11dbe78) = 0 -43937688583501:43937688584126 26077:26077 hsa_system_get_info(2, 0x11dbe80) = 0 -43937688584877:43937688585491 26077:26077 hsa_system_get_info(2, 0x11dbe88) = 0 -43937688586235:43937688586866 26077:26077 hsa_system_get_info(2, 0x11dbe90) = 0 -43937688587618:43937688588245 26077:26077 hsa_system_get_info(2, 0x11dbe98) = 0 -43937688588995:43937688589615 26077:26077 hsa_system_get_info(2, 0x11dbea0) = 0 -43937688590363:43937688590990 26077:26077 hsa_system_get_info(2, 0x11dbea8) = 0 -43937688591738:43937688592376 26077:26077 hsa_system_get_info(2, 0x11dbeb0) = 0 -43937688593807:43937688594437 26077:26077 hsa_system_get_info(2, 0x11dbeb8) = 0 -43937688595194:43937688595814 26077:26077 hsa_system_get_info(2, 0x11dbec0) = 0 -43937688596564:43937688597181 26077:26077 hsa_system_get_info(2, 0x11dbec8) = 0 -43937688597932:43937688598558 26077:26077 hsa_system_get_info(2, 0x11dbed0) = 0 -43937688599306:43937688599928 26077:26077 hsa_system_get_info(2, 0x11dbed8) = 0 -43937688600676:43937688601300 26077:26077 hsa_system_get_info(2, 0x11dbee0) = 0 -43937688602049:43937688602679 26077:26077 hsa_system_get_info(2, 0x11dbee8) = 0 -43937688603425:43937688604053 26077:26077 hsa_system_get_info(2, 0x11dbef0) = 0 -43937688604812:43937688605440 26077:26077 hsa_system_get_info(2, 0x11dbef8) = 0 -43937688606187:43937688606820 26077:26077 hsa_system_get_info(2, 0x11dbf00) = 0 -43937688607570:43937688608194 26077:26077 hsa_system_get_info(2, 0x11dbf08) = 0 -43937688608938:43937688609558 26077:26077 hsa_system_get_info(2, 0x11dbf10) = 0 -43937688610309:43937688610945 26077:26077 hsa_system_get_info(2, 0x11dbf18) = 0 -43937688611714:43937688612338 26077:26077 hsa_system_get_info(2, 0x11dbf20) = 0 -43937688613087:43937688613714 26077:26077 hsa_system_get_info(2, 0x11dbf28) = 0 -43937688614459:43937688615078 26077:26077 hsa_system_get_info(2, 0x11dbf30) = 0 -43937688615826:43937688616455 26077:26077 hsa_system_get_info(2, 0x11dbf38) = 0 -43937688617207:43937688617829 26077:26077 hsa_system_get_info(2, 0x11dbf40) = 0 -43937688618580:43937688619214 26077:26077 hsa_system_get_info(2, 0x11dbf48) = 0 -43937688619961:43937688620587 26077:26077 hsa_system_get_info(2, 0x11dbf50) = 0 -43937688621339:43937688621972 26077:26077 hsa_system_get_info(2, 0x11dbf58) = 0 -43937688622724:43937688623344 26077:26077 hsa_system_get_info(2, 0x11dbf60) = 0 -43937688624090:43937688624712 26077:26077 hsa_system_get_info(2, 0x11dbf68) = 0 -43937688625464:43937688626085 26077:26077 hsa_system_get_info(2, 0x11dbf70) = 0 -43937688626836:43937688627461 26077:26077 hsa_system_get_info(2, 0x11dbf78) = 0 -43937688628213:43937688628836 26077:26077 hsa_system_get_info(2, 0x11dbf80) = 0 -43937688629585:43937688630203 26077:26077 hsa_system_get_info(2, 0x11dbf88) = 0 -43937688630970:43937688631585 26077:26077 hsa_system_get_info(2, 0x11dbf90) = 0 -43937688633039:43937688633666 26077:26077 hsa_system_get_info(2, 0x11dbf98) = 0 -43937688634411:43937688635027 26077:26077 hsa_system_get_info(2, 0x11dbfa0) = 0 -43937688635777:43937688636398 26077:26077 hsa_system_get_info(2, 0x11dbfa8) = 0 -43937688637144:43937688637771 26077:26077 hsa_system_get_info(2, 0x11dbfb0) = 0 -43937688638520:43937688639141 26077:26077 hsa_system_get_info(2, 0x11dbfb8) = 0 -43937688639889:43937688640516 26077:26077 hsa_system_get_info(2, 0x11dbfc0) = 0 -43937688641266:43937688641896 26077:26077 hsa_system_get_info(2, 0x11dbfc8) = 0 -43937688642647:43937688643275 26077:26077 hsa_system_get_info(2, 0x11dbfd0) = 0 -43937688644025:43937688644646 26077:26077 hsa_system_get_info(2, 0x11dbfd8) = 0 -43937688645397:43937688646023 26077:26077 hsa_system_get_info(2, 0x11dbfe0) = 0 -43937688646778:43937688647408 26077:26077 hsa_system_get_info(2, 0x11dbfe8) = 0 -43937688648177:43937688648804 26077:26077 hsa_system_get_info(2, 0x11dbff0) = 0 -43937688649556:43937688650179 26077:26077 hsa_system_get_info(2, 0x11dbff8) = 0 -43937688650927:43937688651553 26077:26077 hsa_system_get_info(2, 0x11dc000) = 0 -43937688652306:43937688652928 26077:26077 hsa_system_get_info(2, 0x11dc008) = 0 -43937688653680:43937688654303 26077:26077 hsa_system_get_info(2, 0x11dc010) = 0 -43937688655055:43937688655678 26077:26077 hsa_system_get_info(2, 0x11dc018) = 0 -43937688656429:43937688657053 26077:26077 hsa_system_get_info(2, 0x11dc020) = 0 -43937688657802:43937688658422 26077:26077 hsa_system_get_info(2, 0x11dc028) = 0 -43937688659171:43937688659795 26077:26077 hsa_system_get_info(2, 0x11dc030) = 0 -43937688660550:43937688661171 26077:26077 hsa_system_get_info(2, 0x11dc038) = 0 -43937688661917:43937688662534 26077:26077 hsa_system_get_info(2, 0x11dc040) = 0 -43937688663285:43937688663906 26077:26077 hsa_system_get_info(2, 0x11dc048) = 0 -43937688664656:43937688665274 26077:26077 hsa_system_get_info(2, 0x11dc050) = 0 -43937688666024:43937688666646 26077:26077 hsa_system_get_info(2, 0x11dc058) = 0 -43937688667397:43937688668032 26077:26077 hsa_system_get_info(2, 0x11dc060) = 0 -43937688668783:43937688669402 26077:26077 hsa_system_get_info(2, 0x11dc068) = 0 -43937688670148:43937688670768 26077:26077 hsa_system_get_info(2, 0x11dc070) = 0 -43937688672220:43937688672845 26077:26077 hsa_system_get_info(2, 0x11dc078) = 0 -43937688673609:43937688674234 26077:26077 hsa_system_get_info(2, 0x11dc080) = 0 -43937688674983:43937688675606 26077:26077 hsa_system_get_info(2, 0x11dc088) = 0 -43937688676355:43937688676975 26077:26077 hsa_system_get_info(2, 0x11dc090) = 0 -43937688677721:43937688678342 26077:26077 hsa_system_get_info(2, 0x11dc098) = 0 -43937688679088:43937688679716 26077:26077 hsa_system_get_info(2, 0x11dc0a0) = 0 -43937688680467:43937688681089 26077:26077 hsa_system_get_info(2, 0x11dc0a8) = 0 -43937688681839:43937688682465 26077:26077 hsa_system_get_info(2, 0x11dc0b0) = 0 -43937688683215:43937688683834 26077:26077 hsa_system_get_info(2, 0x11dc0b8) = 0 -43937688684597:43937688685220 26077:26077 hsa_system_get_info(2, 0x11dc0c0) = 0 -43937688685976:43937688686603 26077:26077 hsa_system_get_info(2, 0x11dc0c8) = 0 -43937688687360:43937688687987 26077:26077 hsa_system_get_info(2, 0x11dc0d0) = 0 -43937688688740:43937688689363 26077:26077 hsa_system_get_info(2, 0x11dc0d8) = 0 -43937688690123:43937688690749 26077:26077 hsa_system_get_info(2, 0x11dc0e0) = 0 -43937688691503:43937688692132 26077:26077 hsa_system_get_info(2, 0x11dc0e8) = 0 -43937688692880:43937688693517 26077:26077 hsa_system_get_info(2, 0x11dc0f0) = 0 -43937688694266:43937688694891 26077:26077 hsa_system_get_info(2, 0x11dc0f8) = 0 -43937688695661:43937688696285 26077:26077 hsa_system_get_info(2, 0x11dc100) = 0 -43937688697055:43937688697676 26077:26077 hsa_system_get_info(2, 0x11dc108) = 0 -43937688698432:43937688699057 26077:26077 hsa_system_get_info(2, 0x11dc110) = 0 -43937688699807:43937688700434 26077:26077 hsa_system_get_info(2, 0x11dc118) = 0 -43937688701178:43937688701802 26077:26077 hsa_system_get_info(2, 0x11dc120) = 0 -43937688702552:43937688703172 26077:26077 hsa_system_get_info(2, 0x11dc128) = 0 -43937688703921:43937688704548 26077:26077 hsa_system_get_info(2, 0x11dc130) = 0 -43937688705297:43937688705924 26077:26077 hsa_system_get_info(2, 0x11dc138) = 0 -43937688706669:43937688707287 26077:26077 hsa_system_get_info(2, 0x11dc140) = 0 -43937688708033:43937688708651 26077:26077 hsa_system_get_info(2, 0x11dc148) = 0 -43937688709403:43937688710026 26077:26077 hsa_system_get_info(2, 0x11dc150) = 0 -43937688710776:43937688711404 26077:26077 hsa_system_get_info(2, 0x11dc158) = 0 -43937688714194:43937688714817 26077:26077 hsa_system_get_info(2, 0x11dc160) = 0 -43937688715569:43937688716196 26077:26077 hsa_system_get_info(2, 0x11dc168) = 0 -43937688716947:43937688717574 26077:26077 hsa_system_get_info(2, 0x11dc170) = 0 -43937688718329:43937688718959 26077:26077 hsa_system_get_info(2, 0x11dc178) = 0 -43937688719708:43937688720336 26077:26077 hsa_system_get_info(2, 0x11dc180) = 0 -43937688721085:43937688721706 26077:26077 hsa_system_get_info(2, 0x11dc188) = 0 -43937688722453:43937688723086 26077:26077 hsa_system_get_info(2, 0x11dc190) = 0 -43937688723839:43937688724460 26077:26077 hsa_system_get_info(2, 0x11dc198) = 0 -43937688725208:43937688725830 26077:26077 hsa_system_get_info(2, 0x11dc1a0) = 0 -43937688726582:43937688727205 26077:26077 hsa_system_get_info(2, 0x11dc1a8) = 0 -43937688727953:43937688728579 26077:26077 hsa_system_get_info(2, 0x11dc1b0) = 0 -43937688729324:43937688729951 26077:26077 hsa_system_get_info(2, 0x11dc1b8) = 0 -43937688730696:43937688731317 26077:26077 hsa_system_get_info(2, 0x11dc1c0) = 0 -43937688732065:43937688732683 26077:26077 hsa_system_get_info(2, 0x11dc1c8) = 0 -43937688733430:43937688734050 26077:26077 hsa_system_get_info(2, 0x11dc1d0) = 0 -43937688734818:43937688735441 26077:26077 hsa_system_get_info(2, 0x11dc1d8) = 0 -43937688736196:43937688736814 26077:26077 hsa_system_get_info(2, 0x11dc1e0) = 0 -43937688737566:43937688738192 26077:26077 hsa_system_get_info(2, 0x11dc1e8) = 0 -43937688738941:43937688739569 26077:26077 hsa_system_get_info(2, 0x11dc1f0) = 0 -43937688740320:43937688740951 26077:26077 hsa_system_get_info(2, 0x11dc1f8) = 0 -43937688741720:43937688742350 26077:26077 hsa_system_get_info(2, 0x11dc200) = 0 -43937688743103:43937688743731 26077:26077 hsa_system_get_info(2, 0x11dc208) = 0 -43937688744482:43937688745104 26077:26077 hsa_system_get_info(2, 0x11dc210) = 0 -43937688745853:43937688746477 26077:26077 hsa_system_get_info(2, 0x11dc218) = 0 -43937688747224:43937688747852 26077:26077 hsa_system_get_info(2, 0x11dc220) = 0 -43937688748603:43937688749234 26077:26077 hsa_system_get_info(2, 0x11dc228) = 0 -43937688749979:43937688750603 26077:26077 hsa_system_get_info(2, 0x11dc230) = 0 -43937688751349:43937688751980 26077:26077 hsa_system_get_info(2, 0x11dc238) = 0 -43937688753421:43937688754056 26077:26077 hsa_system_get_info(2, 0x11dc240) = 0 -43937688754802:43937688755421 26077:26077 hsa_system_get_info(2, 0x11dc248) = 0 -43937688756167:43937688756787 26077:26077 hsa_system_get_info(2, 0x11dc250) = 0 -43937688757553:43937688758166 26077:26077 hsa_system_get_info(2, 0x11dc258) = 0 -43937688758914:43937688759541 26077:26077 hsa_system_get_info(2, 0x11dc260) = 0 -43937688760284:43937688760906 26077:26077 hsa_system_get_info(2, 0x11dc268) = 0 -43937688761653:43937688762280 26077:26077 hsa_system_get_info(2, 0x11dc270) = 0 -43937688763023:43937688763645 26077:26077 hsa_system_get_info(2, 0x11dc278) = 0 -43937688764398:43937688765023 26077:26077 hsa_system_get_info(2, 0x11dc280) = 0 -43937688765783:43937688766403 26077:26077 hsa_system_get_info(2, 0x11dc288) = 0 -43937688767154:43937688767772 26077:26077 hsa_system_get_info(2, 0x11dc290) = 0 -43937688768527:43937688769145 26077:26077 hsa_system_get_info(2, 0x11dc298) = 0 -43937688769893:43937688770514 26077:26077 hsa_system_get_info(2, 0x11dc2a0) = 0 -43937688771265:43937688771885 26077:26077 hsa_system_get_info(2, 0x11dc2a8) = 0 -43937688772636:43937688773256 26077:26077 hsa_system_get_info(2, 0x11dc2b0) = 0 -43937688774010:43937688774629 26077:26077 hsa_system_get_info(2, 0x11dc2b8) = 0 -43937688775379:43937688776010 26077:26077 hsa_system_get_info(2, 0x11dc2c0) = 0 -43937688776764:43937688777382 26077:26077 hsa_system_get_info(2, 0x11dc2c8) = 0 -43937688778135:43937688778758 26077:26077 hsa_system_get_info(2, 0x11dc2d0) = 0 -43937688779513:43937688780135 26077:26077 hsa_system_get_info(2, 0x11dc2d8) = 0 -43937688780884:43937688781507 26077:26077 hsa_system_get_info(2, 0x11dc2e0) = 0 -43937688782285:43937688782913 26077:26077 hsa_system_get_info(2, 0x11dc2e8) = 0 -43937688783664:43937688784292 26077:26077 hsa_system_get_info(2, 0x11dc2f0) = 0 -43937688785047:43937688785672 26077:26077 hsa_system_get_info(2, 0x11dc2f8) = 0 -43937688786439:43937688787065 26077:26077 hsa_system_get_info(2, 0x11dc300) = 0 -43937688787816:43937688788437 26077:26077 hsa_system_get_info(2, 0x11dc308) = 0 -43937688789190:43937688789810 26077:26077 hsa_system_get_info(2, 0x11dc310) = 0 -43937688790562:43937688791189 26077:26077 hsa_system_get_info(2, 0x11dc318) = 0 -43937688791943:43937688792572 26077:26077 hsa_system_get_info(2, 0x11dc320) = 0 -43937688794089:43937688794719 26077:26077 hsa_system_get_info(2, 0x11dc328) = 0 -43937688795472:43937688796095 26077:26077 hsa_system_get_info(2, 0x11dc330) = 0 -43937688796850:43937688797472 26077:26077 hsa_system_get_info(2, 0x11dc338) = 0 -43937688798223:43937688798853 26077:26077 hsa_system_get_info(2, 0x11dc340) = 0 -43937688799600:43937688800226 26077:26077 hsa_system_get_info(2, 0x11dc348) = 0 -43937688800969:43937688801596 26077:26077 hsa_system_get_info(2, 0x11dc350) = 0 -43937688802345:43937688802974 26077:26077 hsa_system_get_info(2, 0x11dc358) = 0 -43937688803718:43937688804349 26077:26077 hsa_system_get_info(2, 0x11dc360) = 0 -43937688805098:43937688805727 26077:26077 hsa_system_get_info(2, 0x11dc368) = 0 -43937688806479:43937688807107 26077:26077 hsa_system_get_info(2, 0x11dc370) = 0 -43937688807853:43937688808481 26077:26077 hsa_system_get_info(2, 0x11dc378) = 0 -43937688809232:43937688809860 26077:26077 hsa_system_get_info(2, 0x11dc380) = 0 -43937688810628:43937688811250 26077:26077 hsa_system_get_info(2, 0x11dc388) = 0 -43937688812000:43937688812618 26077:26077 hsa_system_get_info(2, 0x11dc390) = 0 -43937688813366:43937688813989 26077:26077 hsa_system_get_info(2, 0x11dc398) = 0 -43937688814735:43937688815356 26077:26077 hsa_system_get_info(2, 0x11dc3a0) = 0 -43937688816107:43937688816731 26077:26077 hsa_system_get_info(2, 0x11dc3a8) = 0 -43937688817481:43937688818098 26077:26077 hsa_system_get_info(2, 0x11dc3b0) = 0 -43937688818848:43937688819468 26077:26077 hsa_system_get_info(2, 0x11dc3b8) = 0 -43937688820222:43937688820842 26077:26077 hsa_system_get_info(2, 0x11dc3c0) = 0 -43937688821595:43937688822208 26077:26077 hsa_system_get_info(2, 0x11dc3c8) = 0 -43937688822959:43937688823584 26077:26077 hsa_system_get_info(2, 0x11dc3d0) = 0 -43937688824335:43937688824957 26077:26077 hsa_system_get_info(2, 0x11dc3d8) = 0 -43937688825710:43937688826327 26077:26077 hsa_system_get_info(2, 0x11dc3e0) = 0 -43937688827076:43937688827693 26077:26077 hsa_system_get_info(2, 0x11dc3e8) = 0 -43937688828447:43937688829071 26077:26077 hsa_system_get_info(2, 0x11dc3f0) = 0 -43937688829833:43937688830456 26077:26077 hsa_system_get_info(2, 0x11dc3f8) = 0 -43937688831208:43937688831825 26077:26077 hsa_system_get_info(2, 0x11dc400) = 0 -43937688833326:43937688833958 26077:26077 hsa_system_get_info(2, 0x11dc408) = 0 -43937688834713:43937688835336 26077:26077 hsa_system_get_info(2, 0x11dc410) = 0 -43937688836084:43937688836703 26077:26077 hsa_system_get_info(2, 0x11dc418) = 0 -43937688837450:43937688838077 26077:26077 hsa_system_get_info(2, 0x11dc420) = 0 -43937688838819:43937688839437 26077:26077 hsa_system_get_info(2, 0x11dc428) = 0 -43937688840180:43937688840806 26077:26077 hsa_system_get_info(2, 0x11dc430) = 0 -43937688841558:43937688842176 26077:26077 hsa_system_get_info(2, 0x11dc438) = 0 -43937688842923:43937688843546 26077:26077 hsa_system_get_info(2, 0x11dc440) = 0 -43937688844299:43937688844924 26077:26077 hsa_system_get_info(2, 0x11dc448) = 0 -43937688845680:43937688846300 26077:26077 hsa_system_get_info(2, 0x11dc450) = 0 -43937688847051:43937688847674 26077:26077 hsa_system_get_info(2, 0x11dc458) = 0 -43937688848425:43937688849050 26077:26077 hsa_system_get_info(2, 0x11dc460) = 0 -43937688849801:43937688850425 26077:26077 hsa_system_get_info(2, 0x11dc468) = 0 -43937688851177:43937688851812 26077:26077 hsa_system_get_info(2, 0x11dc470) = 0 -43937688852565:43937688853206 26077:26077 hsa_system_get_info(2, 0x11dc478) = 0 -43937688853955:43937688854575 26077:26077 hsa_system_get_info(2, 0x11dc480) = 0 -43937688855324:43937688855947 26077:26077 hsa_system_get_info(2, 0x11dc488) = 0 -43937688856697:43937688857320 26077:26077 hsa_system_get_info(2, 0x11dc490) = 0 -43937688858071:43937688858695 26077:26077 hsa_system_get_info(2, 0x11dc498) = 0 -43937688859446:43937688860068 26077:26077 hsa_system_get_info(2, 0x11dc4a0) = 0 -43937688860818:43937688861441 26077:26077 hsa_system_get_info(2, 0x11dc4a8) = 0 -43937688862190:43937688862809 26077:26077 hsa_system_get_info(2, 0x11dc4b0) = 0 -43937688863557:43937688864175 26077:26077 hsa_system_get_info(2, 0x11dc4b8) = 0 -43937688864925:43937688865550 26077:26077 hsa_system_get_info(2, 0x11dc4c0) = 0 -43937688866299:43937688866922 26077:26077 hsa_system_get_info(2, 0x11dc4c8) = 0 -43937688867673:43937688868294 26077:26077 hsa_system_get_info(2, 0x11dc4d0) = 0 -43937688869044:43937688869671 26077:26077 hsa_system_get_info(2, 0x11dc4d8) = 0 -43937688870417:43937688871036 26077:26077 hsa_system_get_info(2, 0x11dc4e0) = 0 -43937688871783:43937688872420 26077:26077 hsa_system_get_info(2, 0x11dc4e8) = 0 -43937688873893:43937688874517 26077:26077 hsa_system_get_info(2, 0x11dc4f0) = 0 -43937688875270:43937688875887 26077:26077 hsa_system_get_info(2, 0x11dc4f8) = 0 -43937688876635:43937688877257 26077:26077 hsa_system_get_info(2, 0x11dc500) = 0 -43937688878010:43937688878636 26077:26077 hsa_system_get_info(2, 0x11dc508) = 0 -43937688879384:43937688880010 26077:26077 hsa_system_get_info(2, 0x11dc510) = 0 -43937688880761:43937688881381 26077:26077 hsa_system_get_info(2, 0x11dc518) = 0 -43937688882138:43937688882769 26077:26077 hsa_system_get_info(2, 0x11dc520) = 0 -43937688883519:43937688884145 26077:26077 hsa_system_get_info(2, 0x11dc528) = 0 -43937688884919:43937688885544 26077:26077 hsa_system_get_info(2, 0x11dc530) = 0 -43937688886292:43937688886915 26077:26077 hsa_system_get_info(2, 0x11dc538) = 0 -43937688887663:43937688888287 26077:26077 hsa_system_get_info(2, 0x11dc540) = 0 -43937688889037:43937688889655 26077:26077 hsa_system_get_info(2, 0x11dc548) = 0 -43937688890406:43937688891030 26077:26077 hsa_system_get_info(2, 0x11dc550) = 0 -43937688891778:43937688892418 26077:26077 hsa_system_get_info(2, 0x11dc558) = 0 -43937688893166:43937688893788 26077:26077 hsa_system_get_info(2, 0x11dc560) = 0 -43937688894542:43937688895161 26077:26077 hsa_system_get_info(2, 0x11dc568) = 0 -43937688895916:43937688896539 26077:26077 hsa_system_get_info(2, 0x11dc570) = 0 -43937688897290:43937688897908 26077:26077 hsa_system_get_info(2, 0x11dc578) = 0 -43937688898662:43937688899278 26077:26077 hsa_system_get_info(2, 0x11dc580) = 0 -43937688900030:43937688900645 26077:26077 hsa_system_get_info(2, 0x11dc588) = 0 -43937688901400:43937688902023 26077:26077 hsa_system_get_info(2, 0x11dc590) = 0 -43937688902774:43937688903396 26077:26077 hsa_system_get_info(2, 0x11dc598) = 0 -43937688904150:43937688904767 26077:26077 hsa_system_get_info(2, 0x11dc5a0) = 0 -43937688905518:43937688906144 26077:26077 hsa_system_get_info(2, 0x11dc5a8) = 0 -43937688906894:43937688907514 26077:26077 hsa_system_get_info(2, 0x11dc5b0) = 0 -43937688908265:43937688908881 26077:26077 hsa_system_get_info(2, 0x11dc5b8) = 0 -43937688909634:43937688910261 26077:26077 hsa_system_get_info(2, 0x11dc5c0) = 0 -43937688911009:43937688911631 26077:26077 hsa_system_get_info(2, 0x11dc5c8) = 0 -43937688913083:43937688913718 26077:26077 hsa_system_get_info(2, 0x11dc5d0) = 0 -43937688914468:43937688915093 26077:26077 hsa_system_get_info(2, 0x11dc5d8) = 0 -43937688915841:43937688916462 26077:26077 hsa_system_get_info(2, 0x11dc5e0) = 0 -43937688917210:43937688917828 26077:26077 hsa_system_get_info(2, 0x11dc5e8) = 0 -43937688918575:43937688919199 26077:26077 hsa_system_get_info(2, 0x11dc5f0) = 0 -43937688919947:43937688920574 26077:26077 hsa_system_get_info(2, 0x11dc5f8) = 0 -43937688921361:43937688921986 26077:26077 hsa_system_get_info(2, 0x11dc600) = 0 -43937688922737:43937688923362 26077:26077 hsa_system_get_info(2, 0x11dc608) = 0 -43937688924116:43937688924747 26077:26077 hsa_system_get_info(2, 0x11dc610) = 0 -43937688925499:43937688926127 26077:26077 hsa_system_get_info(2, 0x11dc618) = 0 -43937688926878:43937688927499 26077:26077 hsa_system_get_info(2, 0x11dc620) = 0 -43937688928249:43937688928875 26077:26077 hsa_system_get_info(2, 0x11dc628) = 0 -43937688929621:43937688930245 26077:26077 hsa_system_get_info(2, 0x11dc630) = 0 -43937688930997:43937688931626 26077:26077 hsa_system_get_info(2, 0x11dc638) = 0 -43937688932377:43937688933009 26077:26077 hsa_system_get_info(2, 0x11dc640) = 0 -43937688933760:43937688934392 26077:26077 hsa_system_get_info(2, 0x11dc648) = 0 -43937688935139:43937688935761 26077:26077 hsa_system_get_info(2, 0x11dc650) = 0 -43937688936511:43937688937126 26077:26077 hsa_system_get_info(2, 0x11dc658) = 0 -43937688937872:43937688938496 26077:26077 hsa_system_get_info(2, 0x11dc660) = 0 -43937688939247:43937688939868 26077:26077 hsa_system_get_info(2, 0x11dc668) = 0 -43937688940619:43937688941238 26077:26077 hsa_system_get_info(2, 0x11dc670) = 0 -43937688942006:43937688942626 26077:26077 hsa_system_get_info(2, 0x11dc678) = 0 -43937688943384:43937688944006 26077:26077 hsa_system_get_info(2, 0x11dc680) = 0 -43937688944757:43937688945375 26077:26077 hsa_system_get_info(2, 0x11dc688) = 0 -43937688946126:43937688946747 26077:26077 hsa_system_get_info(2, 0x11dc690) = 0 -43937688947492:43937688948116 26077:26077 hsa_system_get_info(2, 0x11dc698) = 0 -43937688948864:43937688949484 26077:26077 hsa_system_get_info(2, 0x11dc6a0) = 0 -43937688950234:43937688950860 26077:26077 hsa_system_get_info(2, 0x11dc6a8) = 0 -43937688951613:43937688952231 26077:26077 hsa_system_get_info(2, 0x11dc6b0) = 0 -43937688954355:43937688954990 26077:26077 hsa_system_get_info(2, 0x11dc6b8) = 0 -43937688955747:43937688956374 26077:26077 hsa_system_get_info(2, 0x11dc6c0) = 0 -43937688957121:43937688957738 26077:26077 hsa_system_get_info(2, 0x11dc6c8) = 0 -43937688958487:43937688959104 26077:26077 hsa_system_get_info(2, 0x11dc6d0) = 0 -43937688959854:43937688960475 26077:26077 hsa_system_get_info(2, 0x11dc6d8) = 0 -43937688961228:43937688961845 26077:26077 hsa_system_get_info(2, 0x11dc6e0) = 0 -43937688962590:43937688963214 26077:26077 hsa_system_get_info(2, 0x11dc6e8) = 0 -43937688963960:43937688964585 26077:26077 hsa_system_get_info(2, 0x11dc6f0) = 0 -43937688965351:43937688965969 26077:26077 hsa_system_get_info(2, 0x11dc6f8) = 0 -43937688966737:43937688967358 26077:26077 hsa_system_get_info(2, 0x11dc700) = 0 -43937688968109:43937688968731 26077:26077 hsa_system_get_info(2, 0x11dc708) = 0 -43937688969485:43937688970110 26077:26077 hsa_system_get_info(2, 0x11dc710) = 0 -43937688970860:43937688971491 26077:26077 hsa_system_get_info(2, 0x11dc718) = 0 -43937688972240:43937688972861 26077:26077 hsa_system_get_info(2, 0x11dc720) = 0 -43937688973610:43937688974235 26077:26077 hsa_system_get_info(2, 0x11dc728) = 0 -43937688974984:43937688975613 26077:26077 hsa_system_get_info(2, 0x11dc730) = 0 -43937688976366:43937688976996 26077:26077 hsa_system_get_info(2, 0x11dc738) = 0 -43937688977750:43937688978377 26077:26077 hsa_system_get_info(2, 0x11dc740) = 0 -43937688979130:43937688979754 26077:26077 hsa_system_get_info(2, 0x11dc748) = 0 -43937688980500:43937688981129 26077:26077 hsa_system_get_info(2, 0x11dc750) = 0 -43937688981877:43937688982502 26077:26077 hsa_system_get_info(2, 0x11dc758) = 0 -43937688983249:43937688983874 26077:26077 hsa_system_get_info(2, 0x11dc760) = 0 -43937688984629:43937688985252 26077:26077 hsa_system_get_info(2, 0x11dc768) = 0 -43937688986002:43937688986649 26077:26077 hsa_system_get_info(2, 0x11dc770) = 0 -43937688987395:43937688988024 26077:26077 hsa_system_get_info(2, 0x11dc778) = 0 -43937688988772:43937688989397 26077:26077 hsa_system_get_info(2, 0x11dc780) = 0 -43937688990141:43937688990763 26077:26077 hsa_system_get_info(2, 0x11dc788) = 0 -43937688991511:43937688992134 26077:26077 hsa_system_get_info(2, 0x11dc790) = 0 -43937688993593:43937688994219 26077:26077 hsa_system_get_info(2, 0x11dc798) = 0 -43937688994967:43937688995595 26077:26077 hsa_system_get_info(2, 0x11dc7a0) = 0 -43937688996348:43937688996971 26077:26077 hsa_system_get_info(2, 0x11dc7a8) = 0 -43937688997718:43937688998341 26077:26077 hsa_system_get_info(2, 0x11dc7b0) = 0 -43937688999099:43937688999729 26077:26077 hsa_system_get_info(2, 0x11dc7b8) = 0 -43937689000478:43937689001106 26077:26077 hsa_system_get_info(2, 0x11dc7c0) = 0 -43937689001854:43937689002482 26077:26077 hsa_system_get_info(2, 0x11dc7c8) = 0 -43937689278516:43937695471080 26077:26082 hsa_queue_create(, , , 0, 0, , , ) = 0 -43937973430582:43937973432774 26077:26082 hsa_signal_create(1, , 0, 0x7fe700002190) = 0 -43937973474063:43937973483935 26077:26082 hsa_code_object_reader_create_from_file(5, 0x7fe7197f9b70) = 0 -43937973485130:43937973497284 26077:26082 hsa_executable_create_alt(1, 0, -43937973498248:43937973646636 26077:26082 hsa_executable_load_agent_code_object(, , , -43937973648387:43937973790534 26077:26082 hsa_executable_freeze(, ) = 0 -43937973791974:43937973793443 26077:26082 hsa_executable_get_symbol(, -43937973799531:43937973800141 26077:26082 hsa_executable_symbol_get_info(, 13, 0x7fe7197f9bd0) = 0 -43937973800968:43937973801306 26077:26082 hsa_executable_symbol_get_info(, 14, 0x7fe7197f9bd4) = 0 -43937973802078:43937973802502 26077:26082 hsa_executable_symbol_get_info(, 22, 0x7fe7197f9be0) = 0 -43937973804516:43937973804918 26077:26082 hsa_signal_store_relaxed(, 1) = void -43937973820406:43937973820947 26077:26082 hsa_queue_load_write_index_relaxed(0x1221000) = 0 -43937973821819:43937973822183 26077:26082 hsa_queue_store_write_index_relaxed(0x1221000, ) = void -43937973823066:43937973823537 26077:26082 hsa_queue_load_read_index_relaxed(0x1221000) = 0 -43937973825172:43937973825812 26077:26082 hsa_signal_store_relaxed(, 0) = void -43937973831026:43937973835267 26077:26082 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43937973896837:43937973933045 26077:26082 hsa_executable_destroy() = 0 -43937973934619:43937973935726 26077:26082 hsa_signal_destroy() = 0 -43938251917445:43938251918459 26077:26082 hsa_signal_create(1, , 0, 0x7fe700002190) = 0 -43938251940786:43938251948262 26077:26082 hsa_code_object_reader_create_from_file(7, 0x7fe7197f9b60) = 0 -43938251949243:43938251959718 26077:26082 hsa_executable_create_alt(1, 0, -43938251961657:43938252040627 26077:26082 hsa_executable_load_agent_code_object(, , , -43938252042285:43938252065651 26077:26082 hsa_executable_freeze(, ) = 0 -43938252066647:43938252067834 26077:26082 hsa_executable_get_symbol(, -43938252079679:43938252092991 26077:26082 hsa_amd_memory_pool_allocate(, , , 0x7fe7197f9ba0) = 0 -43938252094133:43938252114996 26077:26082 hsa_amd_agents_allow_access(, 0x7fe7197f9bb0, 0, 0x800d98000) = 0 -43938252116470:43938252117618 26077:26082 hsa_amd_memory_pool_allocate(, , , 0x7fe7197f9ba8) = 0 -43938252118599:43938252127441 26077:26082 hsa_amd_memory_pool_allocate(, , , 0x7fe7197f9ba0) = 0 -43938252128362:43938252135971 26077:26082 hsa_amd_agents_allow_access(, 0x7fe7197f9bb0, 0, 0x800d81000) = 0 -43938252137057:43938252137533 26077:26082 hsa_executable_symbol_get_info(, 11, 0x7fe7197f9c00) = 0 -43938252138378:43938252146339 26077:26082 hsa_amd_memory_pool_allocate(, , , 0x7fe7197f9ba0) = 0 -43938252147270:43938252154737 26077:26082 hsa_amd_agents_allow_access(, 0x7fe7197f9bb0, 0, 0x123f000) = 0 -43938252576884:43938252577401 26077:26082 hsa_executable_symbol_get_info(, 13, 0x7fe7197f9bc0) = 0 -43938252578352:43938252578714 26077:26082 hsa_executable_symbol_get_info(, 14, 0x7fe7197f9bc4) = 0 -43938252579502:43938252579926 26077:26082 hsa_executable_symbol_get_info(, 22, 0x7fe7197f9bd0) = 0 -43938252591350:43938252591830 26077:26082 hsa_signal_store_relaxed(, 1) = void -43938252597018:43938252597606 26077:26082 hsa_queue_load_write_index_relaxed(0x1221000) = 1 -43938252598446:43938252598850 26077:26082 hsa_queue_store_write_index_relaxed(0x1221000, ) = void -43938252599673:43938252600099 26077:26082 hsa_queue_load_read_index_relaxed(0x1221000) = 1 -43938252601033:43938252601620 26077:26082 hsa_signal_store_relaxed(, 1) = void -43938252605782:43938252621567 26077:26082 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43938252628393:43938252662930 26077:26082 hsa_amd_memory_pool_allocate(, , , 0x7fe7197f9be0) = 0 -43938252664045:43938252673770 26077:26082 hsa_amd_agents_allow_access(, 0x7fe7197f9bf0, 0, 0x800db0000) = 0 -43938252675079:43938252676662 26077:26082 hsa_signal_create(1, , 0, 0x7fe7197f9b90) = 0 -43938252681483:43938252682016 26077:26082 hsa_agent_get_info(, 17, 0x7fe7197f9640) = 0 -43938252683622:43938252684084 26077:26082 hsa_amd_memory_pool_get_info(, 0, 0x7fe7197f94c0) = 0 -43938252684934:43938252685303 26077:26082 hsa_amd_memory_pool_get_info(, 1, 0x7fe7197f94c4) = 0 -43938252686136:43938252686487 26077:26082 hsa_amd_memory_pool_get_info(, 0, 0x7fe7197f94c0) = 0 -43938252687265:43938252687622 26077:26082 hsa_amd_memory_pool_get_info(, 1, 0x7fe7197f94c4) = 0 -43938252687265:43938252688458 26077:26082 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fe700006d60) = 1 -43938252690882:43938252691233 26077:26082 hsa_amd_memory_pool_get_info(, 0, 0x7fe7197f94c0) = 0 -43938252692020:43938252692372 26077:26082 hsa_amd_memory_pool_get_info(, 1, 0x7fe7197f94c4) = 0 -43938252692020:43938252693159 26077:26082 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fe700006d70) = 1 -43938252714887:43938252715316 26077:26082 hsa_agent_get_info(, 17, 0x7fe7197f9640) = 0 -43938252716205:43938252719156 26077:26082 hsa_agent_get_info(, 0, 0x7fe700006df4) = 0 -43938252720911:43938252721277 26077:26082 hsa_agent_get_info(, 6, 0x7fe700006e34) = 0 -43938252722037:43938252722410 26077:26082 hsa_agent_get_info(, 14, 0x7fe700006e38) = 0 -43938252723171:43938252723520 26077:26082 hsa_agent_get_info(, 4, 0x7fe700006e3c) = 0 -43938252724290:43938252724640 26077:26082 hsa_agent_get_info(, 40962, 0x7fe700006e58) = 0 -43938252725400:43938252725771 26077:26082 hsa_agent_get_info(, 40970, 0x7fe700006e5c) = 0 -43938252726521:43938252726881 26077:26082 hsa_agent_get_info(, 40971, 0x7fe700006e60) = 0 -43938252727653:43938252728021 26077:26082 hsa_agent_get_info(, 40972, 0x7fe700006e64) = 0 -43938252728780:43938252729124 26077:26082 hsa_agent_get_info(, 40973, 0x7fe700006e68) = 0 -43938252730417:43938252730765 26077:26082 hsa_amd_memory_pool_get_info(, 0, 0x7fe7197f94b0) = 0 -43938252731537:43938252731899 26077:26082 hsa_amd_memory_pool_get_info(, 1, 0x7fe7197f94b4) = 0 -43938252731537:43938252732665 26077:26082 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fe700006e48) = 1 -43938252731537:43938252736605 26077:26082 hsa_iterate_agents(1, 0x7fe700006b70) = 0 -43938252737550:43938252746633 26077:26082 hsa_system_get_major_extension_table(, , , 0x7fe700006c08) = 0 -43938252747493:43938252747864 26077:26082 hsa_system_get_major_extension_table(, , , 0x7fe700006c58) = 0 -43938252748766:43938252749131 26077:26082 hsa_system_get_info(3, 0x7fe7197f97b8) = 0 -43938252762143:43938252762809 26077:26082 hsa_system_get_info(2, 0x7fe70000f020) = 0 -43938252764612:43938252765276 26077:26082 hsa_system_get_info(2, 0x7fe70000f028) = 0 -43938252766099:43938252766745 26077:26082 hsa_system_get_info(2, 0x7fe70000f030) = 0 -43938252767530:43938252768173 26077:26082 hsa_system_get_info(2, 0x7fe70000f038) = 0 -43938252768947:43938252769584 26077:26082 hsa_system_get_info(2, 0x7fe70000f040) = 0 -43938252770361:43938252771005 26077:26082 hsa_system_get_info(2, 0x7fe70000f048) = 0 -43938252771778:43938252772423 26077:26082 hsa_system_get_info(2, 0x7fe70000f050) = 0 -43938252773204:43938252773848 26077:26082 hsa_system_get_info(2, 0x7fe70000f058) = 0 -43938252775466:43938252776127 26077:26082 hsa_system_get_info(2, 0x7fe70000f060) = 0 -43938252776904:43938252777549 26077:26082 hsa_system_get_info(2, 0x7fe70000f068) = 0 -43938252778333:43938252778976 26077:26082 hsa_system_get_info(2, 0x7fe70000f070) = 0 -43938252779750:43938252780393 26077:26082 hsa_system_get_info(2, 0x7fe70000f078) = 0 -43938252781178:43938252781826 26077:26082 hsa_system_get_info(2, 0x7fe70000f080) = 0 -43938252782609:43938252783256 26077:26082 hsa_system_get_info(2, 0x7fe70000f088) = 0 -43938252784027:43938252784672 26077:26082 hsa_system_get_info(2, 0x7fe70000f090) = 0 -43938252785453:43938252786101 26077:26082 hsa_system_get_info(2, 0x7fe70000f098) = 0 -43938252786871:43938252787511 26077:26082 hsa_system_get_info(2, 0x7fe70000f0a0) = 0 -43938252788290:43938252788932 26077:26082 hsa_system_get_info(2, 0x7fe70000f0a8) = 0 -43938252789708:43938252790346 26077:26082 hsa_system_get_info(2, 0x7fe70000f0b0) = 0 -43938252791133:43938252791780 26077:26082 hsa_system_get_info(2, 0x7fe70000f0b8) = 0 -43938252792558:43938252793211 26077:26082 hsa_system_get_info(2, 0x7fe70000f0c0) = 0 -43938252793987:43938252794632 26077:26082 hsa_system_get_info(2, 0x7fe70000f0c8) = 0 -43938252795423:43938252796065 26077:26082 hsa_system_get_info(2, 0x7fe70000f0d0) = 0 -43938252796838:43938252797494 26077:26082 hsa_system_get_info(2, 0x7fe70000f0d8) = 0 -43938252798265:43938252798909 26077:26082 hsa_system_get_info(2, 0x7fe70000f0e0) = 0 -43938252799680:43938252800324 26077:26082 hsa_system_get_info(2, 0x7fe70000f0e8) = 0 -43938252801102:43938252801747 26077:26082 hsa_system_get_info(2, 0x7fe70000f0f0) = 0 -43938252802521:43938252803164 26077:26082 hsa_system_get_info(2, 0x7fe70000f0f8) = 0 -43938252803946:43938252804595 26077:26082 hsa_system_get_info(2, 0x7fe70000f100) = 0 -43938252805367:43938252806008 26077:26082 hsa_system_get_info(2, 0x7fe70000f108) = 0 -43938252806791:43938252807439 26077:26082 hsa_system_get_info(2, 0x7fe70000f110) = 0 -43938252808222:43938252808864 26077:26082 hsa_system_get_info(2, 0x7fe70000f118) = 0 -43938252809639:43938252810285 26077:26082 hsa_system_get_info(2, 0x7fe70000f120) = 0 -43938252811068:43938252811728 26077:26082 hsa_system_get_info(2, 0x7fe70000f128) = 0 -43938252812511:43938252813153 26077:26082 hsa_system_get_info(2, 0x7fe70000f130) = 0 -43938252813927:43938252814574 26077:26082 hsa_system_get_info(2, 0x7fe70000f138) = 0 -43938252815354:43938252816002 26077:26082 hsa_system_get_info(2, 0x7fe70000f140) = 0 -43938252817587:43938252818239 26077:26082 hsa_system_get_info(2, 0x7fe70000f148) = 0 -43938252819026:43938252819672 26077:26082 hsa_system_get_info(2, 0x7fe70000f150) = 0 -43938252820450:43938252821095 26077:26082 hsa_system_get_info(2, 0x7fe70000f158) = 0 -43938252821879:43938252822520 26077:26082 hsa_system_get_info(2, 0x7fe70000f160) = 0 -43938252823299:43938252823955 26077:26082 hsa_system_get_info(2, 0x7fe70000f168) = 0 -43938252824759:43938252825401 26077:26082 hsa_system_get_info(2, 0x7fe70000f170) = 0 -43938252826180:43938252826831 26077:26082 hsa_system_get_info(2, 0x7fe70000f178) = 0 -43938252827610:43938252828256 26077:26082 hsa_system_get_info(2, 0x7fe70000f180) = 0 -43938252829040:43938252829686 26077:26082 hsa_system_get_info(2, 0x7fe70000f188) = 0 -43938252830462:43938252831112 26077:26082 hsa_system_get_info(2, 0x7fe70000f190) = 0 -43938252831886:43938252832535 26077:26082 hsa_system_get_info(2, 0x7fe70000f198) = 0 -43938252833332:43938252833980 26077:26082 hsa_system_get_info(2, 0x7fe70000f1a0) = 0 -43938252834766:43938252835411 26077:26082 hsa_system_get_info(2, 0x7fe70000f1a8) = 0 -43938252836185:43938252836825 26077:26082 hsa_system_get_info(2, 0x7fe70000f1b0) = 0 -43938252837604:43938252838250 26077:26082 hsa_system_get_info(2, 0x7fe70000f1b8) = 0 -43938252839023:43938252839668 26077:26082 hsa_system_get_info(2, 0x7fe70000f1c0) = 0 -43938252840450:43938252841091 26077:26082 hsa_system_get_info(2, 0x7fe70000f1c8) = 0 -43938252841865:43938252842505 26077:26082 hsa_system_get_info(2, 0x7fe70000f1d0) = 0 -43938252843283:43938252843921 26077:26082 hsa_system_get_info(2, 0x7fe70000f1d8) = 0 -43938252844695:43938252845335 26077:26082 hsa_system_get_info(2, 0x7fe70000f1e0) = 0 -43938252846108:43938252846752 26077:26082 hsa_system_get_info(2, 0x7fe70000f1e8) = 0 -43938252847531:43938252848176 26077:26082 hsa_system_get_info(2, 0x7fe70000f1f0) = 0 -43938252848949:43938252849594 26077:26082 hsa_system_get_info(2, 0x7fe70000f1f8) = 0 -43938252850373:43938252851013 26077:26082 hsa_system_get_info(2, 0x7fe70000f200) = 0 -43938252851787:43938252852429 26077:26082 hsa_system_get_info(2, 0x7fe70000f208) = 0 -43938252853212:43938252853871 26077:26082 hsa_system_get_info(2, 0x7fe70000f210) = 0 -43938252854654:43938252855305 26077:26082 hsa_system_get_info(2, 0x7fe70000f218) = 0 -43938252856077:43938252856732 26077:26082 hsa_system_get_info(2, 0x7fe70000f220) = 0 -43938252858275:43938252858932 26077:26082 hsa_system_get_info(2, 0x7fe70000f228) = 0 -43938252859733:43938252860374 26077:26082 hsa_system_get_info(2, 0x7fe70000f230) = 0 -43938252861150:43938252861789 26077:26082 hsa_system_get_info(2, 0x7fe70000f238) = 0 -43938252862570:43938252863216 26077:26082 hsa_system_get_info(2, 0x7fe70000f240) = 0 -43938252863986:43938252864632 26077:26082 hsa_system_get_info(2, 0x7fe70000f248) = 0 -43938252865412:43938252866061 26077:26082 hsa_system_get_info(2, 0x7fe70000f250) = 0 -43938252866836:43938252867482 26077:26082 hsa_system_get_info(2, 0x7fe70000f258) = 0 -43938252868262:43938252868906 26077:26082 hsa_system_get_info(2, 0x7fe70000f260) = 0 -43938252869681:43938252870335 26077:26082 hsa_system_get_info(2, 0x7fe70000f268) = 0 -43938252871108:43938252871746 26077:26082 hsa_system_get_info(2, 0x7fe70000f270) = 0 -43938252872517:43938252873161 26077:26082 hsa_system_get_info(2, 0x7fe70000f278) = 0 -43938252873949:43938252874596 26077:26082 hsa_system_get_info(2, 0x7fe70000f280) = 0 -43938252875382:43938252876031 26077:26082 hsa_system_get_info(2, 0x7fe70000f288) = 0 -43938252876803:43938252877461 26077:26082 hsa_system_get_info(2, 0x7fe70000f290) = 0 -43938252878309:43938252878954 26077:26082 hsa_system_get_info(2, 0x7fe70000f298) = 0 -43938252879741:43938252880388 26077:26082 hsa_system_get_info(2, 0x7fe70000f2a0) = 0 -43938252881158:43938252881799 26077:26082 hsa_system_get_info(2, 0x7fe70000f2a8) = 0 -43938252882572:43938252883221 26077:26082 hsa_system_get_info(2, 0x7fe70000f2b0) = 0 -43938252884008:43938252884654 26077:26082 hsa_system_get_info(2, 0x7fe70000f2b8) = 0 -43938252885435:43938252886071 26077:26082 hsa_system_get_info(2, 0x7fe70000f2c0) = 0 -43938252886842:43938252887485 26077:26082 hsa_system_get_info(2, 0x7fe70000f2c8) = 0 -43938252888255:43938252888906 26077:26082 hsa_system_get_info(2, 0x7fe70000f2d0) = 0 -43938252889681:43938252890327 26077:26082 hsa_system_get_info(2, 0x7fe70000f2d8) = 0 -43938252891098:43938252891749 26077:26082 hsa_system_get_info(2, 0x7fe70000f2e0) = 0 -43938252892520:43938252893163 26077:26082 hsa_system_get_info(2, 0x7fe70000f2e8) = 0 -43938252893937:43938252894578 26077:26082 hsa_system_get_info(2, 0x7fe70000f2f0) = 0 -43938252895358:43938252896005 26077:26082 hsa_system_get_info(2, 0x7fe70000f2f8) = 0 -43938252896776:43938252897420 26077:26082 hsa_system_get_info(2, 0x7fe70000f300) = 0 -43938252898197:43938252898842 26077:26082 hsa_system_get_info(2, 0x7fe70000f308) = 0 -43938252901094:43938252901742 26077:26082 hsa_system_get_info(2, 0x7fe70000f310) = 0 -43938252902526:43938252903173 26077:26082 hsa_system_get_info(2, 0x7fe70000f318) = 0 -43938252903956:43938252904602 26077:26082 hsa_system_get_info(2, 0x7fe70000f320) = 0 -43938252905377:43938252906023 26077:26082 hsa_system_get_info(2, 0x7fe70000f328) = 0 -43938252906805:43938252907445 26077:26082 hsa_system_get_info(2, 0x7fe70000f330) = 0 -43938252908217:43938252908861 26077:26082 hsa_system_get_info(2, 0x7fe70000f338) = 0 -43938252909637:43938252910281 26077:26082 hsa_system_get_info(2, 0x7fe70000f340) = 0 -43938252911052:43938252911699 26077:26082 hsa_system_get_info(2, 0x7fe70000f348) = 0 -43938252912480:43938252913122 26077:26082 hsa_system_get_info(2, 0x7fe70000f350) = 0 -43938252913893:43938252914531 26077:26082 hsa_system_get_info(2, 0x7fe70000f358) = 0 -43938252915308:43938252915951 26077:26082 hsa_system_get_info(2, 0x7fe70000f360) = 0 -43938252916742:43938252917384 26077:26082 hsa_system_get_info(2, 0x7fe70000f368) = 0 -43938252918162:43938252918807 26077:26082 hsa_system_get_info(2, 0x7fe70000f370) = 0 -43938252919581:43938252920225 26077:26082 hsa_system_get_info(2, 0x7fe70000f378) = 0 -43938252921006:43938252921651 26077:26082 hsa_system_get_info(2, 0x7fe70000f380) = 0 -43938252922421:43938252923063 26077:26082 hsa_system_get_info(2, 0x7fe70000f388) = 0 -43938252923836:43938252924489 26077:26082 hsa_system_get_info(2, 0x7fe70000f390) = 0 -43938252925327:43938252925974 26077:26082 hsa_system_get_info(2, 0x7fe70000f398) = 0 -43938252926807:43938252927451 26077:26082 hsa_system_get_info(2, 0x7fe70000f3a0) = 0 -43938252928276:43938252928916 26077:26082 hsa_system_get_info(2, 0x7fe70000f3a8) = 0 -43938252929746:43938252930388 26077:26082 hsa_system_get_info(2, 0x7fe70000f3b0) = 0 -43938252931161:43938252931809 26077:26082 hsa_system_get_info(2, 0x7fe70000f3b8) = 0 -43938252932583:43938252933223 26077:26082 hsa_system_get_info(2, 0x7fe70000f3c0) = 0 -43938252933993:43938252934640 26077:26082 hsa_system_get_info(2, 0x7fe70000f3c8) = 0 -43938252935441:43938252936083 26077:26082 hsa_system_get_info(2, 0x7fe70000f3d0) = 0 -43938252936861:43938252937505 26077:26082 hsa_system_get_info(2, 0x7fe70000f3d8) = 0 -43938252938279:43938252938918 26077:26082 hsa_system_get_info(2, 0x7fe70000f3e0) = 0 -43938252939698:43938252940343 26077:26082 hsa_system_get_info(2, 0x7fe70000f3e8) = 0 -43938252941998:43938252942639 26077:26082 hsa_system_get_info(2, 0x7fe70000f3f0) = 0 -43938252943422:43938252944065 26077:26082 hsa_system_get_info(2, 0x7fe70000f3f8) = 0 -43938252944839:43938252945482 26077:26082 hsa_system_get_info(2, 0x7fe70000f400) = 0 -43938252946260:43938252946902 26077:26082 hsa_system_get_info(2, 0x7fe70000f408) = 0 -43938252947673:43938252948318 26077:26082 hsa_system_get_info(2, 0x7fe70000f410) = 0 -43938252949100:43938252949745 26077:26082 hsa_system_get_info(2, 0x7fe70000f418) = 0 -43938252950521:43938252951165 26077:26082 hsa_system_get_info(2, 0x7fe70000f420) = 0 -43938252951946:43938252952590 26077:26082 hsa_system_get_info(2, 0x7fe70000f428) = 0 -43938252953362:43938252953999 26077:26082 hsa_system_get_info(2, 0x7fe70000f430) = 0 -43938252954773:43938252955413 26077:26082 hsa_system_get_info(2, 0x7fe70000f438) = 0 -43938252956195:43938252956839 26077:26082 hsa_system_get_info(2, 0x7fe70000f440) = 0 -43938252957632:43938252958276 26077:26082 hsa_system_get_info(2, 0x7fe70000f448) = 0 -43938252959052:43938252959706 26077:26082 hsa_system_get_info(2, 0x7fe70000f450) = 0 -43938252960491:43938252961127 26077:26082 hsa_system_get_info(2, 0x7fe70000f458) = 0 -43938252961898:43938252962549 26077:26082 hsa_system_get_info(2, 0x7fe70000f460) = 0 -43938252963320:43938252963965 26077:26082 hsa_system_get_info(2, 0x7fe70000f468) = 0 -43938252964749:43938252965392 26077:26082 hsa_system_get_info(2, 0x7fe70000f470) = 0 -43938252966168:43938252966813 26077:26082 hsa_system_get_info(2, 0x7fe70000f478) = 0 -43938252967597:43938252968241 26077:26082 hsa_system_get_info(2, 0x7fe70000f480) = 0 -43938252969017:43938252969662 26077:26082 hsa_system_get_info(2, 0x7fe70000f488) = 0 -43938252970446:43938252971090 26077:26082 hsa_system_get_info(2, 0x7fe70000f490) = 0 -43938252971864:43938252972514 26077:26082 hsa_system_get_info(2, 0x7fe70000f498) = 0 -43938252973286:43938252973923 26077:26082 hsa_system_get_info(2, 0x7fe70000f4a0) = 0 -43938252974698:43938252975338 26077:26082 hsa_system_get_info(2, 0x7fe70000f4a8) = 0 -43938252976120:43938252976758 26077:26082 hsa_system_get_info(2, 0x7fe70000f4b0) = 0 -43938252977536:43938252978178 26077:26082 hsa_system_get_info(2, 0x7fe70000f4b8) = 0 -43938252978946:43938252979588 26077:26082 hsa_system_get_info(2, 0x7fe70000f4c0) = 0 -43938252980385:43938252981038 26077:26082 hsa_system_get_info(2, 0x7fe70000f4c8) = 0 -43938252981840:43938252982487 26077:26082 hsa_system_get_info(2, 0x7fe70000f4d0) = 0 -43938252984014:43938252984660 26077:26082 hsa_system_get_info(2, 0x7fe70000f4d8) = 0 -43938252985440:43938252986080 26077:26082 hsa_system_get_info(2, 0x7fe70000f4e0) = 0 -43938252986856:43938252987501 26077:26082 hsa_system_get_info(2, 0x7fe70000f4e8) = 0 -43938252988283:43938252988926 26077:26082 hsa_system_get_info(2, 0x7fe70000f4f0) = 0 -43938252989700:43938252990342 26077:26082 hsa_system_get_info(2, 0x7fe70000f4f8) = 0 -43938252991127:43938252991768 26077:26082 hsa_system_get_info(2, 0x7fe70000f500) = 0 -43938252992547:43938252993192 26077:26082 hsa_system_get_info(2, 0x7fe70000f508) = 0 -43938252993971:43938252994615 26077:26082 hsa_system_get_info(2, 0x7fe70000f510) = 0 -43938252995393:43938252996038 26077:26082 hsa_system_get_info(2, 0x7fe70000f518) = 0 -43938252996821:43938252997465 26077:26082 hsa_system_get_info(2, 0x7fe70000f520) = 0 -43938252998254:43938252998899 26077:26082 hsa_system_get_info(2, 0x7fe70000f528) = 0 -43938252999705:43938253000344 26077:26082 hsa_system_get_info(2, 0x7fe70000f530) = 0 -43938253001119:43938253001771 26077:26082 hsa_system_get_info(2, 0x7fe70000f538) = 0 -43938253002556:43938253003213 26077:26082 hsa_system_get_info(2, 0x7fe70000f540) = 0 -43938253003991:43938253004638 26077:26082 hsa_system_get_info(2, 0x7fe70000f548) = 0 -43938253005420:43938253006064 26077:26082 hsa_system_get_info(2, 0x7fe70000f550) = 0 -43938253006839:43938253007480 26077:26082 hsa_system_get_info(2, 0x7fe70000f558) = 0 -43938253008264:43938253008913 26077:26082 hsa_system_get_info(2, 0x7fe70000f560) = 0 -43938253009714:43938253010356 26077:26082 hsa_system_get_info(2, 0x7fe70000f568) = 0 -43938253011140:43938253011788 26077:26082 hsa_system_get_info(2, 0x7fe70000f570) = 0 -43938253012564:43938253013220 26077:26082 hsa_system_get_info(2, 0x7fe70000f578) = 0 -43938253013994:43938253014636 26077:26082 hsa_system_get_info(2, 0x7fe70000f580) = 0 -43938253015425:43938253016067 26077:26082 hsa_system_get_info(2, 0x7fe70000f588) = 0 -43938253016838:43938253017480 26077:26082 hsa_system_get_info(2, 0x7fe70000f590) = 0 -43938253018259:43938253018900 26077:26082 hsa_system_get_info(2, 0x7fe70000f598) = 0 -43938253019671:43938253020310 26077:26082 hsa_system_get_info(2, 0x7fe70000f5a0) = 0 -43938253021085:43938253021724 26077:26082 hsa_system_get_info(2, 0x7fe70000f5a8) = 0 -43938253022506:43938253023142 26077:26082 hsa_system_get_info(2, 0x7fe70000f5b0) = 0 -43938253024668:43938253025311 26077:26082 hsa_system_get_info(2, 0x7fe70000f5b8) = 0 -43938253026088:43938253026732 26077:26082 hsa_system_get_info(2, 0x7fe70000f5c0) = 0 -43938253027514:43938253028160 26077:26082 hsa_system_get_info(2, 0x7fe70000f5c8) = 0 -43938253028933:43938253029575 26077:26082 hsa_system_get_info(2, 0x7fe70000f5d0) = 0 -43938253030359:43938253031004 26077:26082 hsa_system_get_info(2, 0x7fe70000f5d8) = 0 -43938253031794:43938253032443 26077:26082 hsa_system_get_info(2, 0x7fe70000f5e0) = 0 -43938253033218:43938253033870 26077:26082 hsa_system_get_info(2, 0x7fe70000f5e8) = 0 -43938253034644:43938253035286 26077:26082 hsa_system_get_info(2, 0x7fe70000f5f0) = 0 -43938253036060:43938253036712 26077:26082 hsa_system_get_info(2, 0x7fe70000f5f8) = 0 -43938253037486:43938253038135 26077:26082 hsa_system_get_info(2, 0x7fe70000f600) = 0 -43938253038913:43938253039558 26077:26082 hsa_system_get_info(2, 0x7fe70000f608) = 0 -43938253040337:43938253040982 26077:26082 hsa_system_get_info(2, 0x7fe70000f610) = 0 -43938253041766:43938253042420 26077:26082 hsa_system_get_info(2, 0x7fe70000f618) = 0 -43938253043201:43938253043845 26077:26082 hsa_system_get_info(2, 0x7fe70000f620) = 0 -43938253044620:43938253045263 26077:26082 hsa_system_get_info(2, 0x7fe70000f628) = 0 -43938253046044:43938253046693 26077:26082 hsa_system_get_info(2, 0x7fe70000f630) = 0 -43938253047467:43938253048124 26077:26082 hsa_system_get_info(2, 0x7fe70000f638) = 0 -43938253048895:43938253049543 26077:26082 hsa_system_get_info(2, 0x7fe70000f640) = 0 -43938253050322:43938253050965 26077:26082 hsa_system_get_info(2, 0x7fe70000f648) = 0 -43938253051736:43938253052382 26077:26082 hsa_system_get_info(2, 0x7fe70000f650) = 0 -43938253053161:43938253053800 26077:26082 hsa_system_get_info(2, 0x7fe70000f658) = 0 -43938253054573:43938253055224 26077:26082 hsa_system_get_info(2, 0x7fe70000f660) = 0 -43938253056009:43938253056659 26077:26082 hsa_system_get_info(2, 0x7fe70000f668) = 0 -43938253057432:43938253058088 26077:26082 hsa_system_get_info(2, 0x7fe70000f670) = 0 -43938253058863:43938253059505 26077:26082 hsa_system_get_info(2, 0x7fe70000f678) = 0 -43938253060284:43938253060925 26077:26082 hsa_system_get_info(2, 0x7fe70000f680) = 0 -43938253061708:43938253062350 26077:26082 hsa_system_get_info(2, 0x7fe70000f688) = 0 -43938253063129:43938253063771 26077:26082 hsa_system_get_info(2, 0x7fe70000f690) = 0 -43938253065274:43938253065918 26077:26082 hsa_system_get_info(2, 0x7fe70000f698) = 0 -43938253066711:43938253067353 26077:26082 hsa_system_get_info(2, 0x7fe70000f6a0) = 0 -43938253068133:43938253068780 26077:26082 hsa_system_get_info(2, 0x7fe70000f6a8) = 0 -43938253069553:43938253070195 26077:26082 hsa_system_get_info(2, 0x7fe70000f6b0) = 0 -43938253070974:43938253071622 26077:26082 hsa_system_get_info(2, 0x7fe70000f6b8) = 0 -43938253072396:43938253073037 26077:26082 hsa_system_get_info(2, 0x7fe70000f6c0) = 0 -43938253073818:43938253074462 26077:26082 hsa_system_get_info(2, 0x7fe70000f6c8) = 0 -43938253075235:43938253075880 26077:26082 hsa_system_get_info(2, 0x7fe70000f6d0) = 0 -43938253076663:43938253077308 26077:26082 hsa_system_get_info(2, 0x7fe70000f6d8) = 0 -43938253078080:43938253078723 26077:26082 hsa_system_get_info(2, 0x7fe70000f6e0) = 0 -43938253079504:43938253080150 26077:26082 hsa_system_get_info(2, 0x7fe70000f6e8) = 0 -43938253080936:43938253081576 26077:26082 hsa_system_get_info(2, 0x7fe70000f6f0) = 0 -43938253082353:43938253083000 26077:26082 hsa_system_get_info(2, 0x7fe70000f6f8) = 0 -43938253083782:43938253084425 26077:26082 hsa_system_get_info(2, 0x7fe70000f700) = 0 -43938253085220:43938253085863 26077:26082 hsa_system_get_info(2, 0x7fe70000f708) = 0 -43938253086638:43938253087284 26077:26082 hsa_system_get_info(2, 0x7fe70000f710) = 0 -43938253088067:43938253088713 26077:26082 hsa_system_get_info(2, 0x7fe70000f718) = 0 -43938253089485:43938253090140 26077:26082 hsa_system_get_info(2, 0x7fe70000f720) = 0 -43938253090914:43938253091565 26077:26082 hsa_system_get_info(2, 0x7fe70000f728) = 0 -43938253092344:43938253092993 26077:26082 hsa_system_get_info(2, 0x7fe70000f730) = 0 -43938253093767:43938253094439 26077:26082 hsa_system_get_info(2, 0x7fe70000f738) = 0 -43938253095212:43938253095866 26077:26082 hsa_system_get_info(2, 0x7fe70000f740) = 0 -43938253096642:43938253097288 26077:26082 hsa_system_get_info(2, 0x7fe70000f748) = 0 -43938253098070:43938253098714 26077:26082 hsa_system_get_info(2, 0x7fe70000f750) = 0 -43938253099487:43938253100130 26077:26082 hsa_system_get_info(2, 0x7fe70000f758) = 0 -43938253100910:43938253101554 26077:26082 hsa_system_get_info(2, 0x7fe70000f760) = 0 -43938253102331:43938253102979 26077:26082 hsa_system_get_info(2, 0x7fe70000f768) = 0 -43938253103764:43938253104411 26077:26082 hsa_system_get_info(2, 0x7fe70000f770) = 0 -43938253105196:43938253105841 26077:26082 hsa_system_get_info(2, 0x7fe70000f778) = 0 -43938253107354:43938253107996 26077:26082 hsa_system_get_info(2, 0x7fe70000f780) = 0 -43938253108768:43938253109414 26077:26082 hsa_system_get_info(2, 0x7fe70000f788) = 0 -43938253110198:43938253110841 26077:26082 hsa_system_get_info(2, 0x7fe70000f790) = 0 -43938253111613:43938253112256 26077:26082 hsa_system_get_info(2, 0x7fe70000f798) = 0 -43938253113038:43938253113682 26077:26082 hsa_system_get_info(2, 0x7fe70000f7a0) = 0 -43938253114454:43938253115093 26077:26082 hsa_system_get_info(2, 0x7fe70000f7a8) = 0 -43938253115876:43938253116520 26077:26082 hsa_system_get_info(2, 0x7fe70000f7b0) = 0 -43938253117295:43938253117941 26077:26082 hsa_system_get_info(2, 0x7fe70000f7b8) = 0 -43938253118728:43938253119372 26077:26082 hsa_system_get_info(2, 0x7fe70000f7c0) = 0 -43938253120142:43938253120781 26077:26082 hsa_system_get_info(2, 0x7fe70000f7c8) = 0 -43938253121563:43938253122205 26077:26082 hsa_system_get_info(2, 0x7fe70000f7d0) = 0 -43938253122978:43938253123619 26077:26082 hsa_system_get_info(2, 0x7fe70000f7d8) = 0 -43938253124404:43938253125044 26077:26082 hsa_system_get_info(2, 0x7fe70000f7e0) = 0 -43938253125816:43938253126472 26077:26082 hsa_system_get_info(2, 0x7fe70000f7e8) = 0 -43938253127257:43938253127893 26077:26082 hsa_system_get_info(2, 0x7fe70000f7f0) = 0 -43938253128663:43938253129308 26077:26082 hsa_system_get_info(2, 0x7fe70000f7f8) = 0 -43938253130092:43938253130736 26077:26082 hsa_system_get_info(2, 0x7fe70000f800) = 0 -43938253131507:43938253132153 26077:26082 hsa_system_get_info(2, 0x7fe70000f808) = 0 -43938253132937:43938253133577 26077:26082 hsa_system_get_info(2, 0x7fe70000f810) = 0 -43938253134349:43938253134990 26077:26082 hsa_system_get_info(2, 0x7fe70000f818) = 0 -43938253135775:43938253136422 26077:26082 hsa_system_get_info(2, 0x7fe70000f820) = 0 -43938253137194:43938253137834 26077:26082 hsa_system_get_info(2, 0x7fe70000f828) = 0 -43938253138616:43938253139258 26077:26082 hsa_system_get_info(2, 0x7fe70000f830) = 0 -43938253140033:43938253140679 26077:26082 hsa_system_get_info(2, 0x7fe70000f838) = 0 -43938253141459:43938253142104 26077:26082 hsa_system_get_info(2, 0x7fe70000f840) = 0 -43938253142903:43938253143547 26077:26082 hsa_system_get_info(2, 0x7fe70000f848) = 0 -43938253144321:43938253144974 26077:26082 hsa_system_get_info(2, 0x7fe70000f850) = 0 -43938253145751:43938253146389 26077:26082 hsa_system_get_info(2, 0x7fe70000f858) = 0 -43938253147962:43938253148619 26077:26082 hsa_system_get_info(2, 0x7fe70000f860) = 0 -43938253149393:43938253150041 26077:26082 hsa_system_get_info(2, 0x7fe70000f868) = 0 -43938253150824:43938253151466 26077:26082 hsa_system_get_info(2, 0x7fe70000f870) = 0 -43938253152242:43938253152881 26077:26082 hsa_system_get_info(2, 0x7fe70000f878) = 0 -43938253153663:43938253154310 26077:26082 hsa_system_get_info(2, 0x7fe70000f880) = 0 -43938253155086:43938253155725 26077:26082 hsa_system_get_info(2, 0x7fe70000f888) = 0 -43938253156507:43938253157147 26077:26082 hsa_system_get_info(2, 0x7fe70000f890) = 0 -43938253157923:43938253158570 26077:26082 hsa_system_get_info(2, 0x7fe70000f898) = 0 -43938253159362:43938253160005 26077:26082 hsa_system_get_info(2, 0x7fe70000f8a0) = 0 -43938253160787:43938253161432 26077:26082 hsa_system_get_info(2, 0x7fe70000f8a8) = 0 -43938253162211:43938253162851 26077:26082 hsa_system_get_info(2, 0x7fe70000f8b0) = 0 -43938253163643:43938253164287 26077:26082 hsa_system_get_info(2, 0x7fe70000f8b8) = 0 -43938253165073:43938253165717 26077:26082 hsa_system_get_info(2, 0x7fe70000f8c0) = 0 -43938253166489:43938253167133 26077:26082 hsa_system_get_info(2, 0x7fe70000f8c8) = 0 -43938253167915:43938253168558 26077:26082 hsa_system_get_info(2, 0x7fe70000f8d0) = 0 -43938253169332:43938253169975 26077:26082 hsa_system_get_info(2, 0x7fe70000f8d8) = 0 -43938253170757:43938253171404 26077:26082 hsa_system_get_info(2, 0x7fe70000f8e0) = 0 -43938253172187:43938253172834 26077:26082 hsa_system_get_info(2, 0x7fe70000f8e8) = 0 -43938253173608:43938253174250 26077:26082 hsa_system_get_info(2, 0x7fe70000f8f0) = 0 -43938253175031:43938253175660 26077:26082 hsa_system_get_info(2, 0x7fe70000f8f8) = 0 -43938253176438:43938253177088 26077:26082 hsa_system_get_info(2, 0x7fe70000f900) = 0 -43938253177881:43938253178521 26077:26082 hsa_system_get_info(2, 0x7fe70000f908) = 0 -43938253179292:43938253179930 26077:26082 hsa_system_get_info(2, 0x7fe70000f910) = 0 -43938253180716:43938253181362 26077:26082 hsa_system_get_info(2, 0x7fe70000f918) = 0 -43938253182137:43938253182781 26077:26082 hsa_system_get_info(2, 0x7fe70000f920) = 0 -43938253183564:43938253184214 26077:26082 hsa_system_get_info(2, 0x7fe70000f928) = 0 -43938253184997:43938253185644 26077:26082 hsa_system_get_info(2, 0x7fe70000f930) = 0 -43938253186418:43938253187059 26077:26082 hsa_system_get_info(2, 0x7fe70000f938) = 0 -43938253187836:43938253188468 26077:26082 hsa_system_get_info(2, 0x7fe70000f940) = 0 -43938253189981:43938253190627 26077:26082 hsa_system_get_info(2, 0x7fe70000f948) = 0 -43938253191410:43938253192056 26077:26082 hsa_system_get_info(2, 0x7fe70000f950) = 0 -43938253192827:43938253193469 26077:26082 hsa_system_get_info(2, 0x7fe70000f958) = 0 -43938253194258:43938253194904 26077:26082 hsa_system_get_info(2, 0x7fe70000f960) = 0 -43938253195687:43938253196327 26077:26082 hsa_system_get_info(2, 0x7fe70000f968) = 0 -43938253197102:43938253197743 26077:26082 hsa_system_get_info(2, 0x7fe70000f970) = 0 -43938253198538:43938253199180 26077:26082 hsa_system_get_info(2, 0x7fe70000f978) = 0 -43938253199977:43938253200616 26077:26082 hsa_system_get_info(2, 0x7fe70000f980) = 0 -43938253201393:43938253202036 26077:26082 hsa_system_get_info(2, 0x7fe70000f988) = 0 -43938253202818:43938253203459 26077:26082 hsa_system_get_info(2, 0x7fe70000f990) = 0 -43938253204230:43938253204874 26077:26082 hsa_system_get_info(2, 0x7fe70000f998) = 0 -43938253205654:43938253206305 26077:26082 hsa_system_get_info(2, 0x7fe70000f9a0) = 0 -43938253207088:43938253207736 26077:26082 hsa_system_get_info(2, 0x7fe70000f9a8) = 0 -43938253208518:43938253209172 26077:26082 hsa_system_get_info(2, 0x7fe70000f9b0) = 0 -43938253209951:43938253210593 26077:26082 hsa_system_get_info(2, 0x7fe70000f9b8) = 0 -43938253211377:43938253212025 26077:26082 hsa_system_get_info(2, 0x7fe70000f9c0) = 0 -43938253212799:43938253213441 26077:26082 hsa_system_get_info(2, 0x7fe70000f9c8) = 0 -43938253214223:43938253214873 26077:26082 hsa_system_get_info(2, 0x7fe70000f9d0) = 0 -43938253215654:43938253216303 26077:26082 hsa_system_get_info(2, 0x7fe70000f9d8) = 0 -43938253217078:43938253217724 26077:26082 hsa_system_get_info(2, 0x7fe70000f9e0) = 0 -43938253218517:43938253219164 26077:26082 hsa_system_get_info(2, 0x7fe70000f9e8) = 0 -43938253219947:43938253220589 26077:26082 hsa_system_get_info(2, 0x7fe70000f9f0) = 0 -43938253221384:43938253222029 26077:26082 hsa_system_get_info(2, 0x7fe70000f9f8) = 0 -43938253222802:43938253223444 26077:26082 hsa_system_get_info(2, 0x7fe70000fa00) = 0 -43938253224221:43938253224864 26077:26082 hsa_system_get_info(2, 0x7fe70000fa08) = 0 -43938253225638:43938253226279 26077:26082 hsa_system_get_info(2, 0x7fe70000fa10) = 0 -43938253227062:43938253227706 26077:26082 hsa_system_get_info(2, 0x7fe70000fa18) = 0 -43938253228480:43938253229128 26077:26082 hsa_system_get_info(2, 0x7fe70000fa20) = 0 -43938253230635:43938253231278 26077:26082 hsa_system_get_info(2, 0x7fe70000fa28) = 0 -43938253232062:43938253232704 26077:26082 hsa_system_get_info(2, 0x7fe70000fa30) = 0 -43938253233476:43938253234121 26077:26082 hsa_system_get_info(2, 0x7fe70000fa38) = 0 -43938253234905:43938253235553 26077:26082 hsa_system_get_info(2, 0x7fe70000fa40) = 0 -43938253236328:43938253236972 26077:26082 hsa_system_get_info(2, 0x7fe70000fa48) = 0 -43938253237770:43938253238415 26077:26082 hsa_system_get_info(2, 0x7fe70000fa50) = 0 -43938253239197:43938253239840 26077:26082 hsa_system_get_info(2, 0x7fe70000fa58) = 0 -43938253240613:43938253241255 26077:26082 hsa_system_get_info(2, 0x7fe70000fa60) = 0 -43938253242038:43938253242680 26077:26082 hsa_system_get_info(2, 0x7fe70000fa68) = 0 -43938253243455:43938253244100 26077:26082 hsa_system_get_info(2, 0x7fe70000fa70) = 0 -43938253244883:43938253245532 26077:26082 hsa_system_get_info(2, 0x7fe70000fa78) = 0 -43938253246328:43938253246967 26077:26082 hsa_system_get_info(2, 0x7fe70000fa80) = 0 -43938253247755:43938253248394 26077:26082 hsa_system_get_info(2, 0x7fe70000fa88) = 0 -43938253249165:43938253249809 26077:26082 hsa_system_get_info(2, 0x7fe70000fa90) = 0 -43938253250595:43938253251235 26077:26082 hsa_system_get_info(2, 0x7fe70000fa98) = 0 -43938253252007:43938253252653 26077:26082 hsa_system_get_info(2, 0x7fe70000faa0) = 0 -43938253253435:43938253254065 26077:26082 hsa_system_get_info(2, 0x7fe70000faa8) = 0 -43938253254845:43938253255486 26077:26082 hsa_system_get_info(2, 0x7fe70000fab0) = 0 -43938253256259:43938253256901 26077:26082 hsa_system_get_info(2, 0x7fe70000fab8) = 0 -43938253257687:43938253258327 26077:26082 hsa_system_get_info(2, 0x7fe70000fac0) = 0 -43938253259102:43938253259749 26077:26082 hsa_system_get_info(2, 0x7fe70000fac8) = 0 -43938253260529:43938253261164 26077:26082 hsa_system_get_info(2, 0x7fe70000fad0) = 0 -43938253261933:43938253262579 26077:26082 hsa_system_get_info(2, 0x7fe70000fad8) = 0 -43938253263360:43938253264004 26077:26082 hsa_system_get_info(2, 0x7fe70000fae0) = 0 -43938253264782:43938253265425 26077:26082 hsa_system_get_info(2, 0x7fe70000fae8) = 0 -43938253266221:43938253266865 26077:26082 hsa_system_get_info(2, 0x7fe70000faf0) = 0 -43938253267646:43938253268292 26077:26082 hsa_system_get_info(2, 0x7fe70000faf8) = 0 -43938253269066:43938253269710 26077:26082 hsa_system_get_info(2, 0x7fe70000fb00) = 0 -43938253270490:43938253271131 26077:26082 hsa_system_get_info(2, 0x7fe70000fb08) = 0 -43938253272631:43938253273275 26077:26082 hsa_system_get_info(2, 0x7fe70000fb10) = 0 -43938253274055:43938253274699 26077:26082 hsa_system_get_info(2, 0x7fe70000fb18) = 0 -43938253275475:43938253276127 26077:26082 hsa_system_get_info(2, 0x7fe70000fb20) = 0 -43938253276900:43938253277546 26077:26082 hsa_system_get_info(2, 0x7fe70000fb28) = 0 -43938253278331:43938253278975 26077:26082 hsa_system_get_info(2, 0x7fe70000fb30) = 0 -43938253279753:43938253280395 26077:26082 hsa_system_get_info(2, 0x7fe70000fb38) = 0 -43938253281176:43938253281820 26077:26082 hsa_system_get_info(2, 0x7fe70000fb40) = 0 -43938253282597:43938253283240 26077:26082 hsa_system_get_info(2, 0x7fe70000fb48) = 0 -43938253284018:43938253284660 26077:26082 hsa_system_get_info(2, 0x7fe70000fb50) = 0 -43938253285439:43938253286083 26077:26082 hsa_system_get_info(2, 0x7fe70000fb58) = 0 -43938253286873:43938253287518 26077:26082 hsa_system_get_info(2, 0x7fe70000fb60) = 0 -43938253288303:43938253288950 26077:26082 hsa_system_get_info(2, 0x7fe70000fb68) = 0 -43938253289737:43938253290381 26077:26082 hsa_system_get_info(2, 0x7fe70000fb70) = 0 -43938253291156:43938253291800 26077:26082 hsa_system_get_info(2, 0x7fe70000fb78) = 0 -43938253292596:43938253293240 26077:26082 hsa_system_get_info(2, 0x7fe70000fb80) = 0 -43938253294037:43938253294682 26077:26082 hsa_system_get_info(2, 0x7fe70000fb88) = 0 -43938253295467:43938253296110 26077:26082 hsa_system_get_info(2, 0x7fe70000fb90) = 0 -43938253296891:43938253297550 26077:26082 hsa_system_get_info(2, 0x7fe70000fb98) = 0 -43938253298325:43938253298981 26077:26082 hsa_system_get_info(2, 0x7fe70000fba0) = 0 -43938253299762:43938253300408 26077:26082 hsa_system_get_info(2, 0x7fe70000fba8) = 0 -43938253301195:43938253301844 26077:26082 hsa_system_get_info(2, 0x7fe70000fbb0) = 0 -43938253302624:43938253303268 26077:26082 hsa_system_get_info(2, 0x7fe70000fbb8) = 0 -43938253304042:43938253304687 26077:26082 hsa_system_get_info(2, 0x7fe70000fbc0) = 0 -43938253305468:43938253306110 26077:26082 hsa_system_get_info(2, 0x7fe70000fbc8) = 0 -43938253306908:43938253307551 26077:26082 hsa_system_get_info(2, 0x7fe70000fbd0) = 0 -43938253308322:43938253308967 26077:26082 hsa_system_get_info(2, 0x7fe70000fbd8) = 0 -43938253309751:43938253310397 26077:26082 hsa_system_get_info(2, 0x7fe70000fbe0) = 0 -43938253311173:43938253311815 26077:26082 hsa_system_get_info(2, 0x7fe70000fbe8) = 0 -43938253313330:43938253313977 26077:26082 hsa_system_get_info(2, 0x7fe70000fbf0) = 0 -43938253314761:43938253315406 26077:26082 hsa_system_get_info(2, 0x7fe70000fbf8) = 0 -43938253316179:43938253316816 26077:26082 hsa_system_get_info(2, 0x7fe70000fc00) = 0 -43938253317593:43938253318235 26077:26082 hsa_system_get_info(2, 0x7fe70000fc08) = 0 -43938253319009:43938253319649 26077:26082 hsa_system_get_info(2, 0x7fe70000fc10) = 0 -43938253320422:43938253321064 26077:26082 hsa_system_get_info(2, 0x7fe70000fc18) = 0 -43938253321846:43938253322490 26077:26082 hsa_system_get_info(2, 0x7fe70000fc20) = 0 -43938253323265:43938253323915 26077:26082 hsa_system_get_info(2, 0x7fe70000fc28) = 0 -43938253324693:43938253325335 26077:26082 hsa_system_get_info(2, 0x7fe70000fc30) = 0 -43938253326120:43938253326769 26077:26082 hsa_system_get_info(2, 0x7fe70000fc38) = 0 -43938253327543:43938253328200 26077:26082 hsa_system_get_info(2, 0x7fe70000fc40) = 0 -43938253328974:43938253329617 26077:26082 hsa_system_get_info(2, 0x7fe70000fc48) = 0 -43938253330405:43938253331047 26077:26082 hsa_system_get_info(2, 0x7fe70000fc50) = 0 -43938253331819:43938253332486 26077:26082 hsa_system_get_info(2, 0x7fe70000fc58) = 0 -43938253333258:43938253333895 26077:26082 hsa_system_get_info(2, 0x7fe70000fc60) = 0 -43938253334668:43938253335324 26077:26082 hsa_system_get_info(2, 0x7fe70000fc68) = 0 -43938253336103:43938253336743 26077:26082 hsa_system_get_info(2, 0x7fe70000fc70) = 0 -43938253337524:43938253338165 26077:26082 hsa_system_get_info(2, 0x7fe70000fc78) = 0 -43938253338938:43938253339586 26077:26082 hsa_system_get_info(2, 0x7fe70000fc80) = 0 -43938253340367:43938253341015 26077:26082 hsa_system_get_info(2, 0x7fe70000fc88) = 0 -43938253341787:43938253342426 26077:26082 hsa_system_get_info(2, 0x7fe70000fc90) = 0 -43938253343206:43938253343847 26077:26082 hsa_system_get_info(2, 0x7fe70000fc98) = 0 -43938253344623:43938253345269 26077:26082 hsa_system_get_info(2, 0x7fe70000fca0) = 0 -43938253346052:43938253346696 26077:26082 hsa_system_get_info(2, 0x7fe70000fca8) = 0 -43938253347473:43938253348120 26077:26082 hsa_system_get_info(2, 0x7fe70000fcb0) = 0 -43938253348900:43938253349540 26077:26082 hsa_system_get_info(2, 0x7fe70000fcb8) = 0 -43938253350312:43938253350958 26077:26082 hsa_system_get_info(2, 0x7fe70000fcc0) = 0 -43938253351739:43938253352394 26077:26082 hsa_system_get_info(2, 0x7fe70000fcc8) = 0 -43938253353175:43938253353814 26077:26082 hsa_system_get_info(2, 0x7fe70000fcd0) = 0 -43938253355319:43938253355976 26077:26082 hsa_system_get_info(2, 0x7fe70000fcd8) = 0 -43938253356754:43938253357398 26077:26082 hsa_system_get_info(2, 0x7fe70000fce0) = 0 -43938253358179:43938253358820 26077:26082 hsa_system_get_info(2, 0x7fe70000fce8) = 0 -43938253359594:43938253360240 26077:26082 hsa_system_get_info(2, 0x7fe70000fcf0) = 0 -43938253361020:43938253361662 26077:26082 hsa_system_get_info(2, 0x7fe70000fcf8) = 0 -43938253362438:43938253363081 26077:26082 hsa_system_get_info(2, 0x7fe70000fd00) = 0 -43938253363862:43938253364503 26077:26082 hsa_system_get_info(2, 0x7fe70000fd08) = 0 -43938253365276:43938253365919 26077:26082 hsa_system_get_info(2, 0x7fe70000fd10) = 0 -43938253366702:43938253367345 26077:26082 hsa_system_get_info(2, 0x7fe70000fd18) = 0 -43938253368116:43938253368759 26077:26082 hsa_system_get_info(2, 0x7fe70000fd20) = 0 -43938253369561:43938253370206 26077:26082 hsa_system_get_info(2, 0x7fe70000fd28) = 0 -43938253371005:43938253371665 26077:26082 hsa_system_get_info(2, 0x7fe70000fd30) = 0 -43938253372435:43938253373084 26077:26082 hsa_system_get_info(2, 0x7fe70000fd38) = 0 -43938253373865:43938253374510 26077:26082 hsa_system_get_info(2, 0x7fe70000fd40) = 0 -43938253375285:43938253375934 26077:26082 hsa_system_get_info(2, 0x7fe70000fd48) = 0 -43938253376719:43938253377360 26077:26082 hsa_system_get_info(2, 0x7fe70000fd50) = 0 -43938253378137:43938253378789 26077:26082 hsa_system_get_info(2, 0x7fe70000fd58) = 0 -43938253379564:43938253380205 26077:26082 hsa_system_get_info(2, 0x7fe70000fd60) = 0 -43938253380978:43938253381629 26077:26082 hsa_system_get_info(2, 0x7fe70000fd68) = 0 -43938253382405:43938253383047 26077:26082 hsa_system_get_info(2, 0x7fe70000fd70) = 0 -43938253383818:43938253384471 26077:26082 hsa_system_get_info(2, 0x7fe70000fd78) = 0 -43938253385247:43938253385895 26077:26082 hsa_system_get_info(2, 0x7fe70000fd80) = 0 -43938253386680:43938253387326 26077:26082 hsa_system_get_info(2, 0x7fe70000fd88) = 0 -43938253388098:43938253388759 26077:26082 hsa_system_get_info(2, 0x7fe70000fd90) = 0 -43938253389531:43938253390177 26077:26082 hsa_system_get_info(2, 0x7fe70000fd98) = 0 -43938253390970:43938253391617 26077:26082 hsa_system_get_info(2, 0x7fe70000fda0) = 0 -43938253392401:43938253393045 26077:26082 hsa_system_get_info(2, 0x7fe70000fda8) = 0 -43938253393822:43938253394460 26077:26082 hsa_system_get_info(2, 0x7fe70000fdb0) = 0 -43938253395977:43938253396626 26077:26082 hsa_system_get_info(2, 0x7fe70000fdb8) = 0 -43938253397405:43938253398051 26077:26082 hsa_system_get_info(2, 0x7fe70000fdc0) = 0 -43938253398825:43938253399481 26077:26082 hsa_system_get_info(2, 0x7fe70000fdc8) = 0 -43938253400255:43938253400898 26077:26082 hsa_system_get_info(2, 0x7fe70000fdd0) = 0 -43938253401681:43938253402321 26077:26082 hsa_system_get_info(2, 0x7fe70000fdd8) = 0 -43938253403096:43938253403744 26077:26082 hsa_system_get_info(2, 0x7fe70000fde0) = 0 -43938253404542:43938253405189 26077:26082 hsa_system_get_info(2, 0x7fe70000fde8) = 0 -43938253405970:43938253406615 26077:26082 hsa_system_get_info(2, 0x7fe70000fdf0) = 0 -43938253407385:43938253408021 26077:26082 hsa_system_get_info(2, 0x7fe70000fdf8) = 0 -43938253408793:43938253409434 26077:26082 hsa_system_get_info(2, 0x7fe70000fe00) = 0 -43938253410213:43938253410858 26077:26082 hsa_system_get_info(2, 0x7fe70000fe08) = 0 -43938253411637:43938253412286 26077:26082 hsa_system_get_info(2, 0x7fe70000fe10) = 0 -43938253413066:43938253413709 26077:26082 hsa_system_get_info(2, 0x7fe70000fe18) = 0 -43938253414493:43938253415138 26077:26082 hsa_system_get_info(2, 0x7fe70000fe20) = 0 -43938253415914:43938253416559 26077:26082 hsa_system_get_info(2, 0x7fe70000fe28) = 0 -43938253417338:43938253417981 26077:26082 hsa_system_get_info(2, 0x7fe70000fe30) = 0 -43938253418757:43938253419397 26077:26082 hsa_system_get_info(2, 0x7fe70000fe38) = 0 -43938253420173:43938253420814 26077:26082 hsa_system_get_info(2, 0x7fe70000fe40) = 0 -43938253421586:43938253422228 26077:26082 hsa_system_get_info(2, 0x7fe70000fe48) = 0 -43938253423013:43938253423659 26077:26082 hsa_system_get_info(2, 0x7fe70000fe50) = 0 -43938253424442:43938253425084 26077:26082 hsa_system_get_info(2, 0x7fe70000fe58) = 0 -43938253425865:43938253426505 26077:26082 hsa_system_get_info(2, 0x7fe70000fe60) = 0 -43938253427278:43938253427923 26077:26082 hsa_system_get_info(2, 0x7fe70000fe68) = 0 -43938253428702:43938253429362 26077:26082 hsa_system_get_info(2, 0x7fe70000fe70) = 0 -43938253430143:43938253430789 26077:26082 hsa_system_get_info(2, 0x7fe70000fe78) = 0 -43938253431564:43938253432208 26077:26082 hsa_system_get_info(2, 0x7fe70000fe80) = 0 -43938253432988:43938253433633 26077:26082 hsa_system_get_info(2, 0x7fe70000fe88) = 0 -43938253434405:43938253435050 26077:26082 hsa_system_get_info(2, 0x7fe70000fe90) = 0 -43938253436590:43938253437237 26077:26082 hsa_system_get_info(2, 0x7fe70000fe98) = 0 -43938253438009:43938253438648 26077:26082 hsa_system_get_info(2, 0x7fe70000fea0) = 0 -43938253439424:43938253440067 26077:26082 hsa_system_get_info(2, 0x7fe70000fea8) = 0 -43938253440844:43938253441493 26077:26082 hsa_system_get_info(2, 0x7fe70000feb0) = 0 -43938253442273:43938253442916 26077:26082 hsa_system_get_info(2, 0x7fe70000feb8) = 0 -43938253443690:43938253444346 26077:26082 hsa_system_get_info(2, 0x7fe70000fec0) = 0 -43938253445121:43938253445766 26077:26082 hsa_system_get_info(2, 0x7fe70000fec8) = 0 -43938253446536:43938253447187 26077:26082 hsa_system_get_info(2, 0x7fe70000fed0) = 0 -43938253447965:43938253448612 26077:26082 hsa_system_get_info(2, 0x7fe70000fed8) = 0 -43938253449394:43938253450041 26077:26082 hsa_system_get_info(2, 0x7fe70000fee0) = 0 -43938253450817:43938253451471 26077:26082 hsa_system_get_info(2, 0x7fe70000fee8) = 0 -43938253452248:43938253452893 26077:26082 hsa_system_get_info(2, 0x7fe70000fef0) = 0 -43938253453680:43938253454320 26077:26082 hsa_system_get_info(2, 0x7fe70000fef8) = 0 -43938253455116:43938253455761 26077:26082 hsa_system_get_info(2, 0x7fe70000ff00) = 0 -43938253456533:43938253457175 26077:26082 hsa_system_get_info(2, 0x7fe70000ff08) = 0 -43938253457961:43938253458607 26077:26082 hsa_system_get_info(2, 0x7fe70000ff10) = 0 -43938253459393:43938253460043 26077:26082 hsa_system_get_info(2, 0x7fe70000ff18) = 0 -43938253460819:43938253461465 26077:26082 hsa_system_get_info(2, 0x7fe70000ff20) = 0 -43938253462252:43938253462895 26077:26082 hsa_system_get_info(2, 0x7fe70000ff28) = 0 -43938253463667:43938253464305 26077:26082 hsa_system_get_info(2, 0x7fe70000ff30) = 0 -43938253465086:43938253465729 26077:26082 hsa_system_get_info(2, 0x7fe70000ff38) = 0 -43938253466501:43938253467142 26077:26082 hsa_system_get_info(2, 0x7fe70000ff40) = 0 -43938253467923:43938253468564 26077:26082 hsa_system_get_info(2, 0x7fe70000ff48) = 0 -43938253469336:43938253469981 26077:26082 hsa_system_get_info(2, 0x7fe70000ff50) = 0 -43938253470766:43938253471408 26077:26082 hsa_system_get_info(2, 0x7fe70000ff58) = 0 -43938253472183:43938253472827 26077:26082 hsa_system_get_info(2, 0x7fe70000ff60) = 0 -43938253473613:43938253474269 26077:26082 hsa_system_get_info(2, 0x7fe70000ff68) = 0 -43938253475056:43938253475703 26077:26082 hsa_system_get_info(2, 0x7fe70000ff70) = 0 -43938253476487:43938253477138 26077:26082 hsa_system_get_info(2, 0x7fe70000ff78) = 0 -43938253479395:43938253480054 26077:26082 hsa_system_get_info(2, 0x7fe70000ff80) = 0 -43938253480829:43938253481472 26077:26082 hsa_system_get_info(2, 0x7fe70000ff88) = 0 -43938253482253:43938253482899 26077:26082 hsa_system_get_info(2, 0x7fe70000ff90) = 0 -43938253483673:43938253484318 26077:26082 hsa_system_get_info(2, 0x7fe70000ff98) = 0 -43938253485101:43938253485743 26077:26082 hsa_system_get_info(2, 0x7fe70000ffa0) = 0 -43938253486516:43938253487174 26077:26082 hsa_system_get_info(2, 0x7fe70000ffa8) = 0 -43938253487951:43938253488599 26077:26082 hsa_system_get_info(2, 0x7fe70000ffb0) = 0 -43938253489386:43938253490035 26077:26082 hsa_system_get_info(2, 0x7fe70000ffb8) = 0 -43938253490817:43938253491457 26077:26082 hsa_system_get_info(2, 0x7fe70000ffc0) = 0 -43938253492231:43938253492868 26077:26082 hsa_system_get_info(2, 0x7fe70000ffc8) = 0 -43938253493639:43938253494301 26077:26082 hsa_system_get_info(2, 0x7fe70000ffd0) = 0 -43938253495073:43938253495721 26077:26082 hsa_system_get_info(2, 0x7fe70000ffd8) = 0 -43938253496506:43938253497154 26077:26082 hsa_system_get_info(2, 0x7fe70000ffe0) = 0 -43938253497938:43938253498585 26077:26082 hsa_system_get_info(2, 0x7fe70000ffe8) = 0 -43938253499384:43938253500025 26077:26082 hsa_system_get_info(2, 0x7fe70000fff0) = 0 -43938253500804:43938253501445 26077:26082 hsa_system_get_info(2, 0x7fe70000fff8) = 0 -43938253502229:43938253502873 26077:26082 hsa_system_get_info(2, 0x7fe700010000) = 0 -43938253503644:43938253504288 26077:26082 hsa_system_get_info(2, 0x7fe700010008) = 0 -43938253505081:43938253505723 26077:26082 hsa_system_get_info(2, 0x7fe700010010) = 0 -43938253506502:43938253507148 26077:26082 hsa_system_get_info(2, 0x7fe700010018) = 0 -43938253507919:43938253508561 26077:26082 hsa_system_get_info(2, 0x7fe700010020) = 0 -43938253509344:43938253509988 26077:26082 hsa_system_get_info(2, 0x7fe700010028) = 0 -43938253510766:43938253511407 26077:26082 hsa_system_get_info(2, 0x7fe700010030) = 0 -43938253512189:43938253512832 26077:26082 hsa_system_get_info(2, 0x7fe700010038) = 0 -43938253513605:43938253514248 26077:26082 hsa_system_get_info(2, 0x7fe700010040) = 0 -43938253515033:43938253515677 26077:26082 hsa_system_get_info(2, 0x7fe700010048) = 0 -43938253516449:43938253517088 26077:26082 hsa_system_get_info(2, 0x7fe700010050) = 0 -43938253517870:43938253518516 26077:26082 hsa_system_get_info(2, 0x7fe700010058) = 0 -43938253520041:43938253520680 26077:26082 hsa_system_get_info(2, 0x7fe700010060) = 0 -43938253521454:43938253522098 26077:26082 hsa_system_get_info(2, 0x7fe700010068) = 0 -43938253522878:43938253523518 26077:26082 hsa_system_get_info(2, 0x7fe700010070) = 0 -43938253524296:43938253524939 26077:26082 hsa_system_get_info(2, 0x7fe700010078) = 0 -43938253525723:43938253526374 26077:26082 hsa_system_get_info(2, 0x7fe700010080) = 0 -43938253527159:43938253527799 26077:26082 hsa_system_get_info(2, 0x7fe700010088) = 0 -43938253528574:43938253529212 26077:26082 hsa_system_get_info(2, 0x7fe700010090) = 0 -43938253529993:43938253530642 26077:26082 hsa_system_get_info(2, 0x7fe700010098) = 0 -43938253531443:43938253532085 26077:26082 hsa_system_get_info(2, 0x7fe7000100a0) = 0 -43938253532859:43938253533503 26077:26082 hsa_system_get_info(2, 0x7fe7000100a8) = 0 -43938253534302:43938253534939 26077:26082 hsa_system_get_info(2, 0x7fe7000100b0) = 0 -43938253535721:43938253536363 26077:26082 hsa_system_get_info(2, 0x7fe7000100b8) = 0 -43938253537141:43938253537785 26077:26082 hsa_system_get_info(2, 0x7fe7000100c0) = 0 -43938253538567:43938253539210 26077:26082 hsa_system_get_info(2, 0x7fe7000100c8) = 0 -43938253539984:43938253540627 26077:26082 hsa_system_get_info(2, 0x7fe7000100d0) = 0 -43938253541408:43938253542050 26077:26082 hsa_system_get_info(2, 0x7fe7000100d8) = 0 -43938253542823:43938253543467 26077:26082 hsa_system_get_info(2, 0x7fe7000100e0) = 0 -43938253544244:43938253544883 26077:26082 hsa_system_get_info(2, 0x7fe7000100e8) = 0 -43938253545656:43938253546303 26077:26082 hsa_system_get_info(2, 0x7fe7000100f0) = 0 -43938253547086:43938253547727 26077:26082 hsa_system_get_info(2, 0x7fe7000100f8) = 0 -43938253548505:43938253549165 26077:26082 hsa_system_get_info(2, 0x7fe700010100) = 0 -43938253549943:43938253550589 26077:26082 hsa_system_get_info(2, 0x7fe700010108) = 0 -43938253551371:43938253552018 26077:26082 hsa_system_get_info(2, 0x7fe700010110) = 0 -43938253552796:43938253553452 26077:26082 hsa_system_get_info(2, 0x7fe700010118) = 0 -43938253554250:43938253554892 26077:26082 hsa_system_get_info(2, 0x7fe700010120) = 0 -43938253555666:43938253556310 26077:26082 hsa_system_get_info(2, 0x7fe700010128) = 0 -43938253557093:43938253557739 26077:26082 hsa_system_get_info(2, 0x7fe700010130) = 0 -43938253558512:43938253559157 26077:26082 hsa_system_get_info(2, 0x7fe700010138) = 0 -43938253559940:43938253560586 26077:26082 hsa_system_get_info(2, 0x7fe700010140) = 0 -43938253562100:43938253562747 26077:26082 hsa_system_get_info(2, 0x7fe700010148) = 0 -43938253563518:43938253564162 26077:26082 hsa_system_get_info(2, 0x7fe700010150) = 0 -43938253564949:43938253565594 26077:26082 hsa_system_get_info(2, 0x7fe700010158) = 0 -43938253566363:43938253567004 26077:26082 hsa_system_get_info(2, 0x7fe700010160) = 0 -43938253567787:43938253568428 26077:26082 hsa_system_get_info(2, 0x7fe700010168) = 0 -43938253569201:43938253569842 26077:26082 hsa_system_get_info(2, 0x7fe700010170) = 0 -43938253570624:43938253571264 26077:26082 hsa_system_get_info(2, 0x7fe700010178) = 0 -43938253572042:43938253572683 26077:26082 hsa_system_get_info(2, 0x7fe700010180) = 0 -43938253573461:43938253574103 26077:26082 hsa_system_get_info(2, 0x7fe700010188) = 0 -43938253574880:43938253575521 26077:26082 hsa_system_get_info(2, 0x7fe700010190) = 0 -43938253576314:43938253576960 26077:26082 hsa_system_get_info(2, 0x7fe700010198) = 0 -43938253577745:43938253578389 26077:26082 hsa_system_get_info(2, 0x7fe7000101a0) = 0 -43938253579169:43938253579812 26077:26082 hsa_system_get_info(2, 0x7fe7000101a8) = 0 -43938253580596:43938253581239 26077:26082 hsa_system_get_info(2, 0x7fe7000101b0) = 0 -43938253582013:43938253582652 26077:26082 hsa_system_get_info(2, 0x7fe7000101b8) = 0 -43938253583435:43938253584078 26077:26082 hsa_system_get_info(2, 0x7fe7000101c0) = 0 -43938253584855:43938253585493 26077:26082 hsa_system_get_info(2, 0x7fe7000101c8) = 0 -43938253586271:43938253586918 26077:26082 hsa_system_get_info(2, 0x7fe7000101d0) = 0 -43938253587695:43938253588334 26077:26082 hsa_system_get_info(2, 0x7fe7000101d8) = 0 -43938253589115:43938253589756 26077:26082 hsa_system_get_info(2, 0x7fe7000101e0) = 0 -43938253590532:43938253591173 26077:26082 hsa_system_get_info(2, 0x7fe7000101e8) = 0 -43938253591952:43938253592594 26077:26082 hsa_system_get_info(2, 0x7fe7000101f0) = 0 -43938253593365:43938253594002 26077:26082 hsa_system_get_info(2, 0x7fe7000101f8) = 0 -43938253594779:43938253595432 26077:26082 hsa_system_get_info(2, 0x7fe700010200) = 0 -43938253596216:43938253596860 26077:26082 hsa_system_get_info(2, 0x7fe700010208) = 0 -43938253597638:43938253598278 26077:26082 hsa_system_get_info(2, 0x7fe700010210) = 0 -43938253599054:43938253599693 26077:26082 hsa_system_get_info(2, 0x7fe700010218) = 0 -43938253600474:43938253601117 26077:26082 hsa_system_get_info(2, 0x7fe700010220) = 0 -43938253602649:43938253603289 26077:26082 hsa_system_get_info(2, 0x7fe700010228) = 0 -43938253604066:43938253604717 26077:26082 hsa_system_get_info(2, 0x7fe700010230) = 0 -43938253605491:43938253606135 26077:26082 hsa_system_get_info(2, 0x7fe700010238) = 0 -43938253606907:43938253607564 26077:26082 hsa_system_get_info(2, 0x7fe700010240) = 0 -43938253608340:43938253608979 26077:26082 hsa_system_get_info(2, 0x7fe700010248) = 0 -43938253609761:43938253610403 26077:26082 hsa_system_get_info(2, 0x7fe700010250) = 0 -43938253611189:43938253611830 26077:26082 hsa_system_get_info(2, 0x7fe700010258) = 0 -43938253612612:43938253613250 26077:26082 hsa_system_get_info(2, 0x7fe700010260) = 0 -43938253614024:43938253614669 26077:26082 hsa_system_get_info(2, 0x7fe700010268) = 0 -43938253615453:43938253616097 26077:26082 hsa_system_get_info(2, 0x7fe700010270) = 0 -43938253616871:43938253617511 26077:26082 hsa_system_get_info(2, 0x7fe700010278) = 0 -43938253618297:43938253618944 26077:26082 hsa_system_get_info(2, 0x7fe700010280) = 0 -43938253619731:43938253620373 26077:26082 hsa_system_get_info(2, 0x7fe700010288) = 0 -43938253621144:43938253621786 26077:26082 hsa_system_get_info(2, 0x7fe700010290) = 0 -43938253622567:43938253623210 26077:26082 hsa_system_get_info(2, 0x7fe700010298) = 0 -43938253623983:43938253624628 26077:26082 hsa_system_get_info(2, 0x7fe7000102a0) = 0 -43938253625412:43938253626056 26077:26082 hsa_system_get_info(2, 0x7fe7000102a8) = 0 -43938253626831:43938253627474 26077:26082 hsa_system_get_info(2, 0x7fe7000102b0) = 0 -43938253628256:43938253628902 26077:26082 hsa_system_get_info(2, 0x7fe7000102b8) = 0 -43938253629674:43938253630321 26077:26082 hsa_system_get_info(2, 0x7fe7000102c0) = 0 -43938253631114:43938253631759 26077:26082 hsa_system_get_info(2, 0x7fe7000102c8) = 0 -43938253632540:43938253633182 26077:26082 hsa_system_get_info(2, 0x7fe7000102d0) = 0 -43938253633955:43938253634597 26077:26082 hsa_system_get_info(2, 0x7fe7000102d8) = 0 -43938253635389:43938253636034 26077:26082 hsa_system_get_info(2, 0x7fe7000102e0) = 0 -43938253636815:43938253637457 26077:26082 hsa_system_get_info(2, 0x7fe7000102e8) = 0 -43938253638234:43938253638877 26077:26082 hsa_system_get_info(2, 0x7fe7000102f0) = 0 -43938253639663:43938253640307 26077:26082 hsa_system_get_info(2, 0x7fe7000102f8) = 0 -43938253641084:43938253641739 26077:26082 hsa_system_get_info(2, 0x7fe700010300) = 0 -43938253642514:43938253643156 26077:26082 hsa_system_get_info(2, 0x7fe700010308) = 0 -43938253645625:43938253646290 26077:26082 hsa_system_get_info(2, 0x7fe700010310) = 0 -43938253647071:43938253647713 26077:26082 hsa_system_get_info(2, 0x7fe700010318) = 0 -43938253648486:43938253649128 26077:26082 hsa_system_get_info(2, 0x7fe700010320) = 0 -43938253649912:43938253650555 26077:26082 hsa_system_get_info(2, 0x7fe700010328) = 0 -43938253651326:43938253651971 26077:26082 hsa_system_get_info(2, 0x7fe700010330) = 0 -43938253652755:43938253653402 26077:26082 hsa_system_get_info(2, 0x7fe700010338) = 0 -43938253654189:43938253654842 26077:26082 hsa_system_get_info(2, 0x7fe700010340) = 0 -43938253655614:43938253656271 26077:26082 hsa_system_get_info(2, 0x7fe700010348) = 0 -43938253657044:43938253657694 26077:26082 hsa_system_get_info(2, 0x7fe700010350) = 0 -43938253658475:43938253659122 26077:26082 hsa_system_get_info(2, 0x7fe700010358) = 0 -43938253659909:43938253660559 26077:26082 hsa_system_get_info(2, 0x7fe700010360) = 0 -43938253661334:43938253661991 26077:26082 hsa_system_get_info(2, 0x7fe700010368) = 0 -43938253662780:43938253663436 26077:26082 hsa_system_get_info(2, 0x7fe700010370) = 0 -43938253664209:43938253664854 26077:26082 hsa_system_get_info(2, 0x7fe700010378) = 0 -43938253665633:43938253666276 26077:26082 hsa_system_get_info(2, 0x7fe700010380) = 0 -43938253667049:43938253667686 26077:26082 hsa_system_get_info(2, 0x7fe700010388) = 0 -43938253668455:43938253669095 26077:26082 hsa_system_get_info(2, 0x7fe700010390) = 0 -43938253669875:43938253670520 26077:26082 hsa_system_get_info(2, 0x7fe700010398) = 0 -43938253671294:43938253671938 26077:26082 hsa_system_get_info(2, 0x7fe7000103a0) = 0 -43938253672720:43938253673366 26077:26082 hsa_system_get_info(2, 0x7fe7000103a8) = 0 -43938253674143:43938253674788 26077:26082 hsa_system_get_info(2, 0x7fe7000103b0) = 0 -43938253675568:43938253676214 26077:26082 hsa_system_get_info(2, 0x7fe7000103b8) = 0 -43938253676998:43938253677640 26077:26082 hsa_system_get_info(2, 0x7fe7000103c0) = 0 -43938253678413:43938253679062 26077:26082 hsa_system_get_info(2, 0x7fe7000103c8) = 0 -43938253679845:43938253680485 26077:26082 hsa_system_get_info(2, 0x7fe7000103d0) = 0 -43938253681258:43938253681928 26077:26082 hsa_system_get_info(2, 0x7fe7000103d8) = 0 -43938253682703:43938253683343 26077:26082 hsa_system_get_info(2, 0x7fe7000103e0) = 0 -43938253684125:43938253684771 26077:26082 hsa_system_get_info(2, 0x7fe7000103e8) = 0 -43938253686298:43938253686944 26077:26082 hsa_system_get_info(2, 0x7fe7000103f0) = 0 -43938253687715:43938253688355 26077:26082 hsa_system_get_info(2, 0x7fe7000103f8) = 0 -43938253689131:43938253689782 26077:26082 hsa_system_get_info(2, 0x7fe700010400) = 0 -43938253690556:43938253691210 26077:26082 hsa_system_get_info(2, 0x7fe700010408) = 0 -43938253691986:43938253692633 26077:26082 hsa_system_get_info(2, 0x7fe700010410) = 0 -43938253693418:43938253694059 26077:26082 hsa_system_get_info(2, 0x7fe700010418) = 0 -43938253694834:43938253695472 26077:26082 hsa_system_get_info(2, 0x7fe700010420) = 0 -43938253696268:43938253696915 26077:26082 hsa_system_get_info(2, 0x7fe700010428) = 0 -43938253697695:43938253698337 26077:26082 hsa_system_get_info(2, 0x7fe700010430) = 0 -43938253699115:43938253699755 26077:26082 hsa_system_get_info(2, 0x7fe700010438) = 0 -43938253700536:43938253701178 26077:26082 hsa_system_get_info(2, 0x7fe700010440) = 0 -43938253701958:43938253702597 26077:26082 hsa_system_get_info(2, 0x7fe700010448) = 0 -43938253703385:43938253704030 26077:26082 hsa_system_get_info(2, 0x7fe700010450) = 0 -43938253704815:43938253705459 26077:26082 hsa_system_get_info(2, 0x7fe700010458) = 0 -43938253706232:43938253706881 26077:26082 hsa_system_get_info(2, 0x7fe700010460) = 0 -43938253707668:43938253708311 26077:26082 hsa_system_get_info(2, 0x7fe700010468) = 0 -43938253709087:43938253709736 26077:26082 hsa_system_get_info(2, 0x7fe700010470) = 0 -43938253710513:43938253711156 26077:26082 hsa_system_get_info(2, 0x7fe700010478) = 0 -43938253711928:43938253712569 26077:26082 hsa_system_get_info(2, 0x7fe700010480) = 0 -43938253713352:43938253713996 26077:26082 hsa_system_get_info(2, 0x7fe700010488) = 0 -43938253714782:43938253715443 26077:26082 hsa_system_get_info(2, 0x7fe700010490) = 0 -43938253716223:43938253716871 26077:26082 hsa_system_get_info(2, 0x7fe700010498) = 0 -43938253717644:43938253718290 26077:26082 hsa_system_get_info(2, 0x7fe7000104a0) = 0 -43938253719075:43938253719721 26077:26082 hsa_system_get_info(2, 0x7fe7000104a8) = 0 -43938253720506:43938253721156 26077:26082 hsa_system_get_info(2, 0x7fe7000104b0) = 0 -43938253721934:43938253722590 26077:26082 hsa_system_get_info(2, 0x7fe7000104b8) = 0 -43938253723363:43938253724009 26077:26082 hsa_system_get_info(2, 0x7fe7000104c0) = 0 -43938253724794:43938253725440 26077:26082 hsa_system_get_info(2, 0x7fe7000104c8) = 0 -43938253726227:43938253726876 26077:26082 hsa_system_get_info(2, 0x7fe7000104d0) = 0 -43938253728389:43938253729043 26077:26082 hsa_system_get_info(2, 0x7fe7000104d8) = 0 -43938253729815:43938253730456 26077:26082 hsa_system_get_info(2, 0x7fe7000104e0) = 0 -43938253731240:43938253731877 26077:26082 hsa_system_get_info(2, 0x7fe7000104e8) = 0 -43938253732649:43938253733291 26077:26082 hsa_system_get_info(2, 0x7fe7000104f0) = 0 -43938253734074:43938253734718 26077:26082 hsa_system_get_info(2, 0x7fe7000104f8) = 0 -43938253735489:43938253736127 26077:26082 hsa_system_get_info(2, 0x7fe700010500) = 0 -43938253736915:43938253737560 26077:26082 hsa_system_get_info(2, 0x7fe700010508) = 0 -43938253738343:43938253738997 26077:26082 hsa_system_get_info(2, 0x7fe700010510) = 0 -43938253739769:43938253740415 26077:26082 hsa_system_get_info(2, 0x7fe700010518) = 0 -43938253741198:43938253741844 26077:26082 hsa_system_get_info(2, 0x7fe700010520) = 0 -43938253742624:43938253743267 26077:26082 hsa_system_get_info(2, 0x7fe700010528) = 0 -43938253744063:43938253744706 26077:26082 hsa_system_get_info(2, 0x7fe700010530) = 0 -43938253745491:43938253746136 26077:26082 hsa_system_get_info(2, 0x7fe700010538) = 0 -43938253746922:43938253747560 26077:26082 hsa_system_get_info(2, 0x7fe700010540) = 0 -43938253748331:43938253748976 26077:26082 hsa_system_get_info(2, 0x7fe700010548) = 0 -43938253749764:43938253750406 26077:26082 hsa_system_get_info(2, 0x7fe700010550) = 0 -43938253751180:43938253751823 26077:26082 hsa_system_get_info(2, 0x7fe700010558) = 0 -43938253752606:43938253753246 26077:26082 hsa_system_get_info(2, 0x7fe700010560) = 0 -43938253754019:43938253754664 26077:26082 hsa_system_get_info(2, 0x7fe700010568) = 0 -43938253755450:43938253756091 26077:26082 hsa_system_get_info(2, 0x7fe700010570) = 0 -43938253756867:43938253757532 26077:26082 hsa_system_get_info(2, 0x7fe700010578) = 0 -43938253758308:43938253758952 26077:26082 hsa_system_get_info(2, 0x7fe700010580) = 0 -43938253759738:43938253760380 26077:26082 hsa_system_get_info(2, 0x7fe700010588) = 0 -43938253761158:43938253761813 26077:26082 hsa_system_get_info(2, 0x7fe700010590) = 0 -43938253762586:43938253763234 26077:26082 hsa_system_get_info(2, 0x7fe700010598) = 0 -43938253764033:43938253764678 26077:26082 hsa_system_get_info(2, 0x7fe7000105a0) = 0 -43938253765461:43938253766106 26077:26082 hsa_system_get_info(2, 0x7fe7000105a8) = 0 -43938253766893:43938253767538 26077:26082 hsa_system_get_info(2, 0x7fe7000105b0) = 0 -43938253769038:43938253769697 26077:26082 hsa_system_get_info(2, 0x7fe7000105b8) = 0 -43938253770471:43938253771113 26077:26082 hsa_system_get_info(2, 0x7fe7000105c0) = 0 -43938253771894:43938253772542 26077:26082 hsa_system_get_info(2, 0x7fe7000105c8) = 0 -43938253773324:43938253773976 26077:26082 hsa_system_get_info(2, 0x7fe7000105d0) = 0 -43938253774755:43938253775403 26077:26082 hsa_system_get_info(2, 0x7fe7000105d8) = 0 -43938253776183:43938253776827 26077:26082 hsa_system_get_info(2, 0x7fe7000105e0) = 0 -43938253777600:43938253778242 26077:26082 hsa_system_get_info(2, 0x7fe7000105e8) = 0 -43938253779024:43938253779663 26077:26082 hsa_system_get_info(2, 0x7fe7000105f0) = 0 -43938253780438:43938253781085 26077:26082 hsa_system_get_info(2, 0x7fe7000105f8) = 0 -43938253781867:43938253782510 26077:26082 hsa_system_get_info(2, 0x7fe700010600) = 0 -43938253783284:43938253783923 26077:26082 hsa_system_get_info(2, 0x7fe700010608) = 0 -43938253784708:43938253785351 26077:26082 hsa_system_get_info(2, 0x7fe700010610) = 0 -43938253786151:43938253786792 26077:26082 hsa_system_get_info(2, 0x7fe700010618) = 0 -43938253787565:43938253788207 26077:26082 hsa_system_get_info(2, 0x7fe700010620) = 0 -43938253788989:43938253789633 26077:26082 hsa_system_get_info(2, 0x7fe700010628) = 0 -43938253790407:43938253791051 26077:26082 hsa_system_get_info(2, 0x7fe700010630) = 0 -43938253791832:43938253792474 26077:26082 hsa_system_get_info(2, 0x7fe700010638) = 0 -43938253793247:43938253793892 26077:26082 hsa_system_get_info(2, 0x7fe700010640) = 0 -43938253794670:43938253795314 26077:26082 hsa_system_get_info(2, 0x7fe700010648) = 0 -43938253796089:43938253796731 26077:26082 hsa_system_get_info(2, 0x7fe700010650) = 0 -43938253797510:43938253798151 26077:26082 hsa_system_get_info(2, 0x7fe700010658) = 0 -43938253798924:43938253799566 26077:26082 hsa_system_get_info(2, 0x7fe700010660) = 0 -43938253800339:43938253800977 26077:26082 hsa_system_get_info(2, 0x7fe700010668) = 0 -43938253801754:43938253802398 26077:26082 hsa_system_get_info(2, 0x7fe700010670) = 0 -43938253803173:43938253803821 26077:26082 hsa_system_get_info(2, 0x7fe700010678) = 0 -43938253804600:43938253805253 26077:26082 hsa_system_get_info(2, 0x7fe700010680) = 0 -43938253806032:43938253806675 26077:26082 hsa_system_get_info(2, 0x7fe700010688) = 0 -43938253807448:43938253808092 26077:26082 hsa_system_get_info(2, 0x7fe700010690) = 0 -43938253809660:43938253810304 26077:26082 hsa_system_get_info(2, 0x7fe700010698) = 0 -43938253811086:43938253811728 26077:26082 hsa_system_get_info(2, 0x7fe7000106a0) = 0 -43938253812501:43938253813140 26077:26082 hsa_system_get_info(2, 0x7fe7000106a8) = 0 -43938253813922:43938253814570 26077:26082 hsa_system_get_info(2, 0x7fe7000106b0) = 0 -43938253815344:43938253816001 26077:26082 hsa_system_get_info(2, 0x7fe7000106b8) = 0 -43938253816776:43938253817422 26077:26082 hsa_system_get_info(2, 0x7fe7000106c0) = 0 -43938253818203:43938253818843 26077:26082 hsa_system_get_info(2, 0x7fe7000106c8) = 0 -43938253819616:43938253820259 26077:26082 hsa_system_get_info(2, 0x7fe7000106d0) = 0 -43938253821045:43938253821694 26077:26082 hsa_system_get_info(2, 0x7fe7000106d8) = 0 -43938253822467:43938253823127 26077:26082 hsa_system_get_info(2, 0x7fe7000106e0) = 0 -43938253823905:43938253824554 26077:26082 hsa_system_get_info(2, 0x7fe7000106e8) = 0 -43938253825353:43938253826004 26077:26082 hsa_system_get_info(2, 0x7fe7000106f0) = 0 -43938253826780:43938253827426 26077:26082 hsa_system_get_info(2, 0x7fe7000106f8) = 0 -43938253828209:43938253828855 26077:26082 hsa_system_get_info(2, 0x7fe700010700) = 0 -43938253829631:43938253830273 26077:26082 hsa_system_get_info(2, 0x7fe700010708) = 0 -43938253831055:43938253831695 26077:26082 hsa_system_get_info(2, 0x7fe700010710) = 0 -43938253832473:43938253833117 26077:26082 hsa_system_get_info(2, 0x7fe700010718) = 0 -43938253833898:43938253834538 26077:26082 hsa_system_get_info(2, 0x7fe700010720) = 0 -43938253835315:43938253835956 26077:26082 hsa_system_get_info(2, 0x7fe700010728) = 0 -43938253836734:43938253837376 26077:26082 hsa_system_get_info(2, 0x7fe700010730) = 0 -43938253838154:43938253838797 26077:26082 hsa_system_get_info(2, 0x7fe700010738) = 0 -43938253839580:43938253840224 26077:26082 hsa_system_get_info(2, 0x7fe700010740) = 0 -43938253841004:43938253841661 26077:26082 hsa_system_get_info(2, 0x7fe700010748) = 0 -43938253842434:43938253843075 26077:26082 hsa_system_get_info(2, 0x7fe700010750) = 0 -43938253843858:43938253844501 26077:26082 hsa_system_get_info(2, 0x7fe700010758) = 0 -43938253845276:43938253845941 26077:26082 hsa_system_get_info(2, 0x7fe700010760) = 0 -43938253846717:43938253847357 26077:26082 hsa_system_get_info(2, 0x7fe700010768) = 0 -43938253848138:43938253848781 26077:26082 hsa_system_get_info(2, 0x7fe700010770) = 0 -43938253849558:43938253850205 26077:26082 hsa_system_get_info(2, 0x7fe700010778) = 0 -43938253851861:43938253852519 26077:26082 hsa_system_get_info(2, 0x7fe700010780) = 0 -43938253853303:43938253853945 26077:26082 hsa_system_get_info(2, 0x7fe700010788) = 0 -43938253854718:43938253855361 26077:26082 hsa_system_get_info(2, 0x7fe700010790) = 0 -43938253856145:43938253856792 26077:26082 hsa_system_get_info(2, 0x7fe700010798) = 0 -43938253857565:43938253858213 26077:26082 hsa_system_get_info(2, 0x7fe7000107a0) = 0 -43938253858992:43938253859636 26077:26082 hsa_system_get_info(2, 0x7fe7000107a8) = 0 -43938253860412:43938253861063 26077:26082 hsa_system_get_info(2, 0x7fe7000107b0) = 0 -43938253861838:43938253862478 26077:26082 hsa_system_get_info(2, 0x7fe7000107b8) = 0 -43938253863276:43938253863919 26077:26082 hsa_system_get_info(2, 0x7fe7000107c0) = 0 -43938253864695:43938253865352 26077:26082 hsa_system_get_info(2, 0x7fe7000107c8) = 0 -43938253866126:43938253866773 26077:26082 hsa_system_get_info(2, 0x7fe7000107d0) = 0 -43938253867554:43938253868204 26077:26082 hsa_system_get_info(2, 0x7fe7000107d8) = 0 -43938253868980:43938253869637 26077:26082 hsa_system_get_info(2, 0x7fe7000107e0) = 0 -43938253870432:43938253871075 26077:26082 hsa_system_get_info(2, 0x7fe7000107e8) = 0 -43938253871845:43938253872492 26077:26082 hsa_system_get_info(2, 0x7fe7000107f0) = 0 -43938253873275:43938253873919 26077:26082 hsa_system_get_info(2, 0x7fe7000107f8) = 0 -43938253874695:43938253875341 26077:26082 hsa_system_get_info(2, 0x7fe700010800) = 0 -43938253876123:43938253876772 26077:26082 hsa_system_get_info(2, 0x7fe700010808) = 0 -43938253877545:43938253878185 26077:26082 hsa_system_get_info(2, 0x7fe700010810) = 0 -43938253878968:43938253879616 26077:26082 hsa_system_get_info(2, 0x7fe700010818) = 0 -43938253880398:43938253881043 26077:26082 hsa_system_get_info(2, 0x7fe700010820) = 0 -43938253881815:43938253882459 26077:26082 hsa_system_get_info(2, 0x7fe700010828) = 0 -43938253883239:43938253883888 26077:26082 hsa_system_get_info(2, 0x7fe700010830) = 0 -43938253884659:43938253885307 26077:26082 hsa_system_get_info(2, 0x7fe700010838) = 0 -43938253886089:43938253886734 26077:26082 hsa_system_get_info(2, 0x7fe700010840) = 0 -43938253887509:43938253888150 26077:26082 hsa_system_get_info(2, 0x7fe700010848) = 0 -43938253888933:43938253889591 26077:26082 hsa_system_get_info(2, 0x7fe700010850) = 0 -43938253890374:43938253891019 26077:26082 hsa_system_get_info(2, 0x7fe700010858) = 0 -43938253892538:43938253893191 26077:26082 hsa_system_get_info(2, 0x7fe700010860) = 0 -43938253893971:43938253894614 26077:26082 hsa_system_get_info(2, 0x7fe700010868) = 0 -43938253895388:43938253896031 26077:26082 hsa_system_get_info(2, 0x7fe700010870) = 0 -43938253896811:43938253897453 26077:26082 hsa_system_get_info(2, 0x7fe700010878) = 0 -43938253898228:43938253898871 26077:26082 hsa_system_get_info(2, 0x7fe700010880) = 0 -43938253899653:43938253900299 26077:26082 hsa_system_get_info(2, 0x7fe700010888) = 0 -43938253901072:43938253901717 26077:26082 hsa_system_get_info(2, 0x7fe700010890) = 0 -43938253902501:43938253903147 26077:26082 hsa_system_get_info(2, 0x7fe700010898) = 0 -43938253903939:43938253904581 26077:26082 hsa_system_get_info(2, 0x7fe7000108a0) = 0 -43938253905357:43938253906013 26077:26082 hsa_system_get_info(2, 0x7fe7000108a8) = 0 -43938253906786:43938253907431 26077:26082 hsa_system_get_info(2, 0x7fe7000108b0) = 0 -43938253908216:43938253908857 26077:26082 hsa_system_get_info(2, 0x7fe7000108b8) = 0 -43938253909635:43938253910274 26077:26082 hsa_system_get_info(2, 0x7fe7000108c0) = 0 -43938253911054:43938253911697 26077:26082 hsa_system_get_info(2, 0x7fe7000108c8) = 0 -43938253912470:43938253913111 26077:26082 hsa_system_get_info(2, 0x7fe7000108d0) = 0 -43938253913885:43938253914536 26077:26082 hsa_system_get_info(2, 0x7fe7000108d8) = 0 -43938253915308:43938253915954 26077:26082 hsa_system_get_info(2, 0x7fe7000108e0) = 0 -43938253916725:43938253917378 26077:26082 hsa_system_get_info(2, 0x7fe7000108e8) = 0 -43938253918156:43938253918801 26077:26082 hsa_system_get_info(2, 0x7fe7000108f0) = 0 -43938253919580:43938253920218 26077:26082 hsa_system_get_info(2, 0x7fe7000108f8) = 0 -43938253920988:43938253921630 26077:26082 hsa_system_get_info(2, 0x7fe700010900) = 0 -43938253922403:43938253923068 26077:26082 hsa_system_get_info(2, 0x7fe700010908) = 0 -43938253923844:43938253924500 26077:26082 hsa_system_get_info(2, 0x7fe700010910) = 0 -43938253925274:43938253925922 26077:26082 hsa_system_get_info(2, 0x7fe700010918) = 0 -43938253926702:43938253927348 26077:26082 hsa_system_get_info(2, 0x7fe700010920) = 0 -43938253928160:43938253928810 26077:26082 hsa_system_get_info(2, 0x7fe700010928) = 0 -43938253929607:43938253930248 26077:26082 hsa_system_get_info(2, 0x7fe700010930) = 0 -43938253931028:43938253931673 26077:26082 hsa_system_get_info(2, 0x7fe700010938) = 0 -43938253932444:43938253933088 26077:26082 hsa_system_get_info(2, 0x7fe700010940) = 0 -43938253934596:43938253935239 26077:26082 hsa_system_get_info(2, 0x7fe700010948) = 0 -43938253936015:43938253936668 26077:26082 hsa_system_get_info(2, 0x7fe700010950) = 0 -43938253937440:43938253938087 26077:26082 hsa_system_get_info(2, 0x7fe700010958) = 0 -43938253938880:43938253939528 26077:26082 hsa_system_get_info(2, 0x7fe700010960) = 0 -43938253940311:43938253940959 26077:26082 hsa_system_get_info(2, 0x7fe700010968) = 0 -43938253941736:43938253942392 26077:26082 hsa_system_get_info(2, 0x7fe700010970) = 0 -43938253943167:43938253943813 26077:26082 hsa_system_get_info(2, 0x7fe700010978) = 0 -43938253944581:43938253945233 26077:26082 hsa_system_get_info(2, 0x7fe700010980) = 0 -43938253946007:43938253946644 26077:26082 hsa_system_get_info(2, 0x7fe700010988) = 0 -43938253947421:43938253948073 26077:26082 hsa_system_get_info(2, 0x7fe700010990) = 0 -43938253948849:43938253949489 26077:26082 hsa_system_get_info(2, 0x7fe700010998) = 0 -43938253950265:43938253950924 26077:26082 hsa_system_get_info(2, 0x7fe7000109a0) = 0 -43938253951698:43938253952341 26077:26082 hsa_system_get_info(2, 0x7fe7000109a8) = 0 -43938253953127:43938253953784 26077:26082 hsa_system_get_info(2, 0x7fe7000109b0) = 0 -43938253954570:43938253955216 26077:26082 hsa_system_get_info(2, 0x7fe7000109b8) = 0 -43938253955999:43938253956643 26077:26082 hsa_system_get_info(2, 0x7fe7000109c0) = 0 -43938253957414:43938253958060 26077:26082 hsa_system_get_info(2, 0x7fe7000109c8) = 0 -43938253958840:43938253959485 26077:26082 hsa_system_get_info(2, 0x7fe7000109d0) = 0 -43938253960259:43938253960927 26077:26082 hsa_system_get_info(2, 0x7fe7000109d8) = 0 -43938253961701:43938253962339 26077:26082 hsa_system_get_info(2, 0x7fe7000109e0) = 0 -43938253963111:43938253963764 26077:26082 hsa_system_get_info(2, 0x7fe7000109e8) = 0 -43938253964539:43938253965182 26077:26082 hsa_system_get_info(2, 0x7fe7000109f0) = 0 -43938253965954:43938253966606 26077:26082 hsa_system_get_info(2, 0x7fe7000109f8) = 0 -43938253967381:43938253968026 26077:26082 hsa_system_get_info(2, 0x7fe700010a00) = 0 -43938253968814:43938253969456 26077:26082 hsa_system_get_info(2, 0x7fe700010a08) = 0 -43938253970231:43938253970872 26077:26082 hsa_system_get_info(2, 0x7fe700010a10) = 0 -43938253971653:43938253972299 26077:26082 hsa_system_get_info(2, 0x7fe700010a18) = 0 -43938253973075:43938253973716 26077:26082 hsa_system_get_info(2, 0x7fe700010a20) = 0 -43938253975227:43938253975874 26077:26082 hsa_system_get_info(2, 0x7fe700010a28) = 0 -43938253976658:43938253977299 26077:26082 hsa_system_get_info(2, 0x7fe700010a30) = 0 -43938253978071:43938253978712 26077:26082 hsa_system_get_info(2, 0x7fe700010a38) = 0 -43938253979481:43938253980132 26077:26082 hsa_system_get_info(2, 0x7fe700010a40) = 0 -43938253980902:43938253981545 26077:26082 hsa_system_get_info(2, 0x7fe700010a48) = 0 -43938253982322:43938253982975 26077:26082 hsa_system_get_info(2, 0x7fe700010a50) = 0 -43938253983751:43938253984393 26077:26082 hsa_system_get_info(2, 0x7fe700010a58) = 0 -43938253985166:43938253985804 26077:26082 hsa_system_get_info(2, 0x7fe700010a60) = 0 -43938253986601:43938253987247 26077:26082 hsa_system_get_info(2, 0x7fe700010a68) = 0 -43938253988030:43938253988670 26077:26082 hsa_system_get_info(2, 0x7fe700010a70) = 0 -43938253989446:43938253990098 26077:26082 hsa_system_get_info(2, 0x7fe700010a78) = 0 -43938253990880:43938253991519 26077:26082 hsa_system_get_info(2, 0x7fe700010a80) = 0 -43938253992304:43938253992949 26077:26082 hsa_system_get_info(2, 0x7fe700010a88) = 0 -43938253993726:43938253994372 26077:26082 hsa_system_get_info(2, 0x7fe700010a90) = 0 -43938253995150:43938253995794 26077:26082 hsa_system_get_info(2, 0x7fe700010a98) = 0 -43938253996569:43938253997213 26077:26082 hsa_system_get_info(2, 0x7fe700010aa0) = 0 -43938253997995:43938253998640 26077:26082 hsa_system_get_info(2, 0x7fe700010aa8) = 0 -43938253999423:43938254000071 26077:26082 hsa_system_get_info(2, 0x7fe700010ab0) = 0 -43938254000848:43938254001492 26077:26082 hsa_system_get_info(2, 0x7fe700010ab8) = 0 -43938254002272:43938254002915 26077:26082 hsa_system_get_info(2, 0x7fe700010ac0) = 0 -43938254003690:43938254004330 26077:26082 hsa_system_get_info(2, 0x7fe700010ac8) = 0 -43938254005112:43938254005767 26077:26082 hsa_system_get_info(2, 0x7fe700010ad0) = 0 -43938254006547:43938254007191 26077:26082 hsa_system_get_info(2, 0x7fe700010ad8) = 0 -43938254007965:43938254008610 26077:26082 hsa_system_get_info(2, 0x7fe700010ae0) = 0 -43938254009391:43938254010039 26077:26082 hsa_system_get_info(2, 0x7fe700010ae8) = 0 -43938254010814:43938254011470 26077:26082 hsa_system_get_info(2, 0x7fe700010af0) = 0 -43938254012244:43938254012888 26077:26082 hsa_system_get_info(2, 0x7fe700010af8) = 0 -43938254013659:43938254014317 26077:26082 hsa_system_get_info(2, 0x7fe700010b00) = 0 -43938254015088:43938254015734 26077:26082 hsa_system_get_info(2, 0x7fe700010b08) = 0 -43938254017246:43938254017891 26077:26082 hsa_system_get_info(2, 0x7fe700010b10) = 0 -43938254018674:43938254019314 26077:26082 hsa_system_get_info(2, 0x7fe700010b18) = 0 -43938254020091:43938254020734 26077:26082 hsa_system_get_info(2, 0x7fe700010b20) = 0 -43938254021506:43938254022160 26077:26082 hsa_system_get_info(2, 0x7fe700010b28) = 0 -43938254022937:43938254023582 26077:26082 hsa_system_get_info(2, 0x7fe700010b30) = 0 -43938254024366:43938254025011 26077:26082 hsa_system_get_info(2, 0x7fe700010b38) = 0 -43938254025808:43938254026451 26077:26082 hsa_system_get_info(2, 0x7fe700010b40) = 0 -43938254027225:43938254027868 26077:26082 hsa_system_get_info(2, 0x7fe700010b48) = 0 -43938254028650:43938254029293 26077:26082 hsa_system_get_info(2, 0x7fe700010b50) = 0 -43938254030068:43938254030712 26077:26082 hsa_system_get_info(2, 0x7fe700010b58) = 0 -43938254031499:43938254032140 26077:26082 hsa_system_get_info(2, 0x7fe700010b60) = 0 -43938254032922:43938254033567 26077:26082 hsa_system_get_info(2, 0x7fe700010b68) = 0 -43938254034341:43938254034983 26077:26082 hsa_system_get_info(2, 0x7fe700010b70) = 0 -43938254035765:43938254036408 26077:26082 hsa_system_get_info(2, 0x7fe700010b78) = 0 -43938254037181:43938254037824 26077:26082 hsa_system_get_info(2, 0x7fe700010b80) = 0 -43938254038607:43938254039251 26077:26082 hsa_system_get_info(2, 0x7fe700010b88) = 0 -43938254040025:43938254040672 26077:26082 hsa_system_get_info(2, 0x7fe700010b90) = 0 -43938254041456:43938254042109 26077:26082 hsa_system_get_info(2, 0x7fe700010b98) = 0 -43938254042890:43938254043535 26077:26082 hsa_system_get_info(2, 0x7fe700010ba0) = 0 -43938254044315:43938254044969 26077:26082 hsa_system_get_info(2, 0x7fe700010ba8) = 0 -43938254045755:43938254046395 26077:26082 hsa_system_get_info(2, 0x7fe700010bb0) = 0 -43938254047173:43938254047820 26077:26082 hsa_system_get_info(2, 0x7fe700010bb8) = 0 -43938254048596:43938254049242 26077:26082 hsa_system_get_info(2, 0x7fe700010bc0) = 0 -43938254050025:43938254050667 26077:26082 hsa_system_get_info(2, 0x7fe700010bc8) = 0 -43938254051441:43938254052081 26077:26082 hsa_system_get_info(2, 0x7fe700010bd0) = 0 -43938254052864:43938254053512 26077:26082 hsa_system_get_info(2, 0x7fe700010bd8) = 0 -43938254054294:43938254054943 26077:26082 hsa_system_get_info(2, 0x7fe700010be0) = 0 -43938254055719:43938254056363 26077:26082 hsa_system_get_info(2, 0x7fe700010be8) = 0 -43938254058482:43938254059137 26077:26082 hsa_system_get_info(2, 0x7fe700010bf0) = 0 -43938254059913:43938254060562 26077:26082 hsa_system_get_info(2, 0x7fe700010bf8) = 0 -43938254061343:43938254061987 26077:26082 hsa_system_get_info(2, 0x7fe700010c00) = 0 -43938254062760:43938254063404 26077:26082 hsa_system_get_info(2, 0x7fe700010c08) = 0 -43938254064184:43938254064822 26077:26082 hsa_system_get_info(2, 0x7fe700010c10) = 0 -43938254065595:43938254066244 26077:26082 hsa_system_get_info(2, 0x7fe700010c18) = 0 -43938254067026:43938254067674 26077:26082 hsa_system_get_info(2, 0x7fe700010c20) = 0 -43938254068450:43938254069104 26077:26082 hsa_system_get_info(2, 0x7fe700010c28) = 0 -43938254069879:43938254070527 26077:26082 hsa_system_get_info(2, 0x7fe700010c30) = 0 -43938254071308:43938254071955 26077:26082 hsa_system_get_info(2, 0x7fe700010c38) = 0 -43938254072745:43938254073391 26077:26082 hsa_system_get_info(2, 0x7fe700010c40) = 0 -43938254074168:43938254074807 26077:26082 hsa_system_get_info(2, 0x7fe700010c48) = 0 -43938254075591:43938254076234 26077:26082 hsa_system_get_info(2, 0x7fe700010c50) = 0 -43938254077007:43938254077655 26077:26082 hsa_system_get_info(2, 0x7fe700010c58) = 0 -43938254078435:43938254079079 26077:26082 hsa_system_get_info(2, 0x7fe700010c60) = 0 -43938254079852:43938254080499 26077:26082 hsa_system_get_info(2, 0x7fe700010c68) = 0 -43938254081280:43938254081921 26077:26082 hsa_system_get_info(2, 0x7fe700010c70) = 0 -43938254082693:43938254083336 26077:26082 hsa_system_get_info(2, 0x7fe700010c78) = 0 -43938254084115:43938254084760 26077:26082 hsa_system_get_info(2, 0x7fe700010c80) = 0 -43938254085535:43938254086176 26077:26082 hsa_system_get_info(2, 0x7fe700010c88) = 0 -43938254086957:43938254087604 26077:26082 hsa_system_get_info(2, 0x7fe700010c90) = 0 -43938254088380:43938254089022 26077:26082 hsa_system_get_info(2, 0x7fe700010c98) = 0 -43938254089802:43938254090446 26077:26082 hsa_system_get_info(2, 0x7fe700010ca0) = 0 -43938254091223:43938254091878 26077:26082 hsa_system_get_info(2, 0x7fe700010ca8) = 0 -43938254092653:43938254093320 26077:26082 hsa_system_get_info(2, 0x7fe700010cb0) = 0 -43938254094095:43938254094736 26077:26082 hsa_system_get_info(2, 0x7fe700010cb8) = 0 -43938254095518:43938254096150 26077:26082 hsa_system_get_info(2, 0x7fe700010cc0) = 0 -43938254096931:43938254097572 26077:26082 hsa_system_get_info(2, 0x7fe700010cc8) = 0 -43938254098360:43938254099005 26077:26082 hsa_system_get_info(2, 0x7fe700010cd0) = 0 -43938254100569:43938254101214 26077:26082 hsa_system_get_info(2, 0x7fe700010cd8) = 0 -43938254101993:43938254102634 26077:26082 hsa_system_get_info(2, 0x7fe700010ce0) = 0 -43938254103419:43938254104069 26077:26082 hsa_system_get_info(2, 0x7fe700010ce8) = 0 -43938254104850:43938254105501 26077:26082 hsa_system_get_info(2, 0x7fe700010cf0) = 0 -43938254106284:43938254106929 26077:26082 hsa_system_get_info(2, 0x7fe700010cf8) = 0 -43938254107703:43938254108347 26077:26082 hsa_system_get_info(2, 0x7fe700010d00) = 0 -43938254109131:43938254109771 26077:26082 hsa_system_get_info(2, 0x7fe700010d08) = 0 -43938254110556:43938254111211 26077:26082 hsa_system_get_info(2, 0x7fe700010d10) = 0 -43938254111985:43938254112629 26077:26082 hsa_system_get_info(2, 0x7fe700010d18) = 0 -43938254113400:43938254114055 26077:26082 hsa_system_get_info(2, 0x7fe700010d20) = 0 -43938254114836:43938254115492 26077:26082 hsa_system_get_info(2, 0x7fe700010d28) = 0 -43938254116298:43938254116947 26077:26082 hsa_system_get_info(2, 0x7fe700010d30) = 0 -43938254117737:43938254118380 26077:26082 hsa_system_get_info(2, 0x7fe700010d38) = 0 -43938254119160:43938254119804 26077:26082 hsa_system_get_info(2, 0x7fe700010d40) = 0 -43938254120586:43938254121230 26077:26082 hsa_system_get_info(2, 0x7fe700010d48) = 0 -43938254122001:43938254122643 26077:26082 hsa_system_get_info(2, 0x7fe700010d50) = 0 -43938254123428:43938254124071 26077:26082 hsa_system_get_info(2, 0x7fe700010d58) = 0 -43938254124847:43938254125487 26077:26082 hsa_system_get_info(2, 0x7fe700010d60) = 0 -43938254126273:43938254126915 26077:26082 hsa_system_get_info(2, 0x7fe700010d68) = 0 -43938254127698:43938254128346 26077:26082 hsa_system_get_info(2, 0x7fe700010d70) = 0 -43938254129122:43938254129762 26077:26082 hsa_system_get_info(2, 0x7fe700010d78) = 0 -43938254130554:43938254131225 26077:26082 hsa_system_get_info(2, 0x7fe700010d80) = 0 -43938254132000:43938254132643 26077:26082 hsa_system_get_info(2, 0x7fe700010d88) = 0 -43938254133427:43938254134071 26077:26082 hsa_system_get_info(2, 0x7fe700010d90) = 0 -43938254134847:43938254135503 26077:26082 hsa_system_get_info(2, 0x7fe700010d98) = 0 -43938254136280:43938254136926 26077:26082 hsa_system_get_info(2, 0x7fe700010da0) = 0 -43938254137712:43938254138358 26077:26082 hsa_system_get_info(2, 0x7fe700010da8) = 0 -43938254139135:43938254139786 26077:26082 hsa_system_get_info(2, 0x7fe700010db0) = 0 -43938254141362:43938254142007 26077:26082 hsa_system_get_info(2, 0x7fe700010db8) = 0 -43938254142786:43938254143444 26077:26082 hsa_system_get_info(2, 0x7fe700010dc0) = 0 -43938254144226:43938254144870 26077:26082 hsa_system_get_info(2, 0x7fe700010dc8) = 0 -43938254145639:43938254146281 26077:26082 hsa_system_get_info(2, 0x7fe700010dd0) = 0 -43938254147056:43938254147698 26077:26082 hsa_system_get_info(2, 0x7fe700010dd8) = 0 -43938254148481:43938254149126 26077:26082 hsa_system_get_info(2, 0x7fe700010de0) = 0 -43938254149910:43938254150556 26077:26082 hsa_system_get_info(2, 0x7fe700010de8) = 0 -43938254151329:43938254151971 26077:26082 hsa_system_get_info(2, 0x7fe700010df0) = 0 -43938254152753:43938254153394 26077:26082 hsa_system_get_info(2, 0x7fe700010df8) = 0 -43938254154169:43938254154814 26077:26082 hsa_system_get_info(2, 0x7fe700010e00) = 0 -43938254155597:43938254156241 26077:26082 hsa_system_get_info(2, 0x7fe700010e08) = 0 -43938254157022:43938254157666 26077:26082 hsa_system_get_info(2, 0x7fe700010e10) = 0 -43938254158449:43938254159101 26077:26082 hsa_system_get_info(2, 0x7fe700010e18) = 0 -43938254159881:43938254160521 26077:26082 hsa_system_get_info(2, 0x7fe700010e20) = 0 -43938254161297:43938254161944 26077:26082 hsa_system_get_info(2, 0x7fe700010e28) = 0 -43938254162730:43938254163378 26077:26082 hsa_system_get_info(2, 0x7fe700010e30) = 0 -43938254164165:43938254164807 26077:26082 hsa_system_get_info(2, 0x7fe700010e38) = 0 -43938254165584:43938254166241 26077:26082 hsa_system_get_info(2, 0x7fe700010e40) = 0 -43938254167018:43938254167662 26077:26082 hsa_system_get_info(2, 0x7fe700010e48) = 0 -43938254168447:43938254169090 26077:26082 hsa_system_get_info(2, 0x7fe700010e50) = 0 -43938254169869:43938254170521 26077:26082 hsa_system_get_info(2, 0x7fe700010e58) = 0 -43938254171298:43938254171941 26077:26082 hsa_system_get_info(2, 0x7fe700010e60) = 0 -43938254172727:43938254173371 26077:26082 hsa_system_get_info(2, 0x7fe700010e68) = 0 -43938254174144:43938254174789 26077:26082 hsa_system_get_info(2, 0x7fe700010e70) = 0 -43938254175572:43938254176220 26077:26082 hsa_system_get_info(2, 0x7fe700010e78) = 0 -43938254177005:43938254177650 26077:26082 hsa_system_get_info(2, 0x7fe700010e80) = 0 -43938254178425:43938254179069 26077:26082 hsa_system_get_info(2, 0x7fe700010e88) = 0 -43938254179867:43938254180512 26077:26082 hsa_system_get_info(2, 0x7fe700010e90) = 0 -43938254182030:43938254182677 26077:26082 hsa_system_get_info(2, 0x7fe700010e98) = 0 -43938254183459:43938254184100 26077:26082 hsa_system_get_info(2, 0x7fe700010ea0) = 0 -43938254184874:43938254185512 26077:26082 hsa_system_get_info(2, 0x7fe700010ea8) = 0 -43938254186297:43938254186940 26077:26082 hsa_system_get_info(2, 0x7fe700010eb0) = 0 -43938254187714:43938254188355 26077:26082 hsa_system_get_info(2, 0x7fe700010eb8) = 0 -43938254189140:43938254189782 26077:26082 hsa_system_get_info(2, 0x7fe700010ec0) = 0 -43938254190556:43938254191203 26077:26082 hsa_system_get_info(2, 0x7fe700010ec8) = 0 -43938254191989:43938254192635 26077:26082 hsa_system_get_info(2, 0x7fe700010ed0) = 0 -43938254193416:43938254194060 26077:26082 hsa_system_get_info(2, 0x7fe700010ed8) = 0 -43938254194837:43938254195478 26077:26082 hsa_system_get_info(2, 0x7fe700010ee0) = 0 -43938254196261:43938254196910 26077:26082 hsa_system_get_info(2, 0x7fe700010ee8) = 0 -43938254197699:43938254198343 26077:26082 hsa_system_get_info(2, 0x7fe700010ef0) = 0 -43938254199139:43938254199781 26077:26082 hsa_system_get_info(2, 0x7fe700010ef8) = 0 -43938254200570:43938254201221 26077:26082 hsa_system_get_info(2, 0x7fe700010f00) = 0 -43938254201996:43938254202641 26077:26082 hsa_system_get_info(2, 0x7fe700010f08) = 0 -43938254203425:43938254204068 26077:26082 hsa_system_get_info(2, 0x7fe700010f10) = 0 -43938254204840:43938254205484 26077:26082 hsa_system_get_info(2, 0x7fe700010f18) = 0 -43938254206267:43938254206912 26077:26082 hsa_system_get_info(2, 0x7fe700010f20) = 0 -43938254207688:43938254208330 26077:26082 hsa_system_get_info(2, 0x7fe700010f28) = 0 -43938254209108:43938254209750 26077:26082 hsa_system_get_info(2, 0x7fe700010f30) = 0 -43938254210526:43938254211165 26077:26082 hsa_system_get_info(2, 0x7fe700010f38) = 0 -43938254211947:43938254212589 26077:26082 hsa_system_get_info(2, 0x7fe700010f40) = 0 -43938254213363:43938254214001 26077:26082 hsa_system_get_info(2, 0x7fe700010f48) = 0 -43938254214775:43938254215417 26077:26082 hsa_system_get_info(2, 0x7fe700010f50) = 0 -43938254216202:43938254216845 26077:26082 hsa_system_get_info(2, 0x7fe700010f58) = 0 -43938254231117:43938254231800 26077:26082 hsa_system_get_info(2, 0x7fe70000f020) = 0 -43938254232617:43938254233256 26077:26082 hsa_system_get_info(2, 0x7fe70000f028) = 0 -43938254234029:43938254234678 26077:26082 hsa_system_get_info(2, 0x7fe70000f030) = 0 -43938254235454:43938254236101 26077:26082 hsa_system_get_info(2, 0x7fe70000f038) = 0 -43938254237698:43938254238344 26077:26082 hsa_system_get_info(2, 0x7fe70000f040) = 0 -43938254239124:43938254239764 26077:26082 hsa_system_get_info(2, 0x7fe70000f048) = 0 -43938254240535:43938254241180 26077:26082 hsa_system_get_info(2, 0x7fe70000f050) = 0 -43938254241953:43938254242608 26077:26082 hsa_system_get_info(2, 0x7fe70000f058) = 0 -43938254243386:43938254244028 26077:26082 hsa_system_get_info(2, 0x7fe70000f060) = 0 -43938254244813:43938254245459 26077:26082 hsa_system_get_info(2, 0x7fe70000f068) = 0 -43938254246235:43938254246894 26077:26082 hsa_system_get_info(2, 0x7fe70000f070) = 0 -43938254247671:43938254248328 26077:26082 hsa_system_get_info(2, 0x7fe70000f078) = 0 -43938254249104:43938254249753 26077:26082 hsa_system_get_info(2, 0x7fe70000f080) = 0 -43938254250536:43938254251177 26077:26082 hsa_system_get_info(2, 0x7fe70000f088) = 0 -43938254251951:43938254252593 26077:26082 hsa_system_get_info(2, 0x7fe70000f090) = 0 -43938254253375:43938254254017 26077:26082 hsa_system_get_info(2, 0x7fe70000f098) = 0 -43938254254795:43938254255432 26077:26082 hsa_system_get_info(2, 0x7fe70000f0a0) = 0 -43938254256212:43938254256860 26077:26082 hsa_system_get_info(2, 0x7fe70000f0a8) = 0 -43938254257657:43938254258301 26077:26082 hsa_system_get_info(2, 0x7fe70000f0b0) = 0 -43938254259074:43938254259718 26077:26082 hsa_system_get_info(2, 0x7fe70000f0b8) = 0 -43938254260501:43938254261148 26077:26082 hsa_system_get_info(2, 0x7fe70000f0c0) = 0 -43938254261920:43938254262564 26077:26082 hsa_system_get_info(2, 0x7fe70000f0c8) = 0 -43938254263345:43938254263988 26077:26082 hsa_system_get_info(2, 0x7fe70000f0d0) = 0 -43938254264760:43938254265406 26077:26082 hsa_system_get_info(2, 0x7fe70000f0d8) = 0 -43938254266185:43938254266824 26077:26082 hsa_system_get_info(2, 0x7fe70000f0e0) = 0 -43938254267596:43938254268236 26077:26082 hsa_system_get_info(2, 0x7fe70000f0e8) = 0 -43938254269020:43938254269662 26077:26082 hsa_system_get_info(2, 0x7fe70000f0f0) = 0 -43938254270435:43938254271078 26077:26082 hsa_system_get_info(2, 0x7fe70000f0f8) = 0 -43938254271863:43938254272504 26077:26082 hsa_system_get_info(2, 0x7fe70000f100) = 0 -43938254273279:43938254273920 26077:26082 hsa_system_get_info(2, 0x7fe70000f108) = 0 -43938254274704:43938254275353 26077:26082 hsa_system_get_info(2, 0x7fe70000f110) = 0 -43938254276129:43938254276784 26077:26082 hsa_system_get_info(2, 0x7fe70000f118) = 0 -43938254278369:43938254279010 26077:26082 hsa_system_get_info(2, 0x7fe70000f120) = 0 -43938254279791:43938254280434 26077:26082 hsa_system_get_info(2, 0x7fe70000f128) = 0 -43938254281206:43938254281846 26077:26082 hsa_system_get_info(2, 0x7fe70000f130) = 0 -43938254282628:43938254283271 26077:26082 hsa_system_get_info(2, 0x7fe70000f138) = 0 -43938254284042:43938254284688 26077:26082 hsa_system_get_info(2, 0x7fe70000f140) = 0 -43938254285472:43938254286116 26077:26082 hsa_system_get_info(2, 0x7fe70000f148) = 0 -43938254286889:43938254287537 26077:26082 hsa_system_get_info(2, 0x7fe70000f150) = 0 -43938254288321:43938254288965 26077:26082 hsa_system_get_info(2, 0x7fe70000f158) = 0 -43938254289741:43938254290399 26077:26082 hsa_system_get_info(2, 0x7fe70000f160) = 0 -43938254291174:43938254291819 26077:26082 hsa_system_get_info(2, 0x7fe70000f168) = 0 -43938254292602:43938254293244 26077:26082 hsa_system_get_info(2, 0x7fe70000f170) = 0 -43938254294036:43938254294679 26077:26082 hsa_system_get_info(2, 0x7fe70000f178) = 0 -43938254295456:43938254296100 26077:26082 hsa_system_get_info(2, 0x7fe70000f180) = 0 -43938254296879:43938254297526 26077:26082 hsa_system_get_info(2, 0x7fe70000f188) = 0 -43938254298321:43938254298968 26077:26082 hsa_system_get_info(2, 0x7fe70000f190) = 0 -43938254299744:43938254300398 26077:26082 hsa_system_get_info(2, 0x7fe70000f198) = 0 -43938254301172:43938254301814 26077:26082 hsa_system_get_info(2, 0x7fe70000f1a0) = 0 -43938254302586:43938254303229 26077:26082 hsa_system_get_info(2, 0x7fe70000f1a8) = 0 -43938254304012:43938254304658 26077:26082 hsa_system_get_info(2, 0x7fe70000f1b0) = 0 -43938254305429:43938254306068 26077:26082 hsa_system_get_info(2, 0x7fe70000f1b8) = 0 -43938254306853:43938254307498 26077:26082 hsa_system_get_info(2, 0x7fe70000f1c0) = 0 -43938254308281:43938254308930 26077:26082 hsa_system_get_info(2, 0x7fe70000f1c8) = 0 -43938254309705:43938254310348 26077:26082 hsa_system_get_info(2, 0x7fe70000f1d0) = 0 -43938254311142:43938254311789 26077:26082 hsa_system_get_info(2, 0x7fe70000f1d8) = 0 -43938254312574:43938254313211 26077:26082 hsa_system_get_info(2, 0x7fe70000f1e0) = 0 -43938254313987:43938254314631 26077:26082 hsa_system_get_info(2, 0x7fe70000f1e8) = 0 -43938254315412:43938254316053 26077:26082 hsa_system_get_info(2, 0x7fe70000f1f0) = 0 -43938254316821:43938254317461 26077:26082 hsa_system_get_info(2, 0x7fe70000f1f8) = 0 -43938254318235:43938254318877 26077:26082 hsa_system_get_info(2, 0x7fe70000f200) = 0 -43938254320384:43938254321031 26077:26082 hsa_system_get_info(2, 0x7fe70000f208) = 0 -43938254321812:43938254322454 26077:26082 hsa_system_get_info(2, 0x7fe70000f210) = 0 -43938254323228:43938254323871 26077:26082 hsa_system_get_info(2, 0x7fe70000f218) = 0 -43938254324655:43938254325296 26077:26082 hsa_system_get_info(2, 0x7fe70000f220) = 0 -43938254326071:43938254326719 26077:26082 hsa_system_get_info(2, 0x7fe70000f228) = 0 -43938254327504:43938254328158 26077:26082 hsa_system_get_info(2, 0x7fe70000f230) = 0 -43938254328944:43938254329592 26077:26082 hsa_system_get_info(2, 0x7fe70000f238) = 0 -43938254330374:43938254331024 26077:26082 hsa_system_get_info(2, 0x7fe70000f240) = 0 -43938254331804:43938254332455 26077:26082 hsa_system_get_info(2, 0x7fe70000f248) = 0 -43938254333228:43938254333874 26077:26082 hsa_system_get_info(2, 0x7fe70000f250) = 0 -43938254334661:43938254335303 26077:26082 hsa_system_get_info(2, 0x7fe70000f258) = 0 -43938254336079:43938254336724 26077:26082 hsa_system_get_info(2, 0x7fe70000f260) = 0 -43938254337511:43938254338151 26077:26082 hsa_system_get_info(2, 0x7fe70000f268) = 0 -43938254338953:43938254339598 26077:26082 hsa_system_get_info(2, 0x7fe70000f270) = 0 -43938254340379:43938254341021 26077:26082 hsa_system_get_info(2, 0x7fe70000f278) = 0 -43938254341800:43938254342444 26077:26082 hsa_system_get_info(2, 0x7fe70000f280) = 0 -43938254343231:43938254343873 26077:26082 hsa_system_get_info(2, 0x7fe70000f288) = 0 -43938254344646:43938254345293 26077:26082 hsa_system_get_info(2, 0x7fe70000f290) = 0 -43938254346080:43938254346723 26077:26082 hsa_system_get_info(2, 0x7fe70000f298) = 0 -43938254347509:43938254348148 26077:26082 hsa_system_get_info(2, 0x7fe70000f2a0) = 0 -43938254348923:43938254349570 26077:26082 hsa_system_get_info(2, 0x7fe70000f2a8) = 0 -43938254350354:43938254350997 26077:26082 hsa_system_get_info(2, 0x7fe70000f2b0) = 0 -43938254351770:43938254352415 26077:26082 hsa_system_get_info(2, 0x7fe70000f2b8) = 0 -43938254353200:43938254353844 26077:26082 hsa_system_get_info(2, 0x7fe70000f2c0) = 0 -43938254354614:43938254355254 26077:26082 hsa_system_get_info(2, 0x7fe70000f2c8) = 0 -43938254356035:43938254356674 26077:26082 hsa_system_get_info(2, 0x7fe70000f2d0) = 0 -43938254357446:43938254358086 26077:26082 hsa_system_get_info(2, 0x7fe70000f2d8) = 0 -43938254358885:43938254359526 26077:26082 hsa_system_get_info(2, 0x7fe70000f2e0) = 0 -43938254361032:43938254361677 26077:26082 hsa_system_get_info(2, 0x7fe70000f2e8) = 0 -43938254362453:43938254363099 26077:26082 hsa_system_get_info(2, 0x7fe70000f2f0) = 0 -43938254363882:43938254364526 26077:26082 hsa_system_get_info(2, 0x7fe70000f2f8) = 0 -43938254365298:43938254365954 26077:26082 hsa_system_get_info(2, 0x7fe70000f300) = 0 -43938254366725:43938254367365 26077:26082 hsa_system_get_info(2, 0x7fe70000f308) = 0 -43938254368142:43938254368786 26077:26082 hsa_system_get_info(2, 0x7fe70000f310) = 0 -43938254369568:43938254370214 26077:26082 hsa_system_get_info(2, 0x7fe70000f318) = 0 -43938254370987:43938254371638 26077:26082 hsa_system_get_info(2, 0x7fe70000f320) = 0 -43938254372411:43938254373051 26077:26082 hsa_system_get_info(2, 0x7fe70000f328) = 0 -43938254373826:43938254374480 26077:26082 hsa_system_get_info(2, 0x7fe70000f330) = 0 -43938254375256:43938254375896 26077:26082 hsa_system_get_info(2, 0x7fe70000f338) = 0 -43938254376681:43938254377329 26077:26082 hsa_system_get_info(2, 0x7fe70000f340) = 0 -43938254378108:43938254378750 26077:26082 hsa_system_get_info(2, 0x7fe70000f348) = 0 -43938254379567:43938254380207 26077:26082 hsa_system_get_info(2, 0x7fe70000f350) = 0 -43938254380979:43938254381617 26077:26082 hsa_system_get_info(2, 0x7fe70000f358) = 0 -43938254382390:43938254383027 26077:26082 hsa_system_get_info(2, 0x7fe70000f360) = 0 -43938254383806:43938254384448 26077:26082 hsa_system_get_info(2, 0x7fe70000f368) = 0 -43938254385221:43938254385866 26077:26082 hsa_system_get_info(2, 0x7fe70000f370) = 0 -43938254386650:43938254387296 26077:26082 hsa_system_get_info(2, 0x7fe70000f378) = 0 -43938254388072:43938254388716 26077:26082 hsa_system_get_info(2, 0x7fe70000f380) = 0 -43938254389498:43938254390145 26077:26082 hsa_system_get_info(2, 0x7fe70000f388) = 0 -43938254390919:43938254391568 26077:26082 hsa_system_get_info(2, 0x7fe70000f390) = 0 -43938254392343:43938254392986 26077:26082 hsa_system_get_info(2, 0x7fe70000f398) = 0 -43938254393761:43938254394410 26077:26082 hsa_system_get_info(2, 0x7fe70000f3a0) = 0 -43938254395186:43938254395830 26077:26082 hsa_system_get_info(2, 0x7fe70000f3a8) = 0 -43938254396603:43938254397240 26077:26082 hsa_system_get_info(2, 0x7fe70000f3b0) = 0 -43938254398020:43938254398662 26077:26082 hsa_system_get_info(2, 0x7fe70000f3b8) = 0 -43938254399457:43938254400099 26077:26082 hsa_system_get_info(2, 0x7fe70000f3c0) = 0 -43938254400875:43938254401515 26077:26082 hsa_system_get_info(2, 0x7fe70000f3c8) = 0 -43938254403026:43938254403670 26077:26082 hsa_system_get_info(2, 0x7fe70000f3d0) = 0 -43938254404456:43938254405099 26077:26082 hsa_system_get_info(2, 0x7fe70000f3d8) = 0 -43938254405876:43938254406519 26077:26082 hsa_system_get_info(2, 0x7fe70000f3e0) = 0 -43938254407302:43938254407944 26077:26082 hsa_system_get_info(2, 0x7fe70000f3e8) = 0 -43938254408721:43938254409364 26077:26082 hsa_system_get_info(2, 0x7fe70000f3f0) = 0 -43938254410148:43938254410792 26077:26082 hsa_system_get_info(2, 0x7fe70000f3f8) = 0 -43938254411571:43938254412224 26077:26082 hsa_system_get_info(2, 0x7fe70000f400) = 0 -43938254412998:43938254413643 26077:26082 hsa_system_get_info(2, 0x7fe70000f408) = 0 -43938254414426:43938254415077 26077:26082 hsa_system_get_info(2, 0x7fe70000f410) = 0 -43938254415851:43938254416503 26077:26082 hsa_system_get_info(2, 0x7fe70000f418) = 0 -43938254417281:43938254417930 26077:26082 hsa_system_get_info(2, 0x7fe70000f420) = 0 -43938254418712:43938254419356 26077:26082 hsa_system_get_info(2, 0x7fe70000f428) = 0 -43938254420131:43938254420771 26077:26082 hsa_system_get_info(2, 0x7fe70000f430) = 0 -43938254421561:43938254422206 26077:26082 hsa_system_get_info(2, 0x7fe70000f438) = 0 -43938254422989:43938254423638 26077:26082 hsa_system_get_info(2, 0x7fe70000f440) = 0 -43938254424416:43938254425057 26077:26082 hsa_system_get_info(2, 0x7fe70000f448) = 0 -43938254425840:43938254426483 26077:26082 hsa_system_get_info(2, 0x7fe70000f450) = 0 -43938254427261:43938254427899 26077:26082 hsa_system_get_info(2, 0x7fe70000f458) = 0 -43938254428679:43938254429325 26077:26082 hsa_system_get_info(2, 0x7fe70000f460) = 0 -43938254430098:43938254430742 26077:26082 hsa_system_get_info(2, 0x7fe70000f468) = 0 -43938254431520:43938254432166 26077:26082 hsa_system_get_info(2, 0x7fe70000f470) = 0 -43938254432935:43938254433582 26077:26082 hsa_system_get_info(2, 0x7fe70000f478) = 0 -43938254434356:43938254435000 26077:26082 hsa_system_get_info(2, 0x7fe70000f480) = 0 -43938254435775:43938254436416 26077:26082 hsa_system_get_info(2, 0x7fe70000f488) = 0 -43938254437197:43938254437842 26077:26082 hsa_system_get_info(2, 0x7fe70000f490) = 0 -43938254438615:43938254439277 26077:26082 hsa_system_get_info(2, 0x7fe70000f498) = 0 -43938254440065:43938254440703 26077:26082 hsa_system_get_info(2, 0x7fe70000f4a0) = 0 -43938254441483:43938254442125 26077:26082 hsa_system_get_info(2, 0x7fe70000f4a8) = 0 -43938254443651:43938254444295 26077:26082 hsa_system_get_info(2, 0x7fe70000f4b0) = 0 -43938254445071:43938254445723 26077:26082 hsa_system_get_info(2, 0x7fe70000f4b8) = 0 -43938254446499:43938254447139 26077:26082 hsa_system_get_info(2, 0x7fe70000f4c0) = 0 -43938254447912:43938254448561 26077:26082 hsa_system_get_info(2, 0x7fe70000f4c8) = 0 -43938254449338:43938254449979 26077:26082 hsa_system_get_info(2, 0x7fe70000f4d0) = 0 -43938254450750:43938254451404 26077:26082 hsa_system_get_info(2, 0x7fe70000f4d8) = 0 -43938254452177:43938254452817 26077:26082 hsa_system_get_info(2, 0x7fe70000f4e0) = 0 -43938254453589:43938254454234 26077:26082 hsa_system_get_info(2, 0x7fe70000f4e8) = 0 -43938254455014:43938254455652 26077:26082 hsa_system_get_info(2, 0x7fe70000f4f0) = 0 -43938254456424:43938254457068 26077:26082 hsa_system_get_info(2, 0x7fe70000f4f8) = 0 -43938254457850:43938254458492 26077:26082 hsa_system_get_info(2, 0x7fe70000f500) = 0 -43938254459269:43938254459910 26077:26082 hsa_system_get_info(2, 0x7fe70000f508) = 0 -43938254460696:43938254461338 26077:26082 hsa_system_get_info(2, 0x7fe70000f510) = 0 -43938254462112:43938254462757 26077:26082 hsa_system_get_info(2, 0x7fe70000f518) = 0 -43938254463536:43938254464190 26077:26082 hsa_system_get_info(2, 0x7fe70000f520) = 0 -43938254464971:43938254465613 26077:26082 hsa_system_get_info(2, 0x7fe70000f528) = 0 -43938254466386:43938254467027 26077:26082 hsa_system_get_info(2, 0x7fe70000f530) = 0 -43938254467800:43938254468454 26077:26082 hsa_system_get_info(2, 0x7fe70000f538) = 0 -43938254469227:43938254469873 26077:26082 hsa_system_get_info(2, 0x7fe70000f540) = 0 -43938254470655:43938254471295 26077:26082 hsa_system_get_info(2, 0x7fe70000f548) = 0 -43938254472067:43938254472713 26077:26082 hsa_system_get_info(2, 0x7fe70000f550) = 0 -43938254473485:43938254474127 26077:26082 hsa_system_get_info(2, 0x7fe70000f558) = 0 -43938254474908:43938254475552 26077:26082 hsa_system_get_info(2, 0x7fe70000f560) = 0 -43938254476324:43938254476968 26077:26082 hsa_system_get_info(2, 0x7fe70000f568) = 0 -43938254477751:43938254478390 26077:26082 hsa_system_get_info(2, 0x7fe70000f570) = 0 -43938254479164:43938254479807 26077:26082 hsa_system_get_info(2, 0x7fe70000f578) = 0 -43938254480587:43938254481235 26077:26082 hsa_system_get_info(2, 0x7fe70000f580) = 0 -43938254482005:43938254482649 26077:26082 hsa_system_get_info(2, 0x7fe70000f588) = 0 -43938254483432:43938254484091 26077:26082 hsa_system_get_info(2, 0x7fe70000f590) = 0 -43938254485669:43938254486314 26077:26082 hsa_system_get_info(2, 0x7fe70000f598) = 0 -43938254487089:43938254487729 26077:26082 hsa_system_get_info(2, 0x7fe70000f5a0) = 0 -43938254488512:43938254489151 26077:26082 hsa_system_get_info(2, 0x7fe70000f5a8) = 0 -43938254489922:43938254490564 26077:26082 hsa_system_get_info(2, 0x7fe70000f5b0) = 0 -43938254491336:43938254491978 26077:26082 hsa_system_get_info(2, 0x7fe70000f5b8) = 0 -43938254492757:43938254493398 26077:26082 hsa_system_get_info(2, 0x7fe70000f5c0) = 0 -43938254494173:43938254494814 26077:26082 hsa_system_get_info(2, 0x7fe70000f5c8) = 0 -43938254495598:43938254496240 26077:26082 hsa_system_get_info(2, 0x7fe70000f5d0) = 0 -43938254497016:43938254497660 26077:26082 hsa_system_get_info(2, 0x7fe70000f5d8) = 0 -43938254498441:43938254499086 26077:26082 hsa_system_get_info(2, 0x7fe70000f5e0) = 0 -43938254499876:43938254500520 26077:26082 hsa_system_get_info(2, 0x7fe70000f5e8) = 0 -43938254501321:43938254501960 26077:26082 hsa_system_get_info(2, 0x7fe70000f5f0) = 0 -43938254502737:43938254503381 26077:26082 hsa_system_get_info(2, 0x7fe70000f5f8) = 0 -43938254504174:43938254504819 26077:26082 hsa_system_get_info(2, 0x7fe70000f600) = 0 -43938254505616:43938254506261 26077:26082 hsa_system_get_info(2, 0x7fe70000f608) = 0 -43938254507041:43938254507690 26077:26082 hsa_system_get_info(2, 0x7fe70000f610) = 0 -43938254508463:43938254509103 26077:26082 hsa_system_get_info(2, 0x7fe70000f618) = 0 -43938254509887:43938254510532 26077:26082 hsa_system_get_info(2, 0x7fe70000f620) = 0 -43938254511306:43938254511948 26077:26082 hsa_system_get_info(2, 0x7fe70000f628) = 0 -43938254512730:43938254513376 26077:26082 hsa_system_get_info(2, 0x7fe70000f630) = 0 -43938254514150:43938254514802 26077:26082 hsa_system_get_info(2, 0x7fe70000f638) = 0 -43938254515574:43938254516220 26077:26082 hsa_system_get_info(2, 0x7fe70000f640) = 0 -43938254517002:43938254517644 26077:26082 hsa_system_get_info(2, 0x7fe70000f648) = 0 -43938254518420:43938254519066 26077:26082 hsa_system_get_info(2, 0x7fe70000f650) = 0 -43938254519846:43938254520484 26077:26082 hsa_system_get_info(2, 0x7fe70000f658) = 0 -43938254521256:43938254521898 26077:26082 hsa_system_get_info(2, 0x7fe70000f660) = 0 -43938254522670:43938254523309 26077:26082 hsa_system_get_info(2, 0x7fe70000f668) = 0 -43938254524090:43938254524744 26077:26082 hsa_system_get_info(2, 0x7fe70000f670) = 0 -43938254526254:43938254526899 26077:26082 hsa_system_get_info(2, 0x7fe70000f678) = 0 -43938254527674:43938254528318 26077:26082 hsa_system_get_info(2, 0x7fe70000f680) = 0 -43938254529099:43938254529744 26077:26082 hsa_system_get_info(2, 0x7fe70000f688) = 0 -43938254530528:43938254531175 26077:26082 hsa_system_get_info(2, 0x7fe70000f690) = 0 -43938254531950:43938254532595 26077:26082 hsa_system_get_info(2, 0x7fe70000f698) = 0 -43938254533376:43938254534024 26077:26082 hsa_system_get_info(2, 0x7fe70000f6a0) = 0 -43938254534796:43938254535454 26077:26082 hsa_system_get_info(2, 0x7fe70000f6a8) = 0 -43938254536225:43938254536871 26077:26082 hsa_system_get_info(2, 0x7fe70000f6b0) = 0 -43938254537652:43938254538296 26077:26082 hsa_system_get_info(2, 0x7fe70000f6b8) = 0 -43938254539075:43938254539713 26077:26082 hsa_system_get_info(2, 0x7fe70000f6c0) = 0 -43938254540496:43938254541142 26077:26082 hsa_system_get_info(2, 0x7fe70000f6c8) = 0 -43938254541922:43938254542566 26077:26082 hsa_system_get_info(2, 0x7fe70000f6d0) = 0 -43938254543348:43938254543993 26077:26082 hsa_system_get_info(2, 0x7fe70000f6d8) = 0 -43938254544788:43938254545433 26077:26082 hsa_system_get_info(2, 0x7fe70000f6e0) = 0 -43938254546209:43938254546858 26077:26082 hsa_system_get_info(2, 0x7fe70000f6e8) = 0 -43938254547634:43938254548276 26077:26082 hsa_system_get_info(2, 0x7fe70000f6f0) = 0 -43938254549061:43938254549705 26077:26082 hsa_system_get_info(2, 0x7fe70000f6f8) = 0 -43938254550483:43938254551141 26077:26082 hsa_system_get_info(2, 0x7fe70000f700) = 0 -43938254551927:43938254552572 26077:26082 hsa_system_get_info(2, 0x7fe70000f708) = 0 -43938254553356:43938254553999 26077:26082 hsa_system_get_info(2, 0x7fe70000f710) = 0 -43938254554773:43938254555426 26077:26082 hsa_system_get_info(2, 0x7fe70000f718) = 0 -43938254556200:43938254556847 26077:26082 hsa_system_get_info(2, 0x7fe70000f720) = 0 -43938254557633:43938254558281 26077:26082 hsa_system_get_info(2, 0x7fe70000f728) = 0 -43938254559065:43938254559710 26077:26082 hsa_system_get_info(2, 0x7fe70000f730) = 0 -43938254560488:43938254561133 26077:26082 hsa_system_get_info(2, 0x7fe70000f738) = 0 -43938254561918:43938254562566 26077:26082 hsa_system_get_info(2, 0x7fe70000f740) = 0 -43938254563337:43938254563990 26077:26082 hsa_system_get_info(2, 0x7fe70000f748) = 0 -43938254564765:43938254565404 26077:26082 hsa_system_get_info(2, 0x7fe70000f750) = 0 -43938254566917:43938254567564 26077:26082 hsa_system_get_info(2, 0x7fe70000f758) = 0 -43938254568340:43938254568994 26077:26082 hsa_system_get_info(2, 0x7fe70000f760) = 0 -43938254569766:43938254570411 26077:26082 hsa_system_get_info(2, 0x7fe70000f768) = 0 -43938254571197:43938254571842 26077:26082 hsa_system_get_info(2, 0x7fe70000f770) = 0 -43938254572618:43938254573264 26077:26082 hsa_system_get_info(2, 0x7fe70000f778) = 0 -43938254574049:43938254574695 26077:26082 hsa_system_get_info(2, 0x7fe70000f780) = 0 -43938254575478:43938254576119 26077:26082 hsa_system_get_info(2, 0x7fe70000f788) = 0 -43938254576888:43938254577530 26077:26082 hsa_system_get_info(2, 0x7fe70000f790) = 0 -43938254578302:43938254578956 26077:26082 hsa_system_get_info(2, 0x7fe70000f798) = 0 -43938254579729:43938254580375 26077:26082 hsa_system_get_info(2, 0x7fe70000f7a0) = 0 -43938254581158:43938254581789 26077:26082 hsa_system_get_info(2, 0x7fe70000f7a8) = 0 -43938254582576:43938254583215 26077:26082 hsa_system_get_info(2, 0x7fe70000f7b0) = 0 -43938254583991:43938254584625 26077:26082 hsa_system_get_info(2, 0x7fe70000f7b8) = 0 -43938254585415:43938254586064 26077:26082 hsa_system_get_info(2, 0x7fe70000f7c0) = 0 -43938254586847:43938254587497 26077:26082 hsa_system_get_info(2, 0x7fe70000f7c8) = 0 -43938254588273:43938254588922 26077:26082 hsa_system_get_info(2, 0x7fe70000f7d0) = 0 -43938254589697:43938254590348 26077:26082 hsa_system_get_info(2, 0x7fe70000f7d8) = 0 -43938254591130:43938254591774 26077:26082 hsa_system_get_info(2, 0x7fe70000f7e0) = 0 -43938254592546:43938254593183 26077:26082 hsa_system_get_info(2, 0x7fe70000f7e8) = 0 -43938254593969:43938254594613 26077:26082 hsa_system_get_info(2, 0x7fe70000f7f0) = 0 -43938254595389:43938254596030 26077:26082 hsa_system_get_info(2, 0x7fe70000f7f8) = 0 -43938254596808:43938254597451 26077:26082 hsa_system_get_info(2, 0x7fe70000f800) = 0 -43938254598226:43938254598867 26077:26082 hsa_system_get_info(2, 0x7fe70000f808) = 0 -43938254599635:43938254600279 26077:26082 hsa_system_get_info(2, 0x7fe70000f810) = 0 -43938254601055:43938254601701 26077:26082 hsa_system_get_info(2, 0x7fe70000f818) = 0 -43938254602492:43938254603136 26077:26082 hsa_system_get_info(2, 0x7fe70000f820) = 0 -43938254603909:43938254604552 26077:26082 hsa_system_get_info(2, 0x7fe70000f828) = 0 -43938254605334:43938254605984 26077:26082 hsa_system_get_info(2, 0x7fe70000f830) = 0 -43938254606760:43938254607400 26077:26082 hsa_system_get_info(2, 0x7fe70000f838) = 0 -43938254608937:43938254609585 26077:26082 hsa_system_get_info(2, 0x7fe70000f840) = 0 -43938254610357:43938254610996 26077:26082 hsa_system_get_info(2, 0x7fe70000f848) = 0 -43938254611775:43938254612415 26077:26082 hsa_system_get_info(2, 0x7fe70000f850) = 0 -43938254613186:43938254613831 26077:26082 hsa_system_get_info(2, 0x7fe70000f858) = 0 -43938254614608:43938254615260 26077:26082 hsa_system_get_info(2, 0x7fe70000f860) = 0 -43938254616048:43938254616687 26077:26082 hsa_system_get_info(2, 0x7fe70000f868) = 0 -43938254617467:43938254618110 26077:26082 hsa_system_get_info(2, 0x7fe70000f870) = 0 -43938254618884:43938254619525 26077:26082 hsa_system_get_info(2, 0x7fe70000f878) = 0 -43938254620309:43938254620954 26077:26082 hsa_system_get_info(2, 0x7fe70000f880) = 0 -43938254621727:43938254622371 26077:26082 hsa_system_get_info(2, 0x7fe70000f888) = 0 -43938254623152:43938254623798 26077:26082 hsa_system_get_info(2, 0x7fe70000f890) = 0 -43938254624571:43938254625223 26077:26082 hsa_system_get_info(2, 0x7fe70000f898) = 0 -43938254625998:43938254626645 26077:26082 hsa_system_get_info(2, 0x7fe70000f8a0) = 0 -43938254627416:43938254628056 26077:26082 hsa_system_get_info(2, 0x7fe70000f8a8) = 0 -43938254628836:43938254629479 26077:26082 hsa_system_get_info(2, 0x7fe70000f8b0) = 0 -43938254630248:43938254630891 26077:26082 hsa_system_get_info(2, 0x7fe70000f8b8) = 0 -43938254631672:43938254632316 26077:26082 hsa_system_get_info(2, 0x7fe70000f8c0) = 0 -43938254633090:43938254633728 26077:26082 hsa_system_get_info(2, 0x7fe70000f8c8) = 0 -43938254634500:43938254635167 26077:26082 hsa_system_get_info(2, 0x7fe70000f8d0) = 0 -43938254635939:43938254636579 26077:26082 hsa_system_get_info(2, 0x7fe70000f8d8) = 0 -43938254637360:43938254638007 26077:26082 hsa_system_get_info(2, 0x7fe70000f8e0) = 0 -43938254638782:43938254639432 26077:26082 hsa_system_get_info(2, 0x7fe70000f8e8) = 0 -43938254640209:43938254640857 26077:26082 hsa_system_get_info(2, 0x7fe70000f8f0) = 0 -43938254641635:43938254642277 26077:26082 hsa_system_get_info(2, 0x7fe70000f8f8) = 0 -43938254643051:43938254643699 26077:26082 hsa_system_get_info(2, 0x7fe70000f900) = 0 -43938254644480:43938254645122 26077:26082 hsa_system_get_info(2, 0x7fe70000f908) = 0 -43938254645895:43938254646536 26077:26082 hsa_system_get_info(2, 0x7fe70000f910) = 0 -43938254647316:43938254647956 26077:26082 hsa_system_get_info(2, 0x7fe70000f918) = 0 -43938254650079:43938254650726 26077:26082 hsa_system_get_info(2, 0x7fe70000f920) = 0 -43938254651505:43938254652149 26077:26082 hsa_system_get_info(2, 0x7fe70000f928) = 0 -43938254652933:43938254653572 26077:26082 hsa_system_get_info(2, 0x7fe70000f930) = 0 -43938254654344:43938254654989 26077:26082 hsa_system_get_info(2, 0x7fe70000f938) = 0 -43938254655774:43938254656416 26077:26082 hsa_system_get_info(2, 0x7fe70000f940) = 0 -43938254657191:43938254657846 26077:26082 hsa_system_get_info(2, 0x7fe70000f948) = 0 -43938254658626:43938254659269 26077:26082 hsa_system_get_info(2, 0x7fe70000f950) = 0 -43938254660051:43938254660693 26077:26082 hsa_system_get_info(2, 0x7fe70000f958) = 0 -43938254661471:43938254662113 26077:26082 hsa_system_get_info(2, 0x7fe70000f960) = 0 -43938254662894:43938254663538 26077:26082 hsa_system_get_info(2, 0x7fe70000f968) = 0 -43938254664325:43938254664973 26077:26082 hsa_system_get_info(2, 0x7fe70000f970) = 0 -43938254665771:43938254666410 26077:26082 hsa_system_get_info(2, 0x7fe70000f978) = 0 -43938254667194:43938254667849 26077:26082 hsa_system_get_info(2, 0x7fe70000f980) = 0 -43938254668628:43938254669273 26077:26082 hsa_system_get_info(2, 0x7fe70000f988) = 0 -43938254670053:43938254670695 26077:26082 hsa_system_get_info(2, 0x7fe70000f990) = 0 -43938254671471:43938254672115 26077:26082 hsa_system_get_info(2, 0x7fe70000f998) = 0 -43938254672900:43938254673543 26077:26082 hsa_system_get_info(2, 0x7fe70000f9a0) = 0 -43938254674318:43938254674960 26077:26082 hsa_system_get_info(2, 0x7fe70000f9a8) = 0 -43938254675743:43938254676386 26077:26082 hsa_system_get_info(2, 0x7fe70000f9b0) = 0 -43938254677160:43938254677800 26077:26082 hsa_system_get_info(2, 0x7fe70000f9b8) = 0 -43938254678585:43938254679227 26077:26082 hsa_system_get_info(2, 0x7fe70000f9c0) = 0 -43938254680002:43938254680646 26077:26082 hsa_system_get_info(2, 0x7fe70000f9c8) = 0 -43938254681429:43938254682073 26077:26082 hsa_system_get_info(2, 0x7fe70000f9d0) = 0 -43938254682846:43938254683486 26077:26082 hsa_system_get_info(2, 0x7fe70000f9d8) = 0 -43938254684270:43938254684909 26077:26082 hsa_system_get_info(2, 0x7fe70000f9e0) = 0 -43938254685683:43938254686344 26077:26082 hsa_system_get_info(2, 0x7fe70000f9e8) = 0 -43938254687121:43938254687769 26077:26082 hsa_system_get_info(2, 0x7fe70000f9f0) = 0 -43938254688552:43938254689194 26077:26082 hsa_system_get_info(2, 0x7fe70000f9f8) = 0 -43938254689980:43938254690626 26077:26082 hsa_system_get_info(2, 0x7fe70000fa00) = 0 -43938254692142:43938254692794 26077:26082 hsa_system_get_info(2, 0x7fe70000fa08) = 0 -43938254693569:43938254694225 26077:26082 hsa_system_get_info(2, 0x7fe70000fa10) = 0 -43938254695002:43938254695649 26077:26082 hsa_system_get_info(2, 0x7fe70000fa18) = 0 -43938254696431:43938254697077 26077:26082 hsa_system_get_info(2, 0x7fe70000fa20) = 0 -43938254697852:43938254698506 26077:26082 hsa_system_get_info(2, 0x7fe70000fa28) = 0 -43938254699281:43938254699925 26077:26082 hsa_system_get_info(2, 0x7fe70000fa30) = 0 -43938254700707:43938254701338 26077:26082 hsa_system_get_info(2, 0x7fe70000fa38) = 0 -43938254702120:43938254702760 26077:26082 hsa_system_get_info(2, 0x7fe70000fa40) = 0 -43938254703535:43938254704177 26077:26082 hsa_system_get_info(2, 0x7fe70000fa48) = 0 -43938254704973:43938254705629 26077:26082 hsa_system_get_info(2, 0x7fe70000fa50) = 0 -43938254706401:43938254707043 26077:26082 hsa_system_get_info(2, 0x7fe70000fa58) = 0 -43938254707818:43938254708460 26077:26082 hsa_system_get_info(2, 0x7fe70000fa60) = 0 -43938254709243:43938254709892 26077:26082 hsa_system_get_info(2, 0x7fe70000fa68) = 0 -43938254710676:43938254711327 26077:26082 hsa_system_get_info(2, 0x7fe70000fa70) = 0 -43938254712102:43938254712754 26077:26082 hsa_system_get_info(2, 0x7fe70000fa78) = 0 -43938254713532:43938254714171 26077:26082 hsa_system_get_info(2, 0x7fe70000fa80) = 0 -43938254714943:43938254715595 26077:26082 hsa_system_get_info(2, 0x7fe70000fa88) = 0 -43938254716368:43938254717011 26077:26082 hsa_system_get_info(2, 0x7fe70000fa90) = 0 -43938254717787:43938254718442 26077:26082 hsa_system_get_info(2, 0x7fe70000fa98) = 0 -43938254719241:43938254719885 26077:26082 hsa_system_get_info(2, 0x7fe70000faa0) = 0 -43938254720661:43938254721305 26077:26082 hsa_system_get_info(2, 0x7fe70000faa8) = 0 -43938254722090:43938254722735 26077:26082 hsa_system_get_info(2, 0x7fe70000fab0) = 0 -43938254723510:43938254724151 26077:26082 hsa_system_get_info(2, 0x7fe70000fab8) = 0 -43938254724932:43938254725574 26077:26082 hsa_system_get_info(2, 0x7fe70000fac0) = 0 -43938254726350:43938254727002 26077:26082 hsa_system_get_info(2, 0x7fe70000fac8) = 0 -43938254727778:43938254728420 26077:26082 hsa_system_get_info(2, 0x7fe70000fad0) = 0 -43938254729194:43938254729845 26077:26082 hsa_system_get_info(2, 0x7fe70000fad8) = 0 -43938254730626:43938254731266 26077:26082 hsa_system_get_info(2, 0x7fe70000fae0) = 0 -43938254732779:43938254733417 26077:26082 hsa_system_get_info(2, 0x7fe70000fae8) = 0 -43938254734189:43938254734834 26077:26082 hsa_system_get_info(2, 0x7fe70000faf0) = 0 -43938254735611:43938254736256 26077:26082 hsa_system_get_info(2, 0x7fe70000faf8) = 0 -43938254737031:43938254737672 26077:26082 hsa_system_get_info(2, 0x7fe70000fb00) = 0 -43938254738452:43938254739096 26077:26082 hsa_system_get_info(2, 0x7fe70000fb08) = 0 -43938254739874:43938254740511 26077:26082 hsa_system_get_info(2, 0x7fe70000fb10) = 0 -43938254741296:43938254741937 26077:26082 hsa_system_get_info(2, 0x7fe70000fb18) = 0 -43938254742713:43938254743351 26077:26082 hsa_system_get_info(2, 0x7fe70000fb20) = 0 -43938254744132:43938254744771 26077:26082 hsa_system_get_info(2, 0x7fe70000fb28) = 0 -43938254745543:43938254746185 26077:26082 hsa_system_get_info(2, 0x7fe70000fb30) = 0 -43938254746959:43938254747598 26077:26082 hsa_system_get_info(2, 0x7fe70000fb38) = 0 -43938254748386:43938254749031 26077:26082 hsa_system_get_info(2, 0x7fe70000fb40) = 0 -43938254749820:43938254750468 26077:26082 hsa_system_get_info(2, 0x7fe70000fb48) = 0 -43938254751260:43938254751908 26077:26082 hsa_system_get_info(2, 0x7fe70000fb50) = 0 -43938254752683:43938254753339 26077:26082 hsa_system_get_info(2, 0x7fe70000fb58) = 0 -43938254754112:43938254754757 26077:26082 hsa_system_get_info(2, 0x7fe70000fb60) = 0 -43938254755528:43938254756180 26077:26082 hsa_system_get_info(2, 0x7fe70000fb68) = 0 -43938254756956:43938254757601 26077:26082 hsa_system_get_info(2, 0x7fe70000fb70) = 0 -43938254758380:43938254759027 26077:26082 hsa_system_get_info(2, 0x7fe70000fb78) = 0 -43938254759805:43938254760446 26077:26082 hsa_system_get_info(2, 0x7fe70000fb80) = 0 -43938254761229:43938254761869 26077:26082 hsa_system_get_info(2, 0x7fe70000fb88) = 0 -43938254762644:43938254763287 26077:26082 hsa_system_get_info(2, 0x7fe70000fb90) = 0 -43938254764068:43938254764711 26077:26082 hsa_system_get_info(2, 0x7fe70000fb98) = 0 -43938254765486:43938254766128 26077:26082 hsa_system_get_info(2, 0x7fe70000fba0) = 0 -43938254766918:43938254767562 26077:26082 hsa_system_get_info(2, 0x7fe70000fba8) = 0 -43938254768336:43938254768989 26077:26082 hsa_system_get_info(2, 0x7fe70000fbb0) = 0 -43938254769763:43938254770409 26077:26082 hsa_system_get_info(2, 0x7fe70000fbb8) = 0 -43938254771202:43938254771848 26077:26082 hsa_system_get_info(2, 0x7fe70000fbc0) = 0 -43938254772633:43938254773278 26077:26082 hsa_system_get_info(2, 0x7fe70000fbc8) = 0 -43938254774778:43938254775436 26077:26082 hsa_system_get_info(2, 0x7fe70000fbd0) = 0 -43938254776212:43938254776852 26077:26082 hsa_system_get_info(2, 0x7fe70000fbd8) = 0 -43938254777633:43938254778281 26077:26082 hsa_system_get_info(2, 0x7fe70000fbe0) = 0 -43938254779056:43938254779696 26077:26082 hsa_system_get_info(2, 0x7fe70000fbe8) = 0 -43938254780479:43938254781118 26077:26082 hsa_system_get_info(2, 0x7fe70000fbf0) = 0 -43938254781891:43938254782532 26077:26082 hsa_system_get_info(2, 0x7fe70000fbf8) = 0 -43938254783314:43938254783956 26077:26082 hsa_system_get_info(2, 0x7fe70000fc00) = 0 -43938254784730:43938254785371 26077:26082 hsa_system_get_info(2, 0x7fe70000fc08) = 0 -43938254786155:43938254786802 26077:26082 hsa_system_get_info(2, 0x7fe70000fc10) = 0 -43938254787577:43938254788220 26077:26082 hsa_system_get_info(2, 0x7fe70000fc18) = 0 -43938254789009:43938254789655 26077:26082 hsa_system_get_info(2, 0x7fe70000fc20) = 0 -43938254790427:43938254791079 26077:26082 hsa_system_get_info(2, 0x7fe70000fc28) = 0 -43938254791852:43938254792507 26077:26082 hsa_system_get_info(2, 0x7fe70000fc30) = 0 -43938254793291:43938254793933 26077:26082 hsa_system_get_info(2, 0x7fe70000fc38) = 0 -43938254794705:43938254795349 26077:26082 hsa_system_get_info(2, 0x7fe70000fc40) = 0 -43938254796132:43938254796770 26077:26082 hsa_system_get_info(2, 0x7fe70000fc48) = 0 -43938254797544:43938254798189 26077:26082 hsa_system_get_info(2, 0x7fe70000fc50) = 0 -43938254798974:43938254799618 26077:26082 hsa_system_get_info(2, 0x7fe70000fc58) = 0 -43938254800392:43938254801045 26077:26082 hsa_system_get_info(2, 0x7fe70000fc60) = 0 -43938254801818:43938254802462 26077:26082 hsa_system_get_info(2, 0x7fe70000fc68) = 0 -43938254803245:43938254803876 26077:26082 hsa_system_get_info(2, 0x7fe70000fc70) = 0 -43938254804657:43938254805302 26077:26082 hsa_system_get_info(2, 0x7fe70000fc78) = 0 -43938254806076:43938254806731 26077:26082 hsa_system_get_info(2, 0x7fe70000fc80) = 0 -43938254807504:43938254808154 26077:26082 hsa_system_get_info(2, 0x7fe70000fc88) = 0 -43938254808939:43938254809583 26077:26082 hsa_system_get_info(2, 0x7fe70000fc90) = 0 -43938254810356:43938254811012 26077:26082 hsa_system_get_info(2, 0x7fe70000fc98) = 0 -43938254811788:43938254812434 26077:26082 hsa_system_get_info(2, 0x7fe70000fca0) = 0 -43938254813227:43938254813872 26077:26082 hsa_system_get_info(2, 0x7fe70000fca8) = 0 -43938254815439:43938254816097 26077:26082 hsa_system_get_info(2, 0x7fe70000fcb0) = 0 -43938254816869:43938254817516 26077:26082 hsa_system_get_info(2, 0x7fe70000fcb8) = 0 -43938254818303:43938254818950 26077:26082 hsa_system_get_info(2, 0x7fe70000fcc0) = 0 -43938254819724:43938254820378 26077:26082 hsa_system_get_info(2, 0x7fe70000fcc8) = 0 -43938254821157:43938254821802 26077:26082 hsa_system_get_info(2, 0x7fe70000fcd0) = 0 -43938254822585:43938254823225 26077:26082 hsa_system_get_info(2, 0x7fe70000fcd8) = 0 -43938254824000:43938254824639 26077:26082 hsa_system_get_info(2, 0x7fe70000fce0) = 0 -43938254825408:43938254826050 26077:26082 hsa_system_get_info(2, 0x7fe70000fce8) = 0 -43938254826839:43938254827487 26077:26082 hsa_system_get_info(2, 0x7fe70000fcf0) = 0 -43938254828266:43938254828906 26077:26082 hsa_system_get_info(2, 0x7fe70000fcf8) = 0 -43938254829682:43938254830325 26077:26082 hsa_system_get_info(2, 0x7fe70000fd00) = 0 -43938254831108:43938254831751 26077:26082 hsa_system_get_info(2, 0x7fe70000fd08) = 0 -43938254832530:43938254833182 26077:26082 hsa_system_get_info(2, 0x7fe70000fd10) = 0 -43938254833964:43938254834610 26077:26082 hsa_system_get_info(2, 0x7fe70000fd18) = 0 -43938254835391:43938254836034 26077:26082 hsa_system_get_info(2, 0x7fe70000fd20) = 0 -43938254836811:43938254837455 26077:26082 hsa_system_get_info(2, 0x7fe70000fd28) = 0 -43938254838234:43938254838881 26077:26082 hsa_system_get_info(2, 0x7fe70000fd30) = 0 -43938254839667:43938254840315 26077:26082 hsa_system_get_info(2, 0x7fe70000fd38) = 0 -43938254841092:43938254841737 26077:26082 hsa_system_get_info(2, 0x7fe70000fd40) = 0 -43938254842516:43938254843155 26077:26082 hsa_system_get_info(2, 0x7fe70000fd48) = 0 -43938254843934:43938254844575 26077:26082 hsa_system_get_info(2, 0x7fe70000fd50) = 0 -43938254845357:43938254846000 26077:26082 hsa_system_get_info(2, 0x7fe70000fd58) = 0 -43938254846774:43938254847413 26077:26082 hsa_system_get_info(2, 0x7fe70000fd60) = 0 -43938254848196:43938254848840 26077:26082 hsa_system_get_info(2, 0x7fe70000fd68) = 0 -43938254849619:43938254850272 26077:26082 hsa_system_get_info(2, 0x7fe70000fd70) = 0 -43938254851045:43938254851690 26077:26082 hsa_system_get_info(2, 0x7fe70000fd78) = 0 -43938254852473:43938254853118 26077:26082 hsa_system_get_info(2, 0x7fe70000fd80) = 0 -43938254853905:43938254854545 26077:26082 hsa_system_get_info(2, 0x7fe70000fd88) = 0 -43938254855322:43938254855963 26077:26082 hsa_system_get_info(2, 0x7fe70000fd90) = 0 -43938254857476:43938254858121 26077:26082 hsa_system_get_info(2, 0x7fe70000fd98) = 0 -43938254858898:43938254859534 26077:26082 hsa_system_get_info(2, 0x7fe70000fda0) = 0 -43938254860319:43938254860963 26077:26082 hsa_system_get_info(2, 0x7fe70000fda8) = 0 -43938254861737:43938254862381 26077:26082 hsa_system_get_info(2, 0x7fe70000fdb0) = 0 -43938254863164:43938254863811 26077:26082 hsa_system_get_info(2, 0x7fe70000fdb8) = 0 -43938254864590:43938254865246 26077:26082 hsa_system_get_info(2, 0x7fe70000fdc0) = 0 -43938254866020:43938254866662 26077:26082 hsa_system_get_info(2, 0x7fe70000fdc8) = 0 -43938254867443:43938254868086 26077:26082 hsa_system_get_info(2, 0x7fe70000fdd0) = 0 -43938254868864:43938254869511 26077:26082 hsa_system_get_info(2, 0x7fe70000fdd8) = 0 -43938254870307:43938254870954 26077:26082 hsa_system_get_info(2, 0x7fe70000fde0) = 0 -43938254871741:43938254872387 26077:26082 hsa_system_get_info(2, 0x7fe70000fde8) = 0 -43938254873189:43938254873833 26077:26082 hsa_system_get_info(2, 0x7fe70000fdf0) = 0 -43938254874619:43938254875266 26077:26082 hsa_system_get_info(2, 0x7fe70000fdf8) = 0 -43938254876051:43938254876691 26077:26082 hsa_system_get_info(2, 0x7fe70000fe00) = 0 -43938254877468:43938254878110 26077:26082 hsa_system_get_info(2, 0x7fe70000fe08) = 0 -43938254878893:43938254879533 26077:26082 hsa_system_get_info(2, 0x7fe70000fe10) = 0 -43938254880310:43938254880974 26077:26082 hsa_system_get_info(2, 0x7fe70000fe18) = 0 -43938254881753:43938254882400 26077:26082 hsa_system_get_info(2, 0x7fe70000fe20) = 0 -43938254883186:43938254883835 26077:26082 hsa_system_get_info(2, 0x7fe70000fe28) = 0 -43938254884620:43938254885265 26077:26082 hsa_system_get_info(2, 0x7fe70000fe30) = 0 -43938254886041:43938254886696 26077:26082 hsa_system_get_info(2, 0x7fe70000fe38) = 0 -43938254887471:43938254888115 26077:26082 hsa_system_get_info(2, 0x7fe70000fe40) = 0 -43938254888899:43938254889555 26077:26082 hsa_system_get_info(2, 0x7fe70000fe48) = 0 -43938254890341:43938254890984 26077:26082 hsa_system_get_info(2, 0x7fe70000fe50) = 0 -43938254891758:43938254892405 26077:26082 hsa_system_get_info(2, 0x7fe70000fe58) = 0 -43938254893188:43938254893838 26077:26082 hsa_system_get_info(2, 0x7fe70000fe60) = 0 -43938254894622:43938254895270 26077:26082 hsa_system_get_info(2, 0x7fe70000fe68) = 0 -43938254896048:43938254896707 26077:26082 hsa_system_get_info(2, 0x7fe70000fe70) = 0 -43938254898238:43938254898884 26077:26082 hsa_system_get_info(2, 0x7fe70000fe78) = 0 -43938254899665:43938254900307 26077:26082 hsa_system_get_info(2, 0x7fe70000fe80) = 0 -43938254901077:43938254901713 26077:26082 hsa_system_get_info(2, 0x7fe70000fe88) = 0 -43938254902493:43938254903147 26077:26082 hsa_system_get_info(2, 0x7fe70000fe90) = 0 -43938254903924:43938254904572 26077:26082 hsa_system_get_info(2, 0x7fe70000fe98) = 0 -43938254905357:43938254906005 26077:26082 hsa_system_get_info(2, 0x7fe70000fea0) = 0 -43938254906784:43938254907430 26077:26082 hsa_system_get_info(2, 0x7fe70000fea8) = 0 -43938254908204:43938254908847 26077:26082 hsa_system_get_info(2, 0x7fe70000feb0) = 0 -43938254909633:43938254910280 26077:26082 hsa_system_get_info(2, 0x7fe70000feb8) = 0 -43938254911057:43938254911711 26077:26082 hsa_system_get_info(2, 0x7fe70000fec0) = 0 -43938254912480:43938254913119 26077:26082 hsa_system_get_info(2, 0x7fe70000fec8) = 0 -43938254913900:43938254914552 26077:26082 hsa_system_get_info(2, 0x7fe70000fed0) = 0 -43938254915330:43938254915994 26077:26082 hsa_system_get_info(2, 0x7fe70000fed8) = 0 -43938254916769:43938254917414 26077:26082 hsa_system_get_info(2, 0x7fe70000fee0) = 0 -43938254918195:43938254918836 26077:26082 hsa_system_get_info(2, 0x7fe70000fee8) = 0 -43938254919617:43938254920261 26077:26082 hsa_system_get_info(2, 0x7fe70000fef0) = 0 -43938254921043:43938254921689 26077:26082 hsa_system_get_info(2, 0x7fe70000fef8) = 0 -43938254922473:43938254923120 26077:26082 hsa_system_get_info(2, 0x7fe70000ff00) = 0 -43938254923896:43938254924538 26077:26082 hsa_system_get_info(2, 0x7fe70000ff08) = 0 -43938254925319:43938254925957 26077:26082 hsa_system_get_info(2, 0x7fe70000ff10) = 0 -43938254926733:43938254927379 26077:26082 hsa_system_get_info(2, 0x7fe70000ff18) = 0 -43938254928164:43938254928803 26077:26082 hsa_system_get_info(2, 0x7fe70000ff20) = 0 -43938254929601:43938254930239 26077:26082 hsa_system_get_info(2, 0x7fe70000ff28) = 0 -43938254931010:43938254931655 26077:26082 hsa_system_get_info(2, 0x7fe70000ff30) = 0 -43938254932443:43938254933090 26077:26082 hsa_system_get_info(2, 0x7fe70000ff38) = 0 -43938254933864:43938254934507 26077:26082 hsa_system_get_info(2, 0x7fe70000ff40) = 0 -43938254935291:43938254935936 26077:26082 hsa_system_get_info(2, 0x7fe70000ff48) = 0 -43938254936713:43938254937369 26077:26082 hsa_system_get_info(2, 0x7fe70000ff50) = 0 -43938254939657:43938254940302 26077:26082 hsa_system_get_info(2, 0x7fe70000ff58) = 0 -43938254941104:43938254941749 26077:26082 hsa_system_get_info(2, 0x7fe70000ff60) = 0 -43938254942530:43938254943175 26077:26082 hsa_system_get_info(2, 0x7fe70000ff68) = 0 -43938254943949:43938254944590 26077:26082 hsa_system_get_info(2, 0x7fe70000ff70) = 0 -43938254945367:43938254946007 26077:26082 hsa_system_get_info(2, 0x7fe70000ff78) = 0 -43938254946778:43938254947423 26077:26082 hsa_system_get_info(2, 0x7fe70000ff80) = 0 -43938254948194:43938254948838 26077:26082 hsa_system_get_info(2, 0x7fe70000ff88) = 0 -43938254949621:43938254950264 26077:26082 hsa_system_get_info(2, 0x7fe70000ff90) = 0 -43938254951037:43938254951682 26077:26082 hsa_system_get_info(2, 0x7fe70000ff98) = 0 -43938254952462:43938254953100 26077:26082 hsa_system_get_info(2, 0x7fe70000ffa0) = 0 -43938254953874:43938254954518 26077:26082 hsa_system_get_info(2, 0x7fe70000ffa8) = 0 -43938254955308:43938254955979 26077:26082 hsa_system_get_info(2, 0x7fe70000ffb0) = 0 -43938254956759:43938254957402 26077:26082 hsa_system_get_info(2, 0x7fe70000ffb8) = 0 -43938254958185:43938254958840 26077:26082 hsa_system_get_info(2, 0x7fe70000ffc0) = 0 -43938254959622:43938254960267 26077:26082 hsa_system_get_info(2, 0x7fe70000ffc8) = 0 -43938254961042:43938254961686 26077:26082 hsa_system_get_info(2, 0x7fe70000ffd0) = 0 -43938254962469:43938254963114 26077:26082 hsa_system_get_info(2, 0x7fe70000ffd8) = 0 -43938254963887:43938254964528 26077:26082 hsa_system_get_info(2, 0x7fe70000ffe0) = 0 -43938254965309:43938254965953 26077:26082 hsa_system_get_info(2, 0x7fe70000ffe8) = 0 -43938254966727:43938254967368 26077:26082 hsa_system_get_info(2, 0x7fe70000fff0) = 0 -43938254968147:43938254968797 26077:26082 hsa_system_get_info(2, 0x7fe70000fff8) = 0 -43938254969572:43938254970229 26077:26082 hsa_system_get_info(2, 0x7fe700010000) = 0 -43938254971010:43938254971653 26077:26082 hsa_system_get_info(2, 0x7fe700010008) = 0 -43938254972434:43938254973076 26077:26082 hsa_system_get_info(2, 0x7fe700010010) = 0 -43938254973850:43938254974493 26077:26082 hsa_system_get_info(2, 0x7fe700010018) = 0 -43938254975276:43938254975933 26077:26082 hsa_system_get_info(2, 0x7fe700010020) = 0 -43938254976711:43938254977352 26077:26082 hsa_system_get_info(2, 0x7fe700010028) = 0 -43938254978124:43938254978767 26077:26082 hsa_system_get_info(2, 0x7fe700010030) = 0 -43938254979547:43938254980187 26077:26082 hsa_system_get_info(2, 0x7fe700010038) = 0 -43938254981694:43938254982350 26077:26082 hsa_system_get_info(2, 0x7fe700010040) = 0 -43938254983123:43938254983769 26077:26082 hsa_system_get_info(2, 0x7fe700010048) = 0 -43938254984553:43938254985195 26077:26082 hsa_system_get_info(2, 0x7fe700010050) = 0 -43938254985969:43938254986610 26077:26082 hsa_system_get_info(2, 0x7fe700010058) = 0 -43938254987391:43938254988023 26077:26082 hsa_system_get_info(2, 0x7fe700010060) = 0 -43938254988801:43938254989447 26077:26082 hsa_system_get_info(2, 0x7fe700010068) = 0 -43938254990222:43938254990864 26077:26082 hsa_system_get_info(2, 0x7fe700010070) = 0 -43938254991660:43938254992303 26077:26082 hsa_system_get_info(2, 0x7fe700010078) = 0 -43938254993084:43938254993729 26077:26082 hsa_system_get_info(2, 0x7fe700010080) = 0 -43938254994500:43938254995144 26077:26082 hsa_system_get_info(2, 0x7fe700010088) = 0 -43938254995925:43938254996569 26077:26082 hsa_system_get_info(2, 0x7fe700010090) = 0 -43938254997342:43938254997985 26077:26082 hsa_system_get_info(2, 0x7fe700010098) = 0 -43938254998771:43938254999415 26077:26082 hsa_system_get_info(2, 0x7fe7000100a0) = 0 -43938255000186:43938255000828 26077:26082 hsa_system_get_info(2, 0x7fe7000100a8) = 0 -43938255001607:43938255002254 26077:26082 hsa_system_get_info(2, 0x7fe7000100b0) = 0 -43938255003026:43938255003671 26077:26082 hsa_system_get_info(2, 0x7fe7000100b8) = 0 -43938255004456:43938255005103 26077:26082 hsa_system_get_info(2, 0x7fe7000100c0) = 0 -43938255005900:43938255006548 26077:26082 hsa_system_get_info(2, 0x7fe7000100c8) = 0 -43938255007328:43938255007969 26077:26082 hsa_system_get_info(2, 0x7fe7000100d0) = 0 -43938255008746:43938255009390 26077:26082 hsa_system_get_info(2, 0x7fe7000100d8) = 0 -43938255010171:43938255010812 26077:26082 hsa_system_get_info(2, 0x7fe7000100e0) = 0 -43938255011586:43938255012228 26077:26082 hsa_system_get_info(2, 0x7fe7000100e8) = 0 -43938255013009:43938255013647 26077:26082 hsa_system_get_info(2, 0x7fe7000100f0) = 0 -43938255014421:43938255015061 26077:26082 hsa_system_get_info(2, 0x7fe7000100f8) = 0 -43938255015834:43938255016473 26077:26082 hsa_system_get_info(2, 0x7fe700010100) = 0 -43938255017255:43938255017898 26077:26082 hsa_system_get_info(2, 0x7fe700010108) = 0 -43938255018672:43938255019315 26077:26082 hsa_system_get_info(2, 0x7fe700010110) = 0 -43938255020096:43938255020740 26077:26082 hsa_system_get_info(2, 0x7fe700010118) = 0 -43938255022256:43938255022898 26077:26082 hsa_system_get_info(2, 0x7fe700010120) = 0 -43938255023675:43938255024324 26077:26082 hsa_system_get_info(2, 0x7fe700010128) = 0 -43938255025116:43938255025761 26077:26082 hsa_system_get_info(2, 0x7fe700010130) = 0 -43938255026547:43938255027190 26077:26082 hsa_system_get_info(2, 0x7fe700010138) = 0 -43938255027966:43938255028624 26077:26082 hsa_system_get_info(2, 0x7fe700010140) = 0 -43938255029401:43938255030040 26077:26082 hsa_system_get_info(2, 0x7fe700010148) = 0 -43938255030824:43938255031472 26077:26082 hsa_system_get_info(2, 0x7fe700010150) = 0 -43938255032259:43938255032906 26077:26082 hsa_system_get_info(2, 0x7fe700010158) = 0 -43938255033700:43938255034341 26077:26082 hsa_system_get_info(2, 0x7fe700010160) = 0 -43938255035117:43938255035768 26077:26082 hsa_system_get_info(2, 0x7fe700010168) = 0 -43938255036552:43938255037193 26077:26082 hsa_system_get_info(2, 0x7fe700010170) = 0 -43938255037972:43938255038637 26077:26082 hsa_system_get_info(2, 0x7fe700010178) = 0 -43938255039423:43938255040071 26077:26082 hsa_system_get_info(2, 0x7fe700010180) = 0 -43938255040848:43938255041502 26077:26082 hsa_system_get_info(2, 0x7fe700010188) = 0 -43938255042277:43938255042919 26077:26082 hsa_system_get_info(2, 0x7fe700010190) = 0 -43938255043694:43938255044346 26077:26082 hsa_system_get_info(2, 0x7fe700010198) = 0 -43938255045117:43938255045761 26077:26082 hsa_system_get_info(2, 0x7fe7000101a0) = 0 -43938255046549:43938255047196 26077:26082 hsa_system_get_info(2, 0x7fe7000101a8) = 0 -43938255047996:43938255048637 26077:26082 hsa_system_get_info(2, 0x7fe7000101b0) = 0 -43938255049409:43938255050052 26077:26082 hsa_system_get_info(2, 0x7fe7000101b8) = 0 -43938255050833:43938255051477 26077:26082 hsa_system_get_info(2, 0x7fe7000101c0) = 0 -43938255052255:43938255052916 26077:26082 hsa_system_get_info(2, 0x7fe7000101c8) = 0 -43938255053692:43938255054337 26077:26082 hsa_system_get_info(2, 0x7fe7000101d0) = 0 -43938255055123:43938255055768 26077:26082 hsa_system_get_info(2, 0x7fe7000101d8) = 0 -43938255056552:43938255057197 26077:26082 hsa_system_get_info(2, 0x7fe7000101e0) = 0 -43938255057974:43938255058614 26077:26082 hsa_system_get_info(2, 0x7fe7000101e8) = 0 -43938255059393:43938255060041 26077:26082 hsa_system_get_info(2, 0x7fe7000101f0) = 0 -43938255060816:43938255061461 26077:26082 hsa_system_get_info(2, 0x7fe7000101f8) = 0 -43938255062243:43938255062889 26077:26082 hsa_system_get_info(2, 0x7fe700010200) = 0 -43938255064490:43938255065137 26077:26082 hsa_system_get_info(2, 0x7fe700010208) = 0 -43938255065938:43938255066584 26077:26082 hsa_system_get_info(2, 0x7fe700010210) = 0 -43938255067367:43938255068015 26077:26082 hsa_system_get_info(2, 0x7fe700010218) = 0 -43938255068788:43938255069429 26077:26082 hsa_system_get_info(2, 0x7fe700010220) = 0 -43938255070213:43938255070856 26077:26082 hsa_system_get_info(2, 0x7fe700010228) = 0 -43938255071640:43938255072289 26077:26082 hsa_system_get_info(2, 0x7fe700010230) = 0 -43938255073064:43938255073704 26077:26082 hsa_system_get_info(2, 0x7fe700010238) = 0 -43938255074485:43938255075130 26077:26082 hsa_system_get_info(2, 0x7fe700010240) = 0 -43938255075904:43938255076549 26077:26082 hsa_system_get_info(2, 0x7fe700010248) = 0 -43938255077331:43938255077977 26077:26082 hsa_system_get_info(2, 0x7fe700010250) = 0 -43938255078747:43938255079391 26077:26082 hsa_system_get_info(2, 0x7fe700010258) = 0 -43938255080172:43938255080814 26077:26082 hsa_system_get_info(2, 0x7fe700010260) = 0 -43938255081594:43938255082245 26077:26082 hsa_system_get_info(2, 0x7fe700010268) = 0 -43938255083031:43938255083669 26077:26082 hsa_system_get_info(2, 0x7fe700010270) = 0 -43938255084447:43938255085096 26077:26082 hsa_system_get_info(2, 0x7fe700010278) = 0 -43938255085871:43938255086516 26077:26082 hsa_system_get_info(2, 0x7fe700010280) = 0 -43938255087298:43938255087936 26077:26082 hsa_system_get_info(2, 0x7fe700010288) = 0 -43938255088707:43938255089349 26077:26082 hsa_system_get_info(2, 0x7fe700010290) = 0 -43938255090131:43938255090775 26077:26082 hsa_system_get_info(2, 0x7fe700010298) = 0 -43938255091548:43938255092189 26077:26082 hsa_system_get_info(2, 0x7fe7000102a0) = 0 -43938255092972:43938255093614 26077:26082 hsa_system_get_info(2, 0x7fe7000102a8) = 0 -43938255094387:43938255095029 26077:26082 hsa_system_get_info(2, 0x7fe7000102b0) = 0 -43938255095805:43938255096457 26077:26082 hsa_system_get_info(2, 0x7fe7000102b8) = 0 -43938255097232:43938255097885 26077:26082 hsa_system_get_info(2, 0x7fe7000102c0) = 0 -43938255098666:43938255099310 26077:26082 hsa_system_get_info(2, 0x7fe7000102c8) = 0 -43938255100085:43938255100739 26077:26082 hsa_system_get_info(2, 0x7fe7000102d0) = 0 -43938255101515:43938255102193 26077:26082 hsa_system_get_info(2, 0x7fe7000102d8) = 0 -43938255102966:43938255103609 26077:26082 hsa_system_get_info(2, 0x7fe7000102e0) = 0 -43938255105144:43938255105791 26077:26082 hsa_system_get_info(2, 0x7fe7000102e8) = 0 -43938255106563:43938255107209 26077:26082 hsa_system_get_info(2, 0x7fe7000102f0) = 0 -43938255107993:43938255108637 26077:26082 hsa_system_get_info(2, 0x7fe7000102f8) = 0 -43938255109412:43938255110063 26077:26082 hsa_system_get_info(2, 0x7fe700010300) = 0 -43938255110839:43938255111480 26077:26082 hsa_system_get_info(2, 0x7fe700010308) = 0 -43938255112250:43938255112891 26077:26082 hsa_system_get_info(2, 0x7fe700010310) = 0 -43938255113674:43938255114312 26077:26082 hsa_system_get_info(2, 0x7fe700010318) = 0 -43938255115085:43938255115728 26077:26082 hsa_system_get_info(2, 0x7fe700010320) = 0 -43938255116513:43938255117160 26077:26082 hsa_system_get_info(2, 0x7fe700010328) = 0 -43938255117933:43938255118578 26077:26082 hsa_system_get_info(2, 0x7fe700010330) = 0 -43938255119360:43938255120005 26077:26082 hsa_system_get_info(2, 0x7fe700010338) = 0 -43938255120792:43938255121430 26077:26082 hsa_system_get_info(2, 0x7fe700010340) = 0 -43938255122212:43938255122849 26077:26082 hsa_system_get_info(2, 0x7fe700010348) = 0 -43938255123644:43938255124292 26077:26082 hsa_system_get_info(2, 0x7fe700010350) = 0 -43938255125075:43938255125716 26077:26082 hsa_system_get_info(2, 0x7fe700010358) = 0 -43938255126493:43938255127134 26077:26082 hsa_system_get_info(2, 0x7fe700010360) = 0 -43938255127902:43938255128554 26077:26082 hsa_system_get_info(2, 0x7fe700010368) = 0 -43938255129330:43938255129966 26077:26082 hsa_system_get_info(2, 0x7fe700010370) = 0 -43938255130741:43938255131381 26077:26082 hsa_system_get_info(2, 0x7fe700010378) = 0 -43938255132162:43938255132807 26077:26082 hsa_system_get_info(2, 0x7fe700010380) = 0 -43938255133581:43938255134220 26077:26082 hsa_system_get_info(2, 0x7fe700010388) = 0 -43938255135001:43938255135648 26077:26082 hsa_system_get_info(2, 0x7fe700010390) = 0 -43938255136426:43938255137079 26077:26082 hsa_system_get_info(2, 0x7fe700010398) = 0 -43938255137855:43938255138499 26077:26082 hsa_system_get_info(2, 0x7fe7000103a0) = 0 -43938255139288:43938255139928 26077:26082 hsa_system_get_info(2, 0x7fe7000103a8) = 0 -43938255140701:43938255141339 26077:26082 hsa_system_get_info(2, 0x7fe7000103b0) = 0 -43938255142125:43938255142769 26077:26082 hsa_system_get_info(2, 0x7fe7000103b8) = 0 -43938255143548:43938255144211 26077:26082 hsa_system_get_info(2, 0x7fe7000103c0) = 0 -43938255144985:43938255145632 26077:26082 hsa_system_get_info(2, 0x7fe7000103c8) = 0 -43938255147225:43938255147884 26077:26082 hsa_system_get_info(2, 0x7fe7000103d0) = 0 -43938255148659:43938255149302 26077:26082 hsa_system_get_info(2, 0x7fe7000103d8) = 0 -43938255150085:43938255150726 26077:26082 hsa_system_get_info(2, 0x7fe7000103e0) = 0 -43938255151499:43938255152142 26077:26082 hsa_system_get_info(2, 0x7fe7000103e8) = 0 -43938255152942:43938255153591 26077:26082 hsa_system_get_info(2, 0x7fe7000103f0) = 0 -43938255154370:43938255155014 26077:26082 hsa_system_get_info(2, 0x7fe7000103f8) = 0 -43938255155790:43938255156431 26077:26082 hsa_system_get_info(2, 0x7fe700010400) = 0 -43938255157211:43938255157853 26077:26082 hsa_system_get_info(2, 0x7fe700010408) = 0 -43938255158630:43938255159290 26077:26082 hsa_system_get_info(2, 0x7fe700010410) = 0 -43938255160063:43938255160706 26077:26082 hsa_system_get_info(2, 0x7fe700010418) = 0 -43938255161493:43938255162136 26077:26082 hsa_system_get_info(2, 0x7fe700010420) = 0 -43938255162912:43938255163556 26077:26082 hsa_system_get_info(2, 0x7fe700010428) = 0 -43938255164339:43938255164985 26077:26082 hsa_system_get_info(2, 0x7fe700010430) = 0 -43938255165756:43938255166400 26077:26082 hsa_system_get_info(2, 0x7fe700010438) = 0 -43938255167180:43938255167819 26077:26082 hsa_system_get_info(2, 0x7fe700010440) = 0 -43938255168592:43938255169237 26077:26082 hsa_system_get_info(2, 0x7fe700010448) = 0 -43938255170016:43938255170645 26077:26082 hsa_system_get_info(2, 0x7fe700010450) = 0 -43938255171433:43938255172079 26077:26082 hsa_system_get_info(2, 0x7fe700010458) = 0 -43938255172872:43938255173519 26077:26082 hsa_system_get_info(2, 0x7fe700010460) = 0 -43938255174303:43938255174943 26077:26082 hsa_system_get_info(2, 0x7fe700010468) = 0 -43938255175718:43938255176358 26077:26082 hsa_system_get_info(2, 0x7fe700010470) = 0 -43938255177144:43938255177790 26077:26082 hsa_system_get_info(2, 0x7fe700010478) = 0 -43938255178566:43938255179213 26077:26082 hsa_system_get_info(2, 0x7fe700010480) = 0 -43938255179996:43938255180641 26077:26082 hsa_system_get_info(2, 0x7fe700010488) = 0 -43938255181413:43938255182068 26077:26082 hsa_system_get_info(2, 0x7fe700010490) = 0 -43938255182848:43938255183492 26077:26082 hsa_system_get_info(2, 0x7fe700010498) = 0 -43938255184272:43938255184914 26077:26082 hsa_system_get_info(2, 0x7fe7000104a0) = 0 -43938255185693:43938255186333 26077:26082 hsa_system_get_info(2, 0x7fe7000104a8) = 0 -43938255187847:43938255188497 26077:26082 hsa_system_get_info(2, 0x7fe7000104b0) = 0 -43938255189279:43938255189921 26077:26082 hsa_system_get_info(2, 0x7fe7000104b8) = 0 -43938255190694:43938255191336 26077:26082 hsa_system_get_info(2, 0x7fe7000104c0) = 0 -43938255192116:43938255192756 26077:26082 hsa_system_get_info(2, 0x7fe7000104c8) = 0 -43938255193531:43938255194167 26077:26082 hsa_system_get_info(2, 0x7fe7000104d0) = 0 -43938255194951:43938255195593 26077:26082 hsa_system_get_info(2, 0x7fe7000104d8) = 0 -43938255196367:43938255197005 26077:26082 hsa_system_get_info(2, 0x7fe7000104e0) = 0 -43938255197778:43938255198424 26077:26082 hsa_system_get_info(2, 0x7fe7000104e8) = 0 -43938255199208:43938255199854 26077:26082 hsa_system_get_info(2, 0x7fe7000104f0) = 0 -43938255200633:43938255201279 26077:26082 hsa_system_get_info(2, 0x7fe7000104f8) = 0 -43938255202053:43938255202695 26077:26082 hsa_system_get_info(2, 0x7fe700010500) = 0 -43938255203482:43938255204122 26077:26082 hsa_system_get_info(2, 0x7fe700010508) = 0 -43938255204898:43938255205540 26077:26082 hsa_system_get_info(2, 0x7fe700010510) = 0 -43938255206333:43938255206973 26077:26082 hsa_system_get_info(2, 0x7fe700010518) = 0 -43938255207747:43938255208388 26077:26082 hsa_system_get_info(2, 0x7fe700010520) = 0 -43938255209186:43938255209824 26077:26082 hsa_system_get_info(2, 0x7fe700010528) = 0 -43938255210606:43938255211254 26077:26082 hsa_system_get_info(2, 0x7fe700010530) = 0 -43938255212028:43938255212680 26077:26082 hsa_system_get_info(2, 0x7fe700010538) = 0 -43938255213456:43938255214099 26077:26082 hsa_system_get_info(2, 0x7fe700010540) = 0 -43938255214882:43938255215527 26077:26082 hsa_system_get_info(2, 0x7fe700010548) = 0 -43938255216304:43938255216949 26077:26082 hsa_system_get_info(2, 0x7fe700010550) = 0 -43938255217732:43938255218375 26077:26082 hsa_system_get_info(2, 0x7fe700010558) = 0 -43938255219152:43938255219809 26077:26082 hsa_system_get_info(2, 0x7fe700010560) = 0 -43938255220585:43938255221228 26077:26082 hsa_system_get_info(2, 0x7fe700010568) = 0 -43938255222010:43938255222656 26077:26082 hsa_system_get_info(2, 0x7fe700010570) = 0 -43938255223429:43938255224077 26077:26082 hsa_system_get_info(2, 0x7fe700010578) = 0 -43938255224860:43938255225505 26077:26082 hsa_system_get_info(2, 0x7fe700010580) = 0 -43938255226289:43938255226933 26077:26082 hsa_system_get_info(2, 0x7fe700010588) = 0 -43938255227729:43938255228377 26077:26082 hsa_system_get_info(2, 0x7fe700010590) = 0 -43938255230505:43938255231157 26077:26082 hsa_system_get_info(2, 0x7fe700010598) = 0 -43938255231942:43938255232586 26077:26082 hsa_system_get_info(2, 0x7fe7000105a0) = 0 -43938255233358:43938255233999 26077:26082 hsa_system_get_info(2, 0x7fe7000105a8) = 0 -43938255234783:43938255235425 26077:26082 hsa_system_get_info(2, 0x7fe7000105b0) = 0 -43938255236200:43938255236838 26077:26082 hsa_system_get_info(2, 0x7fe7000105b8) = 0 -43938255237625:43938255238266 26077:26082 hsa_system_get_info(2, 0x7fe7000105c0) = 0 -43938255239042:43938255239685 26077:26082 hsa_system_get_info(2, 0x7fe7000105c8) = 0 -43938255240464:43938255241108 26077:26082 hsa_system_get_info(2, 0x7fe7000105d0) = 0 -43938255241881:43938255242538 26077:26082 hsa_system_get_info(2, 0x7fe7000105d8) = 0 -43938255243310:43938255243952 26077:26082 hsa_system_get_info(2, 0x7fe7000105e0) = 0 -43938255244747:43938255245391 26077:26082 hsa_system_get_info(2, 0x7fe7000105e8) = 0 -43938255246223:43938255246863 26077:26082 hsa_system_get_info(2, 0x7fe7000105f0) = 0 -43938255247639:43938255248284 26077:26082 hsa_system_get_info(2, 0x7fe7000105f8) = 0 -43938255249066:43938255249710 26077:26082 hsa_system_get_info(2, 0x7fe700010600) = 0 -43938255250483:43938255251130 26077:26082 hsa_system_get_info(2, 0x7fe700010608) = 0 -43938255251915:43938255252557 26077:26082 hsa_system_get_info(2, 0x7fe700010610) = 0 -43938255253332:43938255253984 26077:26082 hsa_system_get_info(2, 0x7fe700010618) = 0 -43938255254759:43938255255400 26077:26082 hsa_system_get_info(2, 0x7fe700010620) = 0 -43938255256174:43938255256826 26077:26082 hsa_system_get_info(2, 0x7fe700010628) = 0 -43938255257596:43938255258237 26077:26082 hsa_system_get_info(2, 0x7fe700010630) = 0 -43938255259014:43938255259669 26077:26082 hsa_system_get_info(2, 0x7fe700010638) = 0 -43938255260447:43938255261090 26077:26082 hsa_system_get_info(2, 0x7fe700010640) = 0 -43938255261871:43938255262511 26077:26082 hsa_system_get_info(2, 0x7fe700010648) = 0 -43938255263284:43938255263926 26077:26082 hsa_system_get_info(2, 0x7fe700010650) = 0 -43938255264698:43938255265339 26077:26082 hsa_system_get_info(2, 0x7fe700010658) = 0 -43938255266134:43938255266777 26077:26082 hsa_system_get_info(2, 0x7fe700010660) = 0 -43938255267561:43938255268201 26077:26082 hsa_system_get_info(2, 0x7fe700010668) = 0 -43938255268972:43938255269615 26077:26082 hsa_system_get_info(2, 0x7fe700010670) = 0 -43938255271125:43938255271767 26077:26082 hsa_system_get_info(2, 0x7fe700010678) = 0 -43938255272538:43938255273183 26077:26082 hsa_system_get_info(2, 0x7fe700010680) = 0 -43938255273964:43938255274603 26077:26082 hsa_system_get_info(2, 0x7fe700010688) = 0 -43938255275403:43938255276049 26077:26082 hsa_system_get_info(2, 0x7fe700010690) = 0 -43938255276848:43938255277494 26077:26082 hsa_system_get_info(2, 0x7fe700010698) = 0 -43938255278268:43938255278920 26077:26082 hsa_system_get_info(2, 0x7fe7000106a0) = 0 -43938255279699:43938255280343 26077:26082 hsa_system_get_info(2, 0x7fe7000106a8) = 0 -43938255281128:43938255281770 26077:26082 hsa_system_get_info(2, 0x7fe7000106b0) = 0 -43938255282541:43938255283183 26077:26082 hsa_system_get_info(2, 0x7fe7000106b8) = 0 -43938255283965:43938255284607 26077:26082 hsa_system_get_info(2, 0x7fe7000106c0) = 0 -43938255285380:43938255286023 26077:26082 hsa_system_get_info(2, 0x7fe7000106c8) = 0 -43938255286811:43938255287453 26077:26082 hsa_system_get_info(2, 0x7fe7000106d0) = 0 -43938255288230:43938255288875 26077:26082 hsa_system_get_info(2, 0x7fe7000106d8) = 0 -43938255289654:43938255290294 26077:26082 hsa_system_get_info(2, 0x7fe7000106e0) = 0 -43938255291071:43938255291715 26077:26082 hsa_system_get_info(2, 0x7fe7000106e8) = 0 -43938255292495:43938255293139 26077:26082 hsa_system_get_info(2, 0x7fe7000106f0) = 0 -43938255293917:43938255294569 26077:26082 hsa_system_get_info(2, 0x7fe7000106f8) = 0 -43938255295341:43938255295987 26077:26082 hsa_system_get_info(2, 0x7fe700010700) = 0 -43938255296773:43938255297432 26077:26082 hsa_system_get_info(2, 0x7fe700010708) = 0 -43938255298212:43938255298857 26077:26082 hsa_system_get_info(2, 0x7fe700010710) = 0 -43938255299637:43938255300276 26077:26082 hsa_system_get_info(2, 0x7fe700010718) = 0 -43938255301055:43938255301697 26077:26082 hsa_system_get_info(2, 0x7fe700010720) = 0 -43938255302476:43938255303124 26077:26082 hsa_system_get_info(2, 0x7fe700010728) = 0 -43938255303909:43938255304552 26077:26082 hsa_system_get_info(2, 0x7fe700010730) = 0 -43938255305334:43938255305975 26077:26082 hsa_system_get_info(2, 0x7fe700010738) = 0 -43938255306751:43938255307394 26077:26082 hsa_system_get_info(2, 0x7fe700010740) = 0 -43938255308179:43938255308822 26077:26082 hsa_system_get_info(2, 0x7fe700010748) = 0 -43938255309597:43938255310243 26077:26082 hsa_system_get_info(2, 0x7fe700010750) = 0 -43938255311754:43938255312398 26077:26082 hsa_system_get_info(2, 0x7fe700010758) = 0 -43938255313181:43938255313825 26077:26082 hsa_system_get_info(2, 0x7fe700010760) = 0 -43938255314598:43938255315240 26077:26082 hsa_system_get_info(2, 0x7fe700010768) = 0 -43938255316021:43938255316662 26077:26082 hsa_system_get_info(2, 0x7fe700010770) = 0 -43938255317435:43938255318080 26077:26082 hsa_system_get_info(2, 0x7fe700010778) = 0 -43938255318853:43938255319511 26077:26082 hsa_system_get_info(2, 0x7fe700010780) = 0 -43938255320286:43938255320933 26077:26082 hsa_system_get_info(2, 0x7fe700010788) = 0 -43938255321728:43938255322372 26077:26082 hsa_system_get_info(2, 0x7fe700010790) = 0 -43938255323154:43938255323794 26077:26082 hsa_system_get_info(2, 0x7fe700010798) = 0 -43938255324567:43938255325207 26077:26082 hsa_system_get_info(2, 0x7fe7000107a0) = 0 -43938255325990:43938255326634 26077:26082 hsa_system_get_info(2, 0x7fe7000107a8) = 0 -43938255327418:43938255328057 26077:26082 hsa_system_get_info(2, 0x7fe7000107b0) = 0 -43938255328855:43938255329507 26077:26082 hsa_system_get_info(2, 0x7fe7000107b8) = 0 -43938255330285:43938255330924 26077:26082 hsa_system_get_info(2, 0x7fe7000107c0) = 0 -43938255331700:43938255332352 26077:26082 hsa_system_get_info(2, 0x7fe7000107c8) = 0 -43938255333126:43938255333772 26077:26082 hsa_system_get_info(2, 0x7fe7000107d0) = 0 -43938255334550:43938255335192 26077:26082 hsa_system_get_info(2, 0x7fe7000107d8) = 0 -43938255335973:43938255336620 26077:26082 hsa_system_get_info(2, 0x7fe7000107e0) = 0 -43938255337405:43938255338050 26077:26082 hsa_system_get_info(2, 0x7fe7000107e8) = 0 -43938255338823:43938255339473 26077:26082 hsa_system_get_info(2, 0x7fe7000107f0) = 0 -43938255340244:43938255340889 26077:26082 hsa_system_get_info(2, 0x7fe7000107f8) = 0 -43938255341687:43938255342334 26077:26082 hsa_system_get_info(2, 0x7fe700010800) = 0 -43938255343107:43938255343760 26077:26082 hsa_system_get_info(2, 0x7fe700010808) = 0 -43938255344534:43938255345177 26077:26082 hsa_system_get_info(2, 0x7fe700010810) = 0 -43938255345961:43938255346605 26077:26082 hsa_system_get_info(2, 0x7fe700010818) = 0 -43938255347379:43938255348024 26077:26082 hsa_system_get_info(2, 0x7fe700010820) = 0 -43938255348806:43938255349453 26077:26082 hsa_system_get_info(2, 0x7fe700010828) = 0 -43938255350225:43938255350869 26077:26082 hsa_system_get_info(2, 0x7fe700010830) = 0 -43938255351653:43938255352298 26077:26082 hsa_system_get_info(2, 0x7fe700010838) = 0 -43938255353810:43938255354457 26077:26082 hsa_system_get_info(2, 0x7fe700010840) = 0 -43938255355231:43938255355883 26077:26082 hsa_system_get_info(2, 0x7fe700010848) = 0 -43938255356655:43938255357299 26077:26082 hsa_system_get_info(2, 0x7fe700010850) = 0 -43938255358084:43938255358725 26077:26082 hsa_system_get_info(2, 0x7fe700010858) = 0 -43938255359501:43938255360142 26077:26082 hsa_system_get_info(2, 0x7fe700010860) = 0 -43938255360913:43938255361554 26077:26082 hsa_system_get_info(2, 0x7fe700010868) = 0 -43938255362346:43938255362987 26077:26082 hsa_system_get_info(2, 0x7fe700010870) = 0 -43938255363759:43938255364410 26077:26082 hsa_system_get_info(2, 0x7fe700010878) = 0 -43938255365183:43938255365826 26077:26082 hsa_system_get_info(2, 0x7fe700010880) = 0 -43938255366598:43938255367239 26077:26082 hsa_system_get_info(2, 0x7fe700010888) = 0 -43938255368017:43938255368663 26077:26082 hsa_system_get_info(2, 0x7fe700010890) = 0 -43938255369436:43938255370082 26077:26082 hsa_system_get_info(2, 0x7fe700010898) = 0 -43938255370865:43938255371508 26077:26082 hsa_system_get_info(2, 0x7fe7000108a0) = 0 -43938255372292:43938255372937 26077:26082 hsa_system_get_info(2, 0x7fe7000108a8) = 0 -43938255373715:43938255374355 26077:26082 hsa_system_get_info(2, 0x7fe7000108b0) = 0 -43938255375137:43938255375778 26077:26082 hsa_system_get_info(2, 0x7fe7000108b8) = 0 -43938255376550:43938255377191 26077:26082 hsa_system_get_info(2, 0x7fe7000108c0) = 0 -43938255377964:43938255378607 26077:26082 hsa_system_get_info(2, 0x7fe7000108c8) = 0 -43938255379390:43938255380031 26077:26082 hsa_system_get_info(2, 0x7fe7000108d0) = 0 -43938255380822:43938255381466 26077:26082 hsa_system_get_info(2, 0x7fe7000108d8) = 0 -43938255382243:43938255382883 26077:26082 hsa_system_get_info(2, 0x7fe7000108e0) = 0 -43938255383666:43938255384314 26077:26082 hsa_system_get_info(2, 0x7fe7000108e8) = 0 -43938255385087:43938255385741 26077:26082 hsa_system_get_info(2, 0x7fe7000108f0) = 0 -43938255386516:43938255387160 26077:26082 hsa_system_get_info(2, 0x7fe7000108f8) = 0 -43938255387942:43938255388591 26077:26082 hsa_system_get_info(2, 0x7fe700010900) = 0 -43938255389368:43938255390012 26077:26082 hsa_system_get_info(2, 0x7fe700010908) = 0 -43938255390798:43938255391444 26077:26082 hsa_system_get_info(2, 0x7fe700010910) = 0 -43938255392230:43938255392876 26077:26082 hsa_system_get_info(2, 0x7fe700010918) = 0 -43938255394406:43938255395073 26077:26082 hsa_system_get_info(2, 0x7fe700010920) = 0 -43938255395847:43938255396492 26077:26082 hsa_system_get_info(2, 0x7fe700010928) = 0 -43938255397294:43938255397951 26077:26082 hsa_system_get_info(2, 0x7fe700010930) = 0 -43938255398723:43938255399363 26077:26082 hsa_system_get_info(2, 0x7fe700010938) = 0 -43938255400135:43938255400775 26077:26082 hsa_system_get_info(2, 0x7fe700010940) = 0 -43938255401554:43938255402197 26077:26082 hsa_system_get_info(2, 0x7fe700010948) = 0 -43938255402971:43938255403614 26077:26082 hsa_system_get_info(2, 0x7fe700010950) = 0 -43938255404395:43938255405041 26077:26082 hsa_system_get_info(2, 0x7fe700010958) = 0 -43938255405836:43938255406483 26077:26082 hsa_system_get_info(2, 0x7fe700010960) = 0 -43938255407258:43938255407914 26077:26082 hsa_system_get_info(2, 0x7fe700010968) = 0 -43938255408690:43938255409338 26077:26082 hsa_system_get_info(2, 0x7fe700010970) = 0 -43938255410125:43938255410773 26077:26082 hsa_system_get_info(2, 0x7fe700010978) = 0 -43938255411560:43938255412199 26077:26082 hsa_system_get_info(2, 0x7fe700010980) = 0 -43938255412977:43938255413616 26077:26082 hsa_system_get_info(2, 0x7fe700010988) = 0 -43938255414387:43938255415037 26077:26082 hsa_system_get_info(2, 0x7fe700010990) = 0 -43938255415808:43938255416445 26077:26082 hsa_system_get_info(2, 0x7fe700010998) = 0 -43938255417216:43938255417857 26077:26082 hsa_system_get_info(2, 0x7fe7000109a0) = 0 -43938255418629:43938255419282 26077:26082 hsa_system_get_info(2, 0x7fe7000109a8) = 0 -43938255420056:43938255420697 26077:26082 hsa_system_get_info(2, 0x7fe7000109b0) = 0 -43938255421472:43938255422112 26077:26082 hsa_system_get_info(2, 0x7fe7000109b8) = 0 -43938255422895:43938255423534 26077:26082 hsa_system_get_info(2, 0x7fe7000109c0) = 0 -43938255424327:43938255424971 26077:26082 hsa_system_get_info(2, 0x7fe7000109c8) = 0 -43938255425744:43938255426386 26077:26082 hsa_system_get_info(2, 0x7fe7000109d0) = 0 -43938255427154:43938255427806 26077:26082 hsa_system_get_info(2, 0x7fe7000109d8) = 0 -43938255428578:43938255429216 26077:26082 hsa_system_get_info(2, 0x7fe7000109e0) = 0 -43938255429993:43938255430648 26077:26082 hsa_system_get_info(2, 0x7fe7000109e8) = 0 -43938255431424:43938255432067 26077:26082 hsa_system_get_info(2, 0x7fe7000109f0) = 0 -43938255432850:43938255433495 26077:26082 hsa_system_get_info(2, 0x7fe7000109f8) = 0 -43938255434269:43938255434914 26077:26082 hsa_system_get_info(2, 0x7fe700010a00) = 0 -43938255436421:43938255437068 26077:26082 hsa_system_get_info(2, 0x7fe700010a08) = 0 -43938255437841:43938255438481 26077:26082 hsa_system_get_info(2, 0x7fe700010a10) = 0 -43938255439261:43938255439908 26077:26082 hsa_system_get_info(2, 0x7fe700010a18) = 0 -43938255440680:43938255441335 26077:26082 hsa_system_get_info(2, 0x7fe700010a20) = 0 -43938255442109:43938255442749 26077:26082 hsa_system_get_info(2, 0x7fe700010a28) = 0 -43938255443518:43938255444158 26077:26082 hsa_system_get_info(2, 0x7fe700010a30) = 0 -43938255444941:43938255445586 26077:26082 hsa_system_get_info(2, 0x7fe700010a38) = 0 -43938255446362:43938255447017 26077:26082 hsa_system_get_info(2, 0x7fe700010a40) = 0 -43938255447795:43938255448437 26077:26082 hsa_system_get_info(2, 0x7fe700010a48) = 0 -43938255449220:43938255449866 26077:26082 hsa_system_get_info(2, 0x7fe700010a50) = 0 -43938255450640:43938255451286 26077:26082 hsa_system_get_info(2, 0x7fe700010a58) = 0 -43938255452068:43938255452712 26077:26082 hsa_system_get_info(2, 0x7fe700010a60) = 0 -43938255453508:43938255454148 26077:26082 hsa_system_get_info(2, 0x7fe700010a68) = 0 -43938255454943:43938255455593 26077:26082 hsa_system_get_info(2, 0x7fe700010a70) = 0 -43938255456370:43938255457012 26077:26082 hsa_system_get_info(2, 0x7fe700010a78) = 0 -43938255457791:43938255458442 26077:26082 hsa_system_get_info(2, 0x7fe700010a80) = 0 -43938255459223:43938255459852 26077:26082 hsa_system_get_info(2, 0x7fe700010a88) = 0 -43938255460631:43938255461275 26077:26082 hsa_system_get_info(2, 0x7fe700010a90) = 0 -43938255462049:43938255462707 26077:26082 hsa_system_get_info(2, 0x7fe700010a98) = 0 -43938255463482:43938255464127 26077:26082 hsa_system_get_info(2, 0x7fe700010aa0) = 0 -43938255464908:43938255465556 26077:26082 hsa_system_get_info(2, 0x7fe700010aa8) = 0 -43938255466328:43938255466973 26077:26082 hsa_system_get_info(2, 0x7fe700010ab0) = 0 -43938255467756:43938255468400 26077:26082 hsa_system_get_info(2, 0x7fe700010ab8) = 0 -43938255469171:43938255469817 26077:26082 hsa_system_get_info(2, 0x7fe700010ac0) = 0 -43938255470599:43938255471241 26077:26082 hsa_system_get_info(2, 0x7fe700010ac8) = 0 -43938255472015:43938255472654 26077:26082 hsa_system_get_info(2, 0x7fe700010ad0) = 0 -43938255473434:43938255474096 26077:26082 hsa_system_get_info(2, 0x7fe700010ad8) = 0 -43938255474876:43938255475518 26077:26082 hsa_system_get_info(2, 0x7fe700010ae0) = 0 -43938255477103:43938255477757 26077:26082 hsa_system_get_info(2, 0x7fe700010ae8) = 0 -43938255478532:43938255479177 26077:26082 hsa_system_get_info(2, 0x7fe700010af0) = 0 -43938255479958:43938255480598 26077:26082 hsa_system_get_info(2, 0x7fe700010af8) = 0 -43938255481377:43938255482018 26077:26082 hsa_system_get_info(2, 0x7fe700010b00) = 0 -43938255482799:43938255483436 26077:26082 hsa_system_get_info(2, 0x7fe700010b08) = 0 -43938255484211:43938255484855 26077:26082 hsa_system_get_info(2, 0x7fe700010b10) = 0 -43938255485639:43938255486280 26077:26082 hsa_system_get_info(2, 0x7fe700010b18) = 0 -43938255487053:43938255487696 26077:26082 hsa_system_get_info(2, 0x7fe700010b20) = 0 -43938255488479:43938255489122 26077:26082 hsa_system_get_info(2, 0x7fe700010b28) = 0 -43938255489899:43938255490548 26077:26082 hsa_system_get_info(2, 0x7fe700010b30) = 0 -43938255491332:43938255491975 26077:26082 hsa_system_get_info(2, 0x7fe700010b38) = 0 -43938255492752:43938255493402 26077:26082 hsa_system_get_info(2, 0x7fe700010b40) = 0 -43938255494181:43938255494824 26077:26082 hsa_system_get_info(2, 0x7fe700010b48) = 0 -43938255495620:43938255496262 26077:26082 hsa_system_get_info(2, 0x7fe700010b50) = 0 -43938255497047:43938255497692 26077:26082 hsa_system_get_info(2, 0x7fe700010b58) = 0 -43938255498470:43938255499115 26077:26082 hsa_system_get_info(2, 0x7fe700010b60) = 0 -43938255499896:43938255500545 26077:26082 hsa_system_get_info(2, 0x7fe700010b68) = 0 -43938255501330:43938255501971 26077:26082 hsa_system_get_info(2, 0x7fe700010b70) = 0 -43938255502749:43938255503392 26077:26082 hsa_system_get_info(2, 0x7fe700010b78) = 0 -43938255504175:43938255504819 26077:26082 hsa_system_get_info(2, 0x7fe700010b80) = 0 -43938255505596:43938255506235 26077:26082 hsa_system_get_info(2, 0x7fe700010b88) = 0 -43938255507015:43938255507657 26077:26082 hsa_system_get_info(2, 0x7fe700010b90) = 0 -43938255508434:43938255509077 26077:26082 hsa_system_get_info(2, 0x7fe700010b98) = 0 -43938255509856:43938255510503 26077:26082 hsa_system_get_info(2, 0x7fe700010ba0) = 0 -43938255511294:43938255511938 26077:26082 hsa_system_get_info(2, 0x7fe700010ba8) = 0 -43938255512713:43938255513374 26077:26082 hsa_system_get_info(2, 0x7fe700010bb0) = 0 -43938255514151:43938255514821 26077:26082 hsa_system_get_info(2, 0x7fe700010bb8) = 0 -43938255515597:43938255516241 26077:26082 hsa_system_get_info(2, 0x7fe700010bc0) = 0 -43938255517028:43938255517674 26077:26082 hsa_system_get_info(2, 0x7fe700010bc8) = 0 -43938255519204:43938255519859 26077:26082 hsa_system_get_info(2, 0x7fe700010bd0) = 0 -43938255520633:43938255521279 26077:26082 hsa_system_get_info(2, 0x7fe700010bd8) = 0 -43938255522061:43938255522706 26077:26082 hsa_system_get_info(2, 0x7fe700010be0) = 0 -43938255523507:43938255524148 26077:26082 hsa_system_get_info(2, 0x7fe700010be8) = 0 -43938255524921:43938255525567 26077:26082 hsa_system_get_info(2, 0x7fe700010bf0) = 0 -43938255526351:43938255526990 26077:26082 hsa_system_get_info(2, 0x7fe700010bf8) = 0 -43938255527767:43938255528411 26077:26082 hsa_system_get_info(2, 0x7fe700010c00) = 0 -43938255529190:43938255529831 26077:26082 hsa_system_get_info(2, 0x7fe700010c08) = 0 -43938255530607:43938255531248 26077:26082 hsa_system_get_info(2, 0x7fe700010c10) = 0 -43938255532031:43938255532673 26077:26082 hsa_system_get_info(2, 0x7fe700010c18) = 0 -43938255533456:43938255534094 26077:26082 hsa_system_get_info(2, 0x7fe700010c20) = 0 -43938255534873:43938255535516 26077:26082 hsa_system_get_info(2, 0x7fe700010c28) = 0 -43938255536290:43938255536938 26077:26082 hsa_system_get_info(2, 0x7fe700010c30) = 0 -43938255537720:43938255538356 26077:26082 hsa_system_get_info(2, 0x7fe700010c38) = 0 -43938255539130:43938255539772 26077:26082 hsa_system_get_info(2, 0x7fe700010c40) = 0 -43938255540557:43938255541205 26077:26082 hsa_system_get_info(2, 0x7fe700010c48) = 0 -43938255541980:43938255542631 26077:26082 hsa_system_get_info(2, 0x7fe700010c50) = 0 -43938255543410:43938255544077 26077:26082 hsa_system_get_info(2, 0x7fe700010c58) = 0 -43938255544851:43938255545498 26077:26082 hsa_system_get_info(2, 0x7fe700010c60) = 0 -43938255546281:43938255546922 26077:26082 hsa_system_get_info(2, 0x7fe700010c68) = 0 -43938255547699:43938255548354 26077:26082 hsa_system_get_info(2, 0x7fe700010c70) = 0 -43938255549129:43938255549778 26077:26082 hsa_system_get_info(2, 0x7fe700010c78) = 0 -43938255550561:43938255551205 26077:26082 hsa_system_get_info(2, 0x7fe700010c80) = 0 -43938255551980:43938255552637 26077:26082 hsa_system_get_info(2, 0x7fe700010c88) = 0 -43938255553410:43938255554055 26077:26082 hsa_system_get_info(2, 0x7fe700010c90) = 0 -43938255554826:43938255555469 26077:26082 hsa_system_get_info(2, 0x7fe700010c98) = 0 -43938255556250:43938255556891 26077:26082 hsa_system_get_info(2, 0x7fe700010ca0) = 0 -43938255557669:43938255558306 26077:26082 hsa_system_get_info(2, 0x7fe700010ca8) = 0 -43938255559819:43938255560464 26077:26082 hsa_system_get_info(2, 0x7fe700010cb0) = 0 -43938255561245:43938255561883 26077:26082 hsa_system_get_info(2, 0x7fe700010cb8) = 0 -43938255562655:43938255563302 26077:26082 hsa_system_get_info(2, 0x7fe700010cc0) = 0 -43938255564071:43938255564725 26077:26082 hsa_system_get_info(2, 0x7fe700010cc8) = 0 -43938255565501:43938255566143 26077:26082 hsa_system_get_info(2, 0x7fe700010cd0) = 0 -43938255566925:43938255567568 26077:26082 hsa_system_get_info(2, 0x7fe700010cd8) = 0 -43938255568339:43938255568980 26077:26082 hsa_system_get_info(2, 0x7fe700010ce0) = 0 -43938255569757:43938255570394 26077:26082 hsa_system_get_info(2, 0x7fe700010ce8) = 0 -43938255571180:43938255571822 26077:26082 hsa_system_get_info(2, 0x7fe700010cf0) = 0 -43938255572598:43938255573238 26077:26082 hsa_system_get_info(2, 0x7fe700010cf8) = 0 -43938255574019:43938255574661 26077:26082 hsa_system_get_info(2, 0x7fe700010d00) = 0 -43938255575466:43938255576105 26077:26082 hsa_system_get_info(2, 0x7fe700010d08) = 0 -43938255576892:43938255577522 26077:26082 hsa_system_get_info(2, 0x7fe700010d10) = 0 -43938255578303:43938255578943 26077:26082 hsa_system_get_info(2, 0x7fe700010d18) = 0 -43938255579721:43938255580362 26077:26082 hsa_system_get_info(2, 0x7fe700010d20) = 0 -43938255581145:43938255581787 26077:26082 hsa_system_get_info(2, 0x7fe700010d28) = 0 -43938255582564:43938255583215 26077:26082 hsa_system_get_info(2, 0x7fe700010d30) = 0 -43938255583992:43938255584634 26077:26082 hsa_system_get_info(2, 0x7fe700010d38) = 0 -43938255585405:43938255586059 26077:26082 hsa_system_get_info(2, 0x7fe700010d40) = 0 -43938255586831:43938255587473 26077:26082 hsa_system_get_info(2, 0x7fe700010d48) = 0 -43938255588244:43938255588901 26077:26082 hsa_system_get_info(2, 0x7fe700010d50) = 0 -43938255589675:43938255590324 26077:26082 hsa_system_get_info(2, 0x7fe700010d58) = 0 -43938255591105:43938255591746 26077:26082 hsa_system_get_info(2, 0x7fe700010d60) = 0 -43938255592518:43938255593158 26077:26082 hsa_system_get_info(2, 0x7fe700010d68) = 0 -43938255593939:43938255594581 26077:26082 hsa_system_get_info(2, 0x7fe700010d70) = 0 -43938255595357:43938255596022 26077:26082 hsa_system_get_info(2, 0x7fe700010d78) = 0 -43938255596803:43938255597451 26077:26082 hsa_system_get_info(2, 0x7fe700010d80) = 0 -43938255598234:43938255598879 26077:26082 hsa_system_get_info(2, 0x7fe700010d88) = 0 -43938255599652:43938255600288 26077:26082 hsa_system_get_info(2, 0x7fe700010d90) = 0 -43938255601830:43938255602481 26077:26082 hsa_system_get_info(2, 0x7fe700010d98) = 0 -43938255603255:43938255603894 26077:26082 hsa_system_get_info(2, 0x7fe700010da0) = 0 -43938255604679:43938255605319 26077:26082 hsa_system_get_info(2, 0x7fe700010da8) = 0 -43938255606116:43938255606758 26077:26082 hsa_system_get_info(2, 0x7fe700010db0) = 0 -43938255607534:43938255608178 26077:26082 hsa_system_get_info(2, 0x7fe700010db8) = 0 -43938255608956:43938255609599 26077:26082 hsa_system_get_info(2, 0x7fe700010dc0) = 0 -43938255610371:43938255611016 26077:26082 hsa_system_get_info(2, 0x7fe700010dc8) = 0 -43938255611796:43938255612439 26077:26082 hsa_system_get_info(2, 0x7fe700010dd0) = 0 -43938255613214:43938255613853 26077:26082 hsa_system_get_info(2, 0x7fe700010dd8) = 0 -43938255614635:43938255615280 26077:26082 hsa_system_get_info(2, 0x7fe700010de0) = 0 -43938255616064:43938255616714 26077:26082 hsa_system_get_info(2, 0x7fe700010de8) = 0 -43938255617505:43938255618158 26077:26082 hsa_system_get_info(2, 0x7fe700010df0) = 0 -43938255618931:43938255619576 26077:26082 hsa_system_get_info(2, 0x7fe700010df8) = 0 -43938255620355:43938255621000 26077:26082 hsa_system_get_info(2, 0x7fe700010e00) = 0 -43938255621776:43938255622424 26077:26082 hsa_system_get_info(2, 0x7fe700010e08) = 0 -43938255623210:43938255623852 26077:26082 hsa_system_get_info(2, 0x7fe700010e10) = 0 -43938255624645:43938255625288 26077:26082 hsa_system_get_info(2, 0x7fe700010e18) = 0 -43938255626060:43938255626702 26077:26082 hsa_system_get_info(2, 0x7fe700010e20) = 0 -43938255627470:43938255628122 26077:26082 hsa_system_get_info(2, 0x7fe700010e28) = 0 -43938255628890:43938255629533 26077:26082 hsa_system_get_info(2, 0x7fe700010e30) = 0 -43938255630305:43938255630946 26077:26082 hsa_system_get_info(2, 0x7fe700010e38) = 0 -43938255631727:43938255632372 26077:26082 hsa_system_get_info(2, 0x7fe700010e40) = 0 -43938255633149:43938255633791 26077:26082 hsa_system_get_info(2, 0x7fe700010e48) = 0 -43938255634570:43938255635211 26077:26082 hsa_system_get_info(2, 0x7fe700010e50) = 0 -43938255635984:43938255636628 26077:26082 hsa_system_get_info(2, 0x7fe700010e58) = 0 -43938255637408:43938255638050 26077:26082 hsa_system_get_info(2, 0x7fe700010e60) = 0 -43938255638821:43938255639464 26077:26082 hsa_system_get_info(2, 0x7fe700010e68) = 0 -43938255640236:43938255640877 26077:26082 hsa_system_get_info(2, 0x7fe700010e70) = 0 -43938255642392:43938255643039 26077:26082 hsa_system_get_info(2, 0x7fe700010e78) = 0 -43938255643823:43938255644463 26077:26082 hsa_system_get_info(2, 0x7fe700010e80) = 0 -43938255645238:43938255645890 26077:26082 hsa_system_get_info(2, 0x7fe700010e88) = 0 -43938255646660:43938255647298 26077:26082 hsa_system_get_info(2, 0x7fe700010e90) = 0 -43938255648066:43938255648704 26077:26082 hsa_system_get_info(2, 0x7fe700010e98) = 0 -43938255649475:43938255650113 26077:26082 hsa_system_get_info(2, 0x7fe700010ea0) = 0 -43938255650896:43938255651539 26077:26082 hsa_system_get_info(2, 0x7fe700010ea8) = 0 -43938255652313:43938255652955 26077:26082 hsa_system_get_info(2, 0x7fe700010eb0) = 0 -43938255653738:43938255654386 26077:26082 hsa_system_get_info(2, 0x7fe700010eb8) = 0 -43938255655156:43938255655800 26077:26082 hsa_system_get_info(2, 0x7fe700010ec0) = 0 -43938255656582:43938255657225 26077:26082 hsa_system_get_info(2, 0x7fe700010ec8) = 0 -43938255658005:43938255658640 26077:26082 hsa_system_get_info(2, 0x7fe700010ed0) = 0 -43938255659426:43938255660071 26077:26082 hsa_system_get_info(2, 0x7fe700010ed8) = 0 -43938255660847:43938255661513 26077:26082 hsa_system_get_info(2, 0x7fe700010ee0) = 0 -43938255662285:43938255662940 26077:26082 hsa_system_get_info(2, 0x7fe700010ee8) = 0 -43938255663713:43938255664357 26077:26082 hsa_system_get_info(2, 0x7fe700010ef0) = 0 -43938255665128:43938255665772 26077:26082 hsa_system_get_info(2, 0x7fe700010ef8) = 0 -43938255666557:43938255667208 26077:26082 hsa_system_get_info(2, 0x7fe700010f00) = 0 -43938255667995:43938255668645 26077:26082 hsa_system_get_info(2, 0x7fe700010f08) = 0 -43938255669426:43938255670068 26077:26082 hsa_system_get_info(2, 0x7fe700010f10) = 0 -43938255670842:43938255671484 26077:26082 hsa_system_get_info(2, 0x7fe700010f18) = 0 -43938255672255:43938255672910 26077:26082 hsa_system_get_info(2, 0x7fe700010f20) = 0 -43938255673697:43938255674351 26077:26082 hsa_system_get_info(2, 0x7fe700010f28) = 0 -43938255675125:43938255675771 26077:26082 hsa_system_get_info(2, 0x7fe700010f30) = 0 -43938255676554:43938255677213 26077:26082 hsa_system_get_info(2, 0x7fe700010f38) = 0 -43938255677996:43938255678639 26077:26082 hsa_system_get_info(2, 0x7fe700010f40) = 0 -43938255679416:43938255680059 26077:26082 hsa_system_get_info(2, 0x7fe700010f48) = 0 -43938255680837:43938255681481 26077:26082 hsa_system_get_info(2, 0x7fe700010f50) = 0 -43938255683001:43938255683647 26077:26082 hsa_system_get_info(2, 0x7fe700010f58) = 0 -43938255691866:43938255692521 26077:26082 hsa_system_get_info(2, 0x7fe7197f9868) = 0 -43938255693413:43938255695018 26077:26082 hsa_signal_create(1, , 0, 0x7fe743fff050) = 0 -43938255696005:43938255698869 26077:26082 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7fe743fff010) = 0 -43938255699813:43938255815880 26077:26082 hsa_amd_memory_async_copy(0x800db0000, , 0x901203000, , , , 0, ) = 0 -43938255835309:43938255838422 26077:26080 hsa_amd_profiling_get_async_copy_time(, 0x7fe755497c40) = 0 -43938255839862:43938255840555 26077:26080 hsa_system_get_info(2, 0x7fe755497ba8) = 0 -43938255841559:43938255842002 26077:26080 hsa_signal_load_relaxed() = 1 -43938255817234:43938255843415 26077:26082 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43938255842844:43938255843981 26077:26080 hsa_signal_store_screlease(, 0) = void -43938255844380:43938255845066 26077:26082 hsa_signal_destroy() = 0 -43938255844903:43938255845419 26077:26080 hsa_signal_destroy() = 0 -43938256011921:43938256030348 26077:26082 hsa_memory_free(0x800db0000) = 0 -43938256075235:43938256088243 26077:26082 hsa_executable_destroy() = 0 -43938256089338:43938256090186 26077:26082 hsa_signal_destroy() = 0 -43938256093081:43938256631443 26077:26082 hsa_queue_destroy() = 0 -43938255822636:43938255832236 async-copy0 diff --git a/test/golden_traces/tests_trace_cmp_levels.txt b/test/golden_traces/tests_trace_cmp_levels.txt index 5105d038f1..111bfa5a5d 100644 --- a/test/golden_traces/tests_trace_cmp_levels.txt +++ b/test/golden_traces/tests_trace_cmp_levels.txt @@ -1,6 +1,6 @@ # dummy MatrixTranspose_dryrun_trace --check-none -ctrl_dryrun_trace --check-none +copy_dryrun_trace --check-none MatrixTranspose_ctest_trace --check-count .* MatrixTranspose_test_trace --check-count .* MatrixTranspose_hipaact_test_trace --check-count .* --ignore-count hipMemcpy|__hipPushCallConfiguration|hipLaunchKernel|__hipPopCallConfiguration @@ -11,8 +11,8 @@ MatrixTranspose_hip_period_trace --check-events .* --ignore-event hipMalloc|hipF MatrixTranspose_hip_flush_trace --check-order .* MatrixTranspose_kfd_trace --check-events .* MatrixTranspose_hip_input_trace --check-events .* -ctrl_hsa_trace --check-event .* -ctrl_hsa_input_trace --check-event .* +copy_hsa_trace --check-events .* +copy_hsa_input_trace --check-events .* hsa_co_trace --check-none code_obj_trace --check-none trace_buffer_trace --check-none diff --git a/test/hsa/LICENSE b/test/hsa/LICENSE deleted file mode 100644 index 597d1b16a2..0000000000 --- a/test/hsa/LICENSE +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2018 Advanced Micro Devices, Inc. All rights reserved. -[MITx11 license] - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/test/hsa/README.md b/test/hsa/README.md deleted file mode 100644 index 20e0915744..0000000000 --- a/test/hsa/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# HSA-class -``` -HSA high level C++ API -``` diff --git a/test/hsa/test/dummy_kernel/dummy_kernel.cl b/test/hsa/copy.cl similarity index 85% rename from test/hsa/test/dummy_kernel/dummy_kernel.cl rename to test/hsa/copy.cl index 34dfced8cb..c32d676207 100644 --- a/test/hsa/test/dummy_kernel/dummy_kernel.cl +++ b/test/hsa/copy.cl @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. +/* Copyright (c) 2022 Advanced Micro Devices, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -18,9 +18,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/** - dummy kernel - */ -__kernel void DummyKernel() { - uint tid = get_global_id(0); +__kernel void copy(__global unsigned int* a, __global unsigned int* b) { + uint tid = get_global_id(0); + a[tid] = b[tid]; } diff --git a/test/hsa/copy.cpp b/test/hsa/copy.cpp new file mode 100644 index 0000000000..9da1dd6de9 --- /dev/null +++ b/test/hsa/copy.cpp @@ -0,0 +1,454 @@ +/* Copyright (c) 2022 Advanced Micro Devices, Inc. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. */ + +#include "hsa.h" +#include "hsa_ext_amd.h" +#include "hsa_ext_image.h" + +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +#define CHECK(x) \ + do { \ + if ((x) != HSA_STATUS_SUCCESS) { \ + assert(false); \ + abort(); \ + } \ + } while (false); + +struct Device { + struct Memory { + hsa_amd_memory_pool_t pool; + bool fine; + bool kernarg; + size_t size; + size_t granule; + }; + + hsa_agent_t agent; + char name[64]; + std::vector pools; + uint32_t fine; + uint32_t coarse; + static std::vector all_devices; +}; +std::vector Device::all_devices; + +struct Kernel { + uint64_t handle; + uint32_t scratch; + uint32_t group; + uint32_t kernarg_size; + uint32_t kernarg_align; +}; + +// Assumes bitfield layout is little endian. +// Assumes std::atomic is binary compatible with uint16_t and uses HW atomics. +union AqlHeader { + struct { + uint16_t type : 8; + uint16_t barrier : 1; + uint16_t acquire : 2; + uint16_t release : 2; + uint16_t reserved : 3; + }; + uint16_t raw; +}; + +struct BarrierValue { + AqlHeader header; + uint8_t AmdFormat; + uint8_t reserved; + uint32_t reserved1; + hsa_signal_t signal; + hsa_signal_value_t value; + hsa_signal_value_t mask; + uint32_t cond; + uint32_t reserved2; + uint64_t reserved3; + uint64_t reserved4; + hsa_signal_t completion_signal; +}; + +union Aql { + AqlHeader header; + hsa_kernel_dispatch_packet_t dispatch; + hsa_barrier_and_packet_t barrier_and; + hsa_barrier_or_packet_t barrier_or; + BarrierValue barrier_value; +}; + +struct OCLHiddenArgs { + uint64_t offset_x; + uint64_t offset_y; + uint64_t offset_z; + void* printf_buffer; + void* enqueue; + void* enqueue2; + void* multi_grid; +}; + +struct hip_hiddens { + uint64_t offset_x; + uint64_t offset_y; + uint64_t offset_z; + uint64_t _; + uint64_t _2; + uint64_t _3; + uint64_t multi_grid_sync; +}; + + +std::vector cpu, gpu; +Device::Memory kernarg; + +struct CodeObject { + hsa_file_t file; + hsa_code_object_reader_t code_obj_rdr; + hsa_executable_t executable; +}; + +bool DeviceDiscovery() { + hsa_status_t err; + + err = hsa_iterate_agents( + [](hsa_agent_t agent, void*) { + hsa_status_t err; + + Device dev; + dev.agent = agent; + + dev.fine = -1u; + dev.coarse = -1u; + + err = hsa_agent_get_info(agent, HSA_AGENT_INFO_NAME, dev.name); + CHECK(err); + + hsa_device_type_t type; + err = hsa_agent_get_info(agent, HSA_AGENT_INFO_DEVICE, &type); + CHECK(err); + + err = hsa_amd_agent_iterate_memory_pools( + agent, + [](hsa_amd_memory_pool_t pool, void* data) { + std::vector& pools = + *reinterpret_cast*>(data); + hsa_status_t err; + + hsa_amd_segment_t segment; + err = hsa_amd_memory_pool_get_info(pool, HSA_AMD_MEMORY_POOL_INFO_SEGMENT, &segment); + CHECK(err); + + if (segment != HSA_AMD_SEGMENT_GLOBAL) return HSA_STATUS_SUCCESS; + + uint32_t flags; + err = + hsa_amd_memory_pool_get_info(pool, HSA_AMD_MEMORY_POOL_INFO_GLOBAL_FLAGS, &flags); + CHECK(err); + + Device::Memory mem; + mem.pool = pool; + mem.fine = (flags & HSA_AMD_MEMORY_POOL_GLOBAL_FLAG_FINE_GRAINED); + mem.kernarg = (flags & HSA_AMD_MEMORY_POOL_GLOBAL_FLAG_KERNARG_INIT); + + err = hsa_amd_memory_pool_get_info(pool, HSA_AMD_MEMORY_POOL_INFO_SIZE, &mem.size); + CHECK(err); + + err = hsa_amd_memory_pool_get_info( + pool, HSA_AMD_MEMORY_POOL_INFO_RUNTIME_ALLOC_GRANULE, &mem.granule); + CHECK(err); + + pools.push_back(mem); + return HSA_STATUS_SUCCESS; + }, + (void*)&dev.pools); + + if (!dev.pools.empty()) { + for (size_t i = 0; i < dev.pools.size(); i++) { + if (dev.pools[i].fine && dev.pools[i].kernarg && dev.fine == -1u) dev.fine = i; + if (dev.pools[i].fine && !dev.pools[i].kernarg) dev.fine = i; + if (!dev.pools[i].fine) dev.coarse = i; + } + + if (type == HSA_DEVICE_TYPE_CPU) + cpu.push_back(dev); + else + gpu.push_back(dev); + + Device::all_devices.push_back(dev.agent); + } + + return HSA_STATUS_SUCCESS; + }, + nullptr); + + []() { + for (auto& dev : cpu) { + for (auto& mem : dev.pools) { + if (mem.fine && mem.kernarg) { + kernarg = mem; + return; + } + } + } + }(); + CHECK(err); + + if (cpu.empty() || gpu.empty() || kernarg.pool.handle == 0) return false; + return true; +} + +bool LoadCodeObject(std::string filename, hsa_agent_t agent, CodeObject& code_object) { + hsa_status_t err; + + code_object.file = open(filename.c_str(), O_RDONLY); + if (code_object.file == -1) return false; + + err = hsa_code_object_reader_create_from_file(code_object.file, &code_object.code_obj_rdr); + CHECK(err); + + err = hsa_executable_create_alt(HSA_PROFILE_FULL, HSA_DEFAULT_FLOAT_ROUNDING_MODE_DEFAULT, + nullptr, &code_object.executable); + CHECK(err); + + err = hsa_executable_load_agent_code_object(code_object.executable, agent, + code_object.code_obj_rdr, nullptr, nullptr); + if (err != HSA_STATUS_SUCCESS) return false; + + err = hsa_executable_freeze(code_object.executable, nullptr); + CHECK(err); + + return true; +} + +bool GetKernel(const CodeObject& code_object, std::string kernel, hsa_agent_t agent, Kernel& kern) { + hsa_executable_symbol_t symbol; + hsa_status_t err = + hsa_executable_get_symbol_by_name(code_object.executable, kernel.c_str(), &agent, &symbol); + if (err != HSA_STATUS_SUCCESS) { + err = hsa_executable_get_symbol_by_name(code_object.executable, (kernel + ".kd").c_str(), + &agent, &symbol); + if (err != HSA_STATUS_SUCCESS) { + return false; + } + } + + err = hsa_executable_symbol_get_info(symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_OBJECT, + &kern.handle); + CHECK(err); + + err = hsa_executable_symbol_get_info( + symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_PRIVATE_SEGMENT_SIZE, &kern.scratch); + CHECK(err); + // printf("Scratch: %d\n", kern.scratch); + + err = hsa_executable_symbol_get_info(symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_GROUP_SEGMENT_SIZE, + &kern.group); + CHECK(err); + // printf("LDS: %d\n", kern.group); + + // Remaining needs code object v2 or comgr. + err = hsa_executable_symbol_get_info( + symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_KERNARG_SEGMENT_SIZE, &kern.kernarg_size); + CHECK(err); + // printf("Kernarg Size: %d\n", kern.kernarg_size); + + err = hsa_executable_symbol_get_info( + symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_KERNARG_SEGMENT_ALIGNMENT, &kern.kernarg_align); + CHECK(err); + // printf("Kernarg Align: %d\n", kern.kernarg_align); + + return true; +} + +// Not for parallel insertion. +bool SubmitPacket(hsa_queue_t* queue, Aql& pkt) { + size_t mask = queue->size - 1; + Aql* ring = (Aql*)queue->base_address; + + uint64_t write = hsa_queue_load_write_index_relaxed(queue); + uint64_t read = hsa_queue_load_read_index_relaxed(queue); + if (write - read + 1 > queue->size) return false; + + Aql& dst = ring[write & mask]; + + uint16_t header = pkt.header.raw; + pkt.header.raw = dst.header.raw; + dst = pkt; + __atomic_store_n(&dst.header.raw, header, __ATOMIC_RELEASE); + pkt.header.raw = header; + + hsa_queue_store_write_index_release(queue, write + 1); + hsa_signal_store_screlease(queue->doorbell_signal, write); + + return true; +} + +void* hsaMalloc(size_t size, const Device::Memory& mem) { + void* ret; + hsa_status_t err = hsa_amd_memory_pool_allocate(mem.pool, size, 0, &ret); + CHECK(err); + err = hsa_amd_agents_allow_access(Device::all_devices.size(), &Device::all_devices[0], nullptr, + ret); + CHECK(err); + return ret; +} + +void* hsaMalloc(size_t size, const Device& dev, bool fine) { + uint32_t index = fine ? dev.fine : dev.coarse; + assert(index != -1u && "Memory type unavailable."); + return hsaMalloc(size, dev.pools[index]); +} + +void test_func(int kiter, int diter, int agents) { + for (int device_index = 0; device_index < agents; ++device_index) { + hsa_status_t err; + + hsa_queue_t* queue; + err = hsa_queue_create(gpu[device_index].agent, 1024, HSA_QUEUE_TYPE_SINGLE, nullptr, nullptr, + 0, 0, &queue); + CHECK(err); + + CodeObject code_object; + if (!LoadCodeObject(std::string(gpu[device_index].name) + "_copy.hsaco", + gpu[device_index].agent, code_object)) { + printf("Kernel file not found or not usable with given agent.\n"); + abort(); + } + + Kernel copy; + if (!GetKernel(code_object, "copy", gpu[device_index].agent, copy)) { + printf("Test kernel not found.\n"); + abort(); + } + + for (int i = 0; i < kiter; ++i) { + struct args_t { + uint32_t* a; + uint32_t* b; + OCLHiddenArgs hidden; + }; + + args_t* args; + args = (args_t*)hsaMalloc(sizeof(args_t), kernarg); + memset(args, 0, sizeof(args_t)); + + uint32_t* a = (uint32_t*)hsaMalloc(64 * sizeof(uint32_t), kernarg); + uint32_t* b = (uint32_t*)hsaMalloc(64 * sizeof(uint32_t), kernarg); + + memset(a, 0, 64 * sizeof(uint32_t)); + memset(b, 1, 64 * sizeof(uint32_t)); + + hsa_signal_t signal; + // Use interrupts. + err = hsa_amd_signal_create(1, 0, nullptr, 0, &signal); + CHECK(err); + + for (int j = 1; j <= diter; ++j) { + Aql packet = {0}; + packet.header.type = HSA_PACKET_TYPE_KERNEL_DISPATCH; + packet.header.barrier = 1; + packet.header.acquire = HSA_FENCE_SCOPE_SYSTEM; + packet.header.release = HSA_FENCE_SCOPE_SYSTEM; + + packet.dispatch.setup = 1; + packet.dispatch.workgroup_size_x = 64; + packet.dispatch.workgroup_size_y = 1; + packet.dispatch.workgroup_size_z = 1; + packet.dispatch.grid_size_x = 64; + packet.dispatch.grid_size_y = 1; + packet.dispatch.grid_size_z = 1; + + packet.dispatch.group_segment_size = copy.group; + packet.dispatch.private_segment_size = copy.scratch; + packet.dispatch.kernel_object = copy.handle; + + packet.dispatch.kernarg_address = args; + if (j == diter) packet.dispatch.completion_signal = signal; + + args->a = a; + args->b = b; + SubmitPacket(queue, packet); + } + hsa_signal_wait_acquire(signal, HSA_SIGNAL_CONDITION_EQ, 0, -1, HSA_WAIT_STATE_BLOCKED); + err = hsa_signal_destroy(signal); + CHECK(err); + + for (int i = 0; i < 64; i++) { + if (a[i] != b[i]) { + printf("error at %d: expected %d, got %d\n", i, b[i], a[i]); + abort(); + } + } + + err = hsa_memory_free(a); + CHECK(err); + err = hsa_memory_free(b); + CHECK(err); + } + + err = hsa_executable_destroy(code_object.executable); + CHECK(err); + err = hsa_code_object_reader_destroy(code_object.code_obj_rdr); + CHECK(err); + close(code_object.file); + } +} + +int main(int argc, char** argv) { + const char* kiter_s = getenv("ROCP_KITER"); + const char* diter_s = getenv("ROCP_DITER"); + const char* agents_s = getenv("ROCP_AGENTS"); + const char* threads_s = getenv("ROCP_THRS"); + + int kiter = (kiter_s != nullptr) ? atoi(kiter_s) : 1; + int diter = (diter_s != nullptr) ? atoi(diter_s) : 1; + int agents = (agents_s != nullptr) ? atoi(agents_s) : 1; + int threads = (threads_s != nullptr) ? atoi(threads_s) : 1; + + hsa_status_t err; + err = hsa_init(); + CHECK(err); + + if (!DeviceDiscovery()) { + printf("Usable devices not found.\n"); + return -1; + } + + std::vector t(threads); + for (int n = 0; n < threads; ++n) + t[n] = std::thread(test_func, kiter, diter, std::min(agents, (int)gpu.size())); + for (int n = 0; n < threads; ++n) t[n].join(); + + err = hsa_shut_down(); + CHECK(err); + + return 0; +} \ No newline at end of file diff --git a/test/hsa/script/build_kernel.sh b/test/hsa/script/build_kernel.sh deleted file mode 100755 index 2007e7abaa..0000000000 --- a/test/hsa/script/build_kernel.sh +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/sh -x -SO_EXT="hsaco" - -TEST_NAME=$1 -DST_DIR=$2 -ROCM_DIR=$3 -TGT_LIST=$4 - -if [ -z "$TEST_NAME" ] ; then - echo "Usage: $0 " - echo " Will look for .cl and will build .$SO_EXT dynamic code object library" - exit 1 -fi -OBJ_NAME=$(echo "_$(basename $TEST_NAME)" | sed -e 's/_./\U&\E/g' -e 's/_//g') - -if [ -z "$DST_DIR" ] ; then - DST_DIR=$(dirname TEST_NAME) -fi - -if [ -z "$ROCM_DIR" ] ; then - ROCM_DIR=/opt/rocm -fi - -if [ -z "$TGT_LIST" ] ; then - TGT_LIST=`$ROCM_DIR/bin/rocminfo | grep "amdgcn-amd-amdhsa--" | head -n 1 | sed -n "s/^.*amdgcn-amd-amdhsa--\(\w*\).*$/\1/p"` -fi - -if [ -z "$TGT_LIST" ] ; then - echo "Error: GPU targets not found" - exit 1 -fi - -OCL_VER="2.0" - -if [ -e $ROCM_DIR/llvm ] ; then - LLVM_DIR=$ROCM_DIR/llvm - LIB_DIR=$ROCM_DIR/lib -else - LLVM_DIR=$ROCM_DIR/hcc - LIB_DIR=$LLVM_DIR/lib -fi - -# Determine whether using new or old device-libs layout -if [ -e $LIB_DIR/bitcode/opencl.amdgcn.bc ]; then - BC_DIR=$LIB_DIR/bitcode -elif [ -e $LIB_DIR/opencl.amdgcn.bc ]; then - BC_DIR=$LIB_DIR -elif [ -e $ROCM_DIR/amdgcn/bitcode/opencl.bc ]; then - BC_DIR=$ROCM_DIR/amdgcn/bitcode -else - echo "Error: Cannot find amdgcn bitcode directory" - exit 1 -fi - -CLANG_ROOT=$LLVM_DIR/lib/clang -CLANG_DIR=`ls -d $CLANG_ROOT/* | head -n 1` -if [ "$CLANG_DIR" = "" ] ; then - echo "Error: LLVM clang library was not found" - exit 1 -fi - -BIN_DIR=$LLVM_DIR/bin -INC_DIR=$CLANG_DIR/include -if [ -e $BC_DIR/opencl.amdgcn.bc ]; then - BITCODE_OPTS="-nogpulib \ - -Xclang -mlink-bitcode-file -Xclang $BC_DIR/opencl.amdgcn.bc \ - -Xclang -mlink-bitcode-file -Xclang $BC_DIR/ockl.amdgcn.bc \ - -Xclang -mlink-bitcode-file -Xclang $BC_DIR/ocml.amdgcn.bc" -else - BITCODE_OPTS="--hip-device-lib-path=$BC_DIR" -fi - -for GFXIP in $TGT_LIST ; do - OBJ_PREF=$GFXIP - OBJ_FILE="${OBJ_PREF}_${OBJ_NAME}.$SO_EXT" - $BIN_DIR/clang -cl-std=CL$OCL_VER -include $INC_DIR/opencl-c.h $BITCODE_OPTS -target amdgcn-amd-amdhsa -mcpu=$GFXIP $TEST_NAME.cl -o $DST_DIR/$OBJ_FILE - echo "'$OBJ_FILE' generated" -done - -exit 0 diff --git a/test/hsa/src/hsa_rsrc_factory.cpp b/test/hsa/src/hsa_rsrc_factory.cpp deleted file mode 100644 index 66510fbaf0..0000000000 --- a/test/hsa/src/hsa_rsrc_factory.cpp +++ /dev/null @@ -1,799 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#include "util/hsa_rsrc_factory.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include - -// Callback function to get available in the system agents -hsa_status_t HsaRsrcFactory::GetHsaAgentsCallback(hsa_agent_t agent, void* data) { - hsa_status_t status = HSA_STATUS_ERROR; - HsaRsrcFactory* hsa_rsrc = reinterpret_cast(data); - const AgentInfo* agent_info = hsa_rsrc->AddAgentInfo(agent); - if (agent_info != NULL) status = HSA_STATUS_SUCCESS; - return status; -} - -// This function checks to see if the provided -// pool has the HSA_AMD_SEGMENT_GLOBAL property. If the kern_arg flag is true, -// the function adds an additional requirement that the pool have the -// HSA_AMD_MEMORY_POOL_GLOBAL_FLAG_KERNARG_INIT property. If kern_arg is false, -// pools must NOT have this property. -// Upon finding a pool that meets these conditions, HSA_STATUS_INFO_BREAK is -// returned. HSA_STATUS_SUCCESS is returned if no errors were encountered, but -// no pool was found meeting the requirements. If an error is encountered, we -// return that error. -static hsa_status_t FindGlobalPool(hsa_amd_memory_pool_t pool, void* data, bool kern_arg) { - hsa_status_t err; - hsa_amd_segment_t segment; - uint32_t flag; - - if (nullptr == data) { - return HSA_STATUS_ERROR_INVALID_ARGUMENT; - } - - err = HsaRsrcFactory::HsaApi()->hsa_amd_memory_pool_get_info( - pool, HSA_AMD_MEMORY_POOL_INFO_SEGMENT, &segment); - CHECK_STATUS("hsa_amd_memory_pool_get_info", err); - if (HSA_AMD_SEGMENT_GLOBAL != segment) { - return HSA_STATUS_SUCCESS; - } - - err = HsaRsrcFactory::HsaApi()->hsa_amd_memory_pool_get_info( - pool, HSA_AMD_MEMORY_POOL_INFO_GLOBAL_FLAGS, &flag); - CHECK_STATUS("hsa_amd_memory_pool_get_info", err); - - uint32_t karg_st = flag & HSA_AMD_MEMORY_POOL_GLOBAL_FLAG_KERNARG_INIT; - - if ((karg_st == 0 && kern_arg) || (karg_st != 0 && !kern_arg)) { - return HSA_STATUS_SUCCESS; - } - - *(reinterpret_cast(data)) = pool; - return HSA_STATUS_INFO_BREAK; -} - -// This is the call-back function for hsa_amd_agent_iterate_memory_pools() that -// finds a pool with the properties of HSA_AMD_SEGMENT_GLOBAL and that is NOT -// HSA_AMD_MEMORY_POOL_GLOBAL_FLAG_KERNARG_INIT -hsa_status_t FindStandardPool(hsa_amd_memory_pool_t pool, void* data) { - return FindGlobalPool(pool, data, false); -} - -// This is the call-back function for hsa_amd_agent_iterate_memory_pools() that -// finds a pool with the properties of HSA_AMD_SEGMENT_GLOBAL and that IS -// HSA_AMD_MEMORY_POOL_GLOBAL_FLAG_KERNARG_INIT -hsa_status_t FindKernArgPool(hsa_amd_memory_pool_t pool, void* data) { - return FindGlobalPool(pool, data, true); -} - -// Constructor of the class -HsaRsrcFactory::HsaRsrcFactory(bool initialize_hsa) : initialize_hsa_(initialize_hsa) { - hsa_status_t status; - - cpu_pool_ = NULL; - kern_arg_pool_ = NULL; - - InitHsaApiTable(NULL); - - // Initialize the Hsa Runtime - if (initialize_hsa_) { - status = hsa_api_.hsa_init(); - CHECK_STATUS("Error in hsa_init", status); - } - - // Discover the set of Gpu devices available on the platform - status = hsa_api_.hsa_iterate_agents(GetHsaAgentsCallback, this); - CHECK_STATUS("Error Calling hsa_iterate_agents", status); - if (cpu_pool_ == NULL) CHECK_STATUS("CPU memory pool is not found", HSA_STATUS_ERROR); - if (kern_arg_pool_ == NULL) CHECK_STATUS("Kern-arg memory pool is not found", HSA_STATUS_ERROR); - - // Get AqlProfile API table - aqlprofile_api_ = {0}; -#ifdef ROCP_LD_AQLPROFILE - status = LoadAqlProfileLib(&aqlprofile_api_); -#else - status = hsa_api_.hsa_system_get_major_extension_table(HSA_EXTENSION_AMD_AQLPROFILE, - hsa_ven_amd_aqlprofile_VERSION_MAJOR, - sizeof(aqlprofile_api_), &aqlprofile_api_); -#endif - CHECK_STATUS("aqlprofile API table load failed", status); - - // Get Loader API table - loader_api_ = {0}; - status = hsa_api_.hsa_system_get_major_extension_table(HSA_EXTENSION_AMD_LOADER, 1, - sizeof(loader_api_), &loader_api_); - CHECK_STATUS("loader API table query failed", status); - - // Instantiate HSA timer - timer_ = new HsaTimer(&hsa_api_); - CHECK_STATUS("HSA timer allocation failed", - (timer_ == NULL) ? HSA_STATUS_ERROR : HSA_STATUS_SUCCESS); - - // Time correlation - const uint32_t corr_iters = 1000; - CorrelateTime(HsaTimer::TIME_ID_CLOCK_REALTIME, corr_iters); - CorrelateTime(HsaTimer::TIME_ID_CLOCK_MONOTONIC, corr_iters); - - // System timeout - timeout_ = - (timeout_ns_ == HsaTimer::TIMESTAMP_MAX) ? timeout_ns_ : timer_->ns_to_sysclock(timeout_ns_); -} - -// Destructor of the class -HsaRsrcFactory::~HsaRsrcFactory() { - delete timer_; - for (auto p : cpu_list_) delete p; - for (auto p : gpu_list_) delete p; - if (initialize_hsa_) { - hsa_status_t status = hsa_api_.hsa_shut_down(); - CHECK_STATUS("Error in hsa_shut_down", status); - } -} - -void HsaRsrcFactory::InitHsaApiTable(HsaApiTable* table) { - std::lock_guard lck(mutex_); - - if (hsa_api_.hsa_init == NULL) { - if (table != NULL) { - hsa_api_.hsa_init = table->core_->hsa_init_fn; - hsa_api_.hsa_shut_down = table->core_->hsa_shut_down_fn; - hsa_api_.hsa_agent_get_info = table->core_->hsa_agent_get_info_fn; - hsa_api_.hsa_iterate_agents = table->core_->hsa_iterate_agents_fn; - - hsa_api_.hsa_queue_create = table->core_->hsa_queue_create_fn; - hsa_api_.hsa_queue_destroy = table->core_->hsa_queue_destroy_fn; - hsa_api_.hsa_queue_load_write_index_relaxed = - table->core_->hsa_queue_load_write_index_relaxed_fn; - hsa_api_.hsa_queue_store_write_index_relaxed = - table->core_->hsa_queue_store_write_index_relaxed_fn; - hsa_api_.hsa_queue_load_read_index_relaxed = - table->core_->hsa_queue_load_read_index_relaxed_fn; - - hsa_api_.hsa_signal_create = table->core_->hsa_signal_create_fn; - hsa_api_.hsa_signal_destroy = table->core_->hsa_signal_destroy_fn; - hsa_api_.hsa_signal_load_relaxed = table->core_->hsa_signal_load_relaxed_fn; - hsa_api_.hsa_signal_store_relaxed = table->core_->hsa_signal_store_relaxed_fn; - hsa_api_.hsa_signal_wait_scacquire = table->core_->hsa_signal_wait_scacquire_fn; - hsa_api_.hsa_signal_store_screlease = table->core_->hsa_signal_store_screlease_fn; - - hsa_api_.hsa_code_object_reader_create_from_file = - table->core_->hsa_code_object_reader_create_from_file_fn; - hsa_api_.hsa_executable_create_alt = table->core_->hsa_executable_create_alt_fn; - hsa_api_.hsa_executable_load_agent_code_object = - table->core_->hsa_executable_load_agent_code_object_fn; - hsa_api_.hsa_executable_freeze = table->core_->hsa_executable_freeze_fn; - hsa_api_.hsa_executable_get_symbol = table->core_->hsa_executable_get_symbol_fn; - hsa_api_.hsa_executable_symbol_get_info = table->core_->hsa_executable_symbol_get_info_fn; - hsa_api_.hsa_executable_iterate_symbols = table->core_->hsa_executable_iterate_symbols_fn; - - hsa_api_.hsa_system_get_info = table->core_->hsa_system_get_info_fn; - hsa_api_.hsa_system_get_major_extension_table = - table->core_->hsa_system_get_major_extension_table_fn; - - hsa_api_.hsa_amd_agent_iterate_memory_pools = - table->amd_ext_->hsa_amd_agent_iterate_memory_pools_fn; - hsa_api_.hsa_amd_memory_pool_get_info = table->amd_ext_->hsa_amd_memory_pool_get_info_fn; - hsa_api_.hsa_amd_memory_pool_allocate = table->amd_ext_->hsa_amd_memory_pool_allocate_fn; - hsa_api_.hsa_amd_agents_allow_access = table->amd_ext_->hsa_amd_agents_allow_access_fn; - hsa_api_.hsa_amd_memory_async_copy = table->amd_ext_->hsa_amd_memory_async_copy_fn; - - hsa_api_.hsa_amd_signal_async_handler = table->amd_ext_->hsa_amd_signal_async_handler_fn; - hsa_api_.hsa_amd_profiling_set_profiler_enabled = - table->amd_ext_->hsa_amd_profiling_set_profiler_enabled_fn; - hsa_api_.hsa_amd_profiling_get_async_copy_time = - table->amd_ext_->hsa_amd_profiling_get_async_copy_time_fn; - hsa_api_.hsa_amd_profiling_get_dispatch_time = - table->amd_ext_->hsa_amd_profiling_get_dispatch_time_fn; - } else { - hsa_api_.hsa_init = hsa_init; - hsa_api_.hsa_shut_down = hsa_shut_down; - hsa_api_.hsa_agent_get_info = hsa_agent_get_info; - hsa_api_.hsa_iterate_agents = hsa_iterate_agents; - - hsa_api_.hsa_queue_create = hsa_queue_create; - hsa_api_.hsa_queue_destroy = hsa_queue_destroy; - hsa_api_.hsa_queue_load_write_index_relaxed = hsa_queue_load_write_index_relaxed; - hsa_api_.hsa_queue_store_write_index_relaxed = hsa_queue_store_write_index_relaxed; - hsa_api_.hsa_queue_load_read_index_relaxed = hsa_queue_load_read_index_relaxed; - - hsa_api_.hsa_signal_create = hsa_signal_create; - hsa_api_.hsa_signal_destroy = hsa_signal_destroy; - hsa_api_.hsa_signal_load_relaxed = hsa_signal_load_relaxed; - hsa_api_.hsa_signal_store_relaxed = hsa_signal_store_relaxed; - hsa_api_.hsa_signal_wait_scacquire = hsa_signal_wait_scacquire; - hsa_api_.hsa_signal_store_screlease = hsa_signal_store_screlease; - - hsa_api_.hsa_code_object_reader_create_from_file = hsa_code_object_reader_create_from_file; - hsa_api_.hsa_executable_create_alt = hsa_executable_create_alt; - hsa_api_.hsa_executable_load_agent_code_object = hsa_executable_load_agent_code_object; - hsa_api_.hsa_executable_freeze = hsa_executable_freeze; - hsa_api_.hsa_executable_get_symbol = hsa_executable_get_symbol; - hsa_api_.hsa_executable_symbol_get_info = hsa_executable_symbol_get_info; - hsa_api_.hsa_executable_iterate_symbols = hsa_executable_iterate_symbols; - - hsa_api_.hsa_system_get_info = hsa_system_get_info; - hsa_api_.hsa_system_get_major_extension_table = hsa_system_get_major_extension_table; - - hsa_api_.hsa_amd_agent_iterate_memory_pools = hsa_amd_agent_iterate_memory_pools; - hsa_api_.hsa_amd_memory_pool_get_info = hsa_amd_memory_pool_get_info; - hsa_api_.hsa_amd_memory_pool_allocate = hsa_amd_memory_pool_allocate; - hsa_api_.hsa_amd_agents_allow_access = hsa_amd_agents_allow_access; - hsa_api_.hsa_amd_memory_async_copy = hsa_amd_memory_async_copy; - - hsa_api_.hsa_amd_signal_async_handler = hsa_amd_signal_async_handler; - hsa_api_.hsa_amd_profiling_set_profiler_enabled = hsa_amd_profiling_set_profiler_enabled; - hsa_api_.hsa_amd_profiling_get_async_copy_time = hsa_amd_profiling_get_async_copy_time; - hsa_api_.hsa_amd_profiling_get_dispatch_time = hsa_amd_profiling_get_dispatch_time; - } - } -} - -hsa_status_t HsaRsrcFactory::LoadAqlProfileLib(aqlprofile_pfn_t* api) { - void* handle = dlopen(kAqlProfileLib, RTLD_NOW); - if (handle == NULL) { - fprintf(stderr, "Loading '%s' failed, %s\n", kAqlProfileLib, dlerror()); - return HSA_STATUS_ERROR; - } - dlerror(); /* Clear any existing error */ - - api->hsa_ven_amd_aqlprofile_error_string = - (decltype(::hsa_ven_amd_aqlprofile_error_string)*)dlsym( - handle, "hsa_ven_amd_aqlprofile_error_string"); - api->hsa_ven_amd_aqlprofile_validate_event = - (decltype(::hsa_ven_amd_aqlprofile_validate_event)*)dlsym( - handle, "hsa_ven_amd_aqlprofile_validate_event"); - api->hsa_ven_amd_aqlprofile_start = - (decltype(::hsa_ven_amd_aqlprofile_start)*)dlsym(handle, "hsa_ven_amd_aqlprofile_start"); - api->hsa_ven_amd_aqlprofile_stop = - (decltype(::hsa_ven_amd_aqlprofile_stop)*)dlsym(handle, "hsa_ven_amd_aqlprofile_stop"); -#ifdef AQLPROF_NEW_API - api->hsa_ven_amd_aqlprofile_read = - (decltype(::hsa_ven_amd_aqlprofile_read)*)dlsym(handle, "hsa_ven_amd_aqlprofile_read"); -#endif - api->hsa_ven_amd_aqlprofile_legacy_get_pm4 = - (decltype(::hsa_ven_amd_aqlprofile_legacy_get_pm4)*)dlsym( - handle, "hsa_ven_amd_aqlprofile_legacy_get_pm4"); - api->hsa_ven_amd_aqlprofile_get_info = (decltype(::hsa_ven_amd_aqlprofile_get_info)*)dlsym( - handle, "hsa_ven_amd_aqlprofile_get_info"); - api->hsa_ven_amd_aqlprofile_iterate_data = - (decltype(::hsa_ven_amd_aqlprofile_iterate_data)*)dlsym( - handle, "hsa_ven_amd_aqlprofile_iterate_data"); - - return HSA_STATUS_SUCCESS; -} - -// Add system agent info -const AgentInfo* HsaRsrcFactory::AddAgentInfo(const hsa_agent_t agent) { - // Determine if device is a Gpu agent - hsa_status_t status; - AgentInfo* agent_info = NULL; - - hsa_device_type_t type; - status = hsa_api_.hsa_agent_get_info(agent, HSA_AGENT_INFO_DEVICE, &type); - CHECK_STATUS("Error Calling hsa_agent_get_info", status); - - if (type == HSA_DEVICE_TYPE_CPU) { - agent_info = new AgentInfo{}; - agent_info->dev_id = agent; - agent_info->dev_type = HSA_DEVICE_TYPE_CPU; - agent_info->dev_index = cpu_list_.size(); - - status = - hsa_api_.hsa_amd_agent_iterate_memory_pools(agent, FindStandardPool, &agent_info->cpu_pool); - if ((status == HSA_STATUS_INFO_BREAK) && (cpu_pool_ == NULL)) cpu_pool_ = &agent_info->cpu_pool; - status = hsa_api_.hsa_amd_agent_iterate_memory_pools(agent, FindKernArgPool, - &agent_info->kern_arg_pool); - if ((status == HSA_STATUS_INFO_BREAK) && (kern_arg_pool_ == NULL)) - kern_arg_pool_ = &agent_info->kern_arg_pool; - agent_info->gpu_pool = {}; - - cpu_list_.push_back(agent_info); - cpu_agents_.push_back(agent); - } - - if (type == HSA_DEVICE_TYPE_GPU) { - agent_info = new AgentInfo{}; - agent_info->dev_id = agent; - agent_info->dev_type = HSA_DEVICE_TYPE_GPU; - hsa_api_.hsa_agent_get_info(agent, HSA_AGENT_INFO_NAME, agent_info->name); - strncpy(agent_info->gfxip, agent_info->name, 4); - agent_info->gfxip[4] = '\0'; - hsa_api_.hsa_agent_get_info(agent, HSA_AGENT_INFO_WAVEFRONT_SIZE, &agent_info->max_wave_size); - hsa_api_.hsa_agent_get_info(agent, HSA_AGENT_INFO_QUEUE_MAX_SIZE, &agent_info->max_queue_size); - hsa_api_.hsa_agent_get_info(agent, HSA_AGENT_INFO_PROFILE, &agent_info->profile); - agent_info->is_apu = (agent_info->profile == HSA_PROFILE_FULL) ? true : false; - hsa_api_.hsa_agent_get_info( - agent, static_cast(HSA_AMD_AGENT_INFO_COMPUTE_UNIT_COUNT), - &agent_info->cu_num); - hsa_api_.hsa_agent_get_info(agent, - static_cast(HSA_AMD_AGENT_INFO_MAX_WAVES_PER_CU), - &agent_info->waves_per_cu); - hsa_api_.hsa_agent_get_info(agent, - static_cast(HSA_AMD_AGENT_INFO_NUM_SIMDS_PER_CU), - &agent_info->simds_per_cu); - hsa_api_.hsa_agent_get_info( - agent, static_cast(HSA_AMD_AGENT_INFO_NUM_SHADER_ENGINES), - &agent_info->se_num); - hsa_api_.hsa_agent_get_info( - agent, static_cast(HSA_AMD_AGENT_INFO_NUM_SHADER_ARRAYS_PER_SE), - &agent_info->shader_arrays_per_se); - - agent_info->cpu_pool = {}; - agent_info->kern_arg_pool = {}; - status = - hsa_api_.hsa_amd_agent_iterate_memory_pools(agent, FindStandardPool, &agent_info->gpu_pool); - CHECK_ITER_STATUS("hsa_amd_agent_iterate_memory_pools(gpu pool)", status); - - // GFX8 and GFX9 SGPR/VGPR block sizes - agent_info->sgpr_block_dflt = (strcmp(agent_info->gfxip, "gfx8") == 0) ? 1 : 2; - agent_info->sgpr_block_size = 8; - agent_info->vgpr_block_size = 4; - - // Set GPU index - agent_info->dev_index = gpu_list_.size(); - gpu_list_.push_back(agent_info); - gpu_agents_.push_back(agent); - } - - if (agent_info) agent_map_[agent.handle] = agent_info; - - return agent_info; -} - -// Return systen agent info -const AgentInfo* HsaRsrcFactory::GetAgentInfo(const hsa_agent_t agent) { - const AgentInfo* agent_info = NULL; - auto it = agent_map_.find(agent.handle); - if (it != agent_map_.end()) { - agent_info = it->second; - } - return agent_info; -} - -// Get the count of Hsa Gpu Agents available on the platform -// -// @return uint32_t Number of Gpu agents on platform -// -uint32_t HsaRsrcFactory::GetCountOfGpuAgents() { return uint32_t(gpu_list_.size()); } - -// Get the count of Hsa Cpu Agents available on the platform -// -// @return uint32_t Number of Cpu agents on platform -// -uint32_t HsaRsrcFactory::GetCountOfCpuAgents() { return uint32_t(cpu_list_.size()); } - -// Get the AgentInfo handle of a Gpu device -// -// @param idx Gpu Agent at specified index -// -// @param agent_info Output parameter updated with AgentInfo -// -// @return bool true if successful, false otherwise -// -bool HsaRsrcFactory::GetGpuAgentInfo(uint32_t idx, const AgentInfo** agent_info) { - // Determine if request is valid - uint32_t size = uint32_t(gpu_list_.size()); - if (idx >= size) { - return false; - } - - // Copy AgentInfo from specified index - *agent_info = gpu_list_[idx]; - - return true; -} - -// Get the AgentInfo handle of a Cpu device -// -// @param idx Cpu Agent at specified index -// -// @param agent_info Output parameter updated with AgentInfo -// -// @return bool true if successful, false otherwise -// -bool HsaRsrcFactory::GetCpuAgentInfo(uint32_t idx, const AgentInfo** agent_info) { - // Determine if request is valid - uint32_t size = uint32_t(cpu_list_.size()); - if (idx >= size) { - return false; - } - - // Copy AgentInfo from specified index - *agent_info = cpu_list_[idx]; - return true; -} - -// Create a Queue object and return its handle. The queue object is expected -// to support user requested number of Aql dispatch packets. -// -// @param agent_info Gpu Agent on which to create a queue object -// -// @param num_Pkts Number of packets to be held by queue -// -// @param queue Output parameter updated with handle of queue object -// -// @return bool true if successful, false otherwise -// -bool HsaRsrcFactory::CreateQueue(const AgentInfo* agent_info, uint32_t num_pkts, - hsa_queue_t** queue) { - hsa_status_t status; - status = hsa_api_.hsa_queue_create(agent_info->dev_id, num_pkts, HSA_QUEUE_TYPE_MULTI, NULL, NULL, - UINT32_MAX, UINT32_MAX, queue); - return (status == HSA_STATUS_SUCCESS); -} - -// Create a Signal object and return its handle. -// @param value Initial value of signal object -// @param signal Output parameter updated with handle of signal object -// @return bool true if successful, false otherwise -bool HsaRsrcFactory::CreateSignal(uint32_t value, hsa_signal_t* signal) { - hsa_status_t status; - status = hsa_api_.hsa_signal_create(value, 0, NULL, signal); - return (status == HSA_STATUS_SUCCESS); -} - -// Allocate memory for use by a kernel of specified size in specified -// agent's memory region. -// @param agent_info Agent from whose memory region to allocate -// @param size Size of memory in terms of bytes -// @return uint8_t* Pointer to buffer, null if allocation fails. -uint8_t* HsaRsrcFactory::AllocateLocalMemory(const AgentInfo* agent_info, size_t size) { - hsa_status_t status = HSA_STATUS_ERROR; - uint8_t* buffer = NULL; - size = (size + MEM_PAGE_MASK) & ~MEM_PAGE_MASK; - status = hsa_api_.hsa_amd_memory_pool_allocate(agent_info->gpu_pool, size, 0, - reinterpret_cast(&buffer)); - uint8_t* ptr = (status == HSA_STATUS_SUCCESS) ? buffer : NULL; - return ptr; -} - -// Allocate memory to pass kernel parameters. -// Memory is alocated accessible for all CPU agents and for GPU given by AgentInfo parameter. -// @param agent_info Agent from whose memory region to allocate -// @param size Size of memory in terms of bytes -// @return uint8_t* Pointer to buffer, null if allocation fails. -uint8_t* HsaRsrcFactory::AllocateKernArgMemory(const AgentInfo* agent_info, size_t size) { - hsa_status_t status = HSA_STATUS_ERROR; - uint8_t* buffer = NULL; - if (!cpu_agents_.empty()) { - size = (size + MEM_PAGE_MASK) & ~MEM_PAGE_MASK; - status = hsa_api_.hsa_amd_memory_pool_allocate(*kern_arg_pool_, size, 0, - reinterpret_cast(&buffer)); - // Both the CPU and GPU can access the kernel arguments - if (status == HSA_STATUS_SUCCESS) { - hsa_agent_t ag_list[1] = {agent_info->dev_id}; - status = hsa_api_.hsa_amd_agents_allow_access(1, ag_list, NULL, buffer); - } - } - uint8_t* ptr = (status == HSA_STATUS_SUCCESS) ? buffer : NULL; - return ptr; -} - -// Allocate system memory accessible by both CPU and GPU -// @param agent_info Agent from whose memory region to allocate -// @param size Size of memory in terms of bytes -// @return uint8_t* Pointer to buffer, null if allocation fails. -uint8_t* HsaRsrcFactory::AllocateSysMemory(const AgentInfo* agent_info, size_t size) { - hsa_status_t status = HSA_STATUS_ERROR; - uint8_t* buffer = NULL; - size = (size + MEM_PAGE_MASK) & ~MEM_PAGE_MASK; - if (!cpu_agents_.empty()) { - status = hsa_api_.hsa_amd_memory_pool_allocate(*cpu_pool_, size, 0, - reinterpret_cast(&buffer)); - // Both the CPU and GPU can access the memory - if (status == HSA_STATUS_SUCCESS) { - hsa_agent_t ag_list[1] = {agent_info->dev_id}; - status = hsa_api_.hsa_amd_agents_allow_access(1, ag_list, NULL, buffer); - } - } - uint8_t* ptr = (status == HSA_STATUS_SUCCESS) ? buffer : NULL; - return ptr; -} - -// Allocate memory for command buffer. -// @param agent_info Agent from whose memory region to allocate -// @param size Size of memory in terms of bytes -// @return uint8_t* Pointer to buffer, null if allocation fails. -uint8_t* HsaRsrcFactory::AllocateCmdMemory(const AgentInfo* agent_info, size_t size) { - size = (size + MEM_PAGE_MASK) & ~MEM_PAGE_MASK; - uint8_t* ptr = (agent_info->is_apu && CMD_MEMORY_MMAP) - ? reinterpret_cast( - mmap(NULL, size, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_SHARED | MAP_ANONYMOUS, 0, 0)) - : AllocateSysMemory(agent_info, size); - return ptr; -} - -// Wait signal -hsa_signal_value_t HsaRsrcFactory::SignalWait(const hsa_signal_t& signal, - const hsa_signal_value_t& signal_value) const { - const hsa_signal_value_t exp_value = signal_value - 1; - hsa_signal_value_t ret_value = signal_value; - while (1) { - ret_value = hsa_api_.hsa_signal_wait_scacquire(signal, HSA_SIGNAL_CONDITION_LT, signal_value, - timeout_, HSA_WAIT_STATE_BLOCKED); - if (ret_value == exp_value) break; - if (ret_value != signal_value) { - std::cerr << "Error: HsaRsrcFactory::SignalWait: signal_value(" << signal_value - << "), ret_value(" << ret_value << ")" << std::endl - << std::flush; - abort(); - } - } - return ret_value; -} - -// Wait signal with signal value restore -void HsaRsrcFactory::SignalWaitRestore(const hsa_signal_t& signal, - const hsa_signal_value_t& signal_value) const { - SignalWait(signal, signal_value); - hsa_api_.hsa_signal_store_relaxed(const_cast(signal), signal_value); -} - -// Copy data from GPU to host memory -bool HsaRsrcFactory::Memcpy(const hsa_agent_t& agent, void* dst, const void* src, size_t size) { - hsa_status_t status = HSA_STATUS_ERROR; - if (!cpu_agents_.empty()) { - hsa_signal_t s = {}; - status = hsa_api_.hsa_signal_create(1, 0, NULL, &s); - CHECK_STATUS("hsa_signal_create()", status); - status = hsa_api_.hsa_amd_memory_async_copy(dst, cpu_agents_[0], src, agent, size, 0, NULL, s); - CHECK_STATUS("hsa_amd_memory_async_copy()", status); - SignalWait(s, 1); - status = hsa_api_.hsa_signal_destroy(s); - CHECK_STATUS("hsa_signal_destroy()", status); - } - return (status == HSA_STATUS_SUCCESS); -} -bool HsaRsrcFactory::Memcpy(const AgentInfo* agent_info, void* dst, const void* src, size_t size) { - return Memcpy(agent_info->dev_id, dst, src, size); -} - -// Memory free method -bool HsaRsrcFactory::FreeMemory(void* ptr) { - const hsa_status_t status = hsa_memory_free(ptr); - CHECK_STATUS("hsa_memory_free", status); - return (status == HSA_STATUS_SUCCESS); -} - -// Loads an Assembled Brig file and Finalizes it into Device Isa -// @param agent_info Gpu device for which to finalize -// @param brig_path File path of the Assembled Brig file -// @param kernel_name Name of the kernel to finalize -// @param code_desc Handle of finalized Code Descriptor that could -// be used to submit for execution -// @return bool true if successful, false otherwise -bool HsaRsrcFactory::LoadAndFinalize(const AgentInfo* agent_info, const char* brig_path, - const char* kernel_name, hsa_executable_t* executable, - hsa_executable_symbol_t* code_desc) { - hsa_status_t status = HSA_STATUS_ERROR; - - // Build the code object filename - std::string filename(brig_path); - std::clog << "Code object filename: " << filename << std::endl; - - // Open the file containing code object - hsa_file_t file_handle = open(filename.c_str(), O_RDONLY); - if (file_handle == -1) { - std::cerr << "Error: failed to load '" << filename << "'" << std::endl; - assert(false); - return false; - } - - // Create code object reader - hsa_code_object_reader_t code_obj_rdr = {0}; - status = hsa_api_.hsa_code_object_reader_create_from_file(file_handle, &code_obj_rdr); - if (status != HSA_STATUS_SUCCESS) { - std::cerr << "Failed to create code object reader '" << filename << "'" << std::endl; - return false; - } - - // Create executable. - status = hsa_api_.hsa_executable_create_alt( - HSA_PROFILE_FULL, HSA_DEFAULT_FLOAT_ROUNDING_MODE_DEFAULT, NULL, executable); - CHECK_STATUS("Error in creating executable object", status); - - // Load code object. - status = hsa_api_.hsa_executable_load_agent_code_object(*executable, agent_info->dev_id, - code_obj_rdr, NULL, NULL); - CHECK_STATUS("Error in loading executable object", status); - - // Freeze executable. - status = hsa_api_.hsa_executable_freeze(*executable, ""); - CHECK_STATUS("Error in freezing executable object", status); - - // Get symbol handle. - hsa_executable_symbol_t kernelSymbol; - status = hsa_api_.hsa_executable_get_symbol(*executable, NULL, kernel_name, agent_info->dev_id, 0, - &kernelSymbol); - CHECK_STATUS("Error in looking up kernel symbol", status); - - // Update output parameter - *code_desc = kernelSymbol; - return true; -} - -// Print the various fields of Hsa Gpu Agents -bool HsaRsrcFactory::PrintGpuAgents(const std::string& header) { - std::cout << std::flush; - std::clog << header << " :" << std::endl; - - const AgentInfo* agent_info; - int size = uint32_t(gpu_list_.size()); - for (int idx = 0; idx < size; idx++) { - agent_info = gpu_list_[idx]; - - std::clog << "> agent[" << idx << "] :" << std::endl; - std::clog << ">> Name : " << agent_info->name << std::endl; - std::clog << ">> APU : " << agent_info->is_apu << std::endl; - std::clog << ">> HSAIL profile : " << agent_info->profile << std::endl; - std::clog << ">> Max Wave Size : " << agent_info->max_wave_size << std::endl; - std::clog << ">> Max Queue Size : " << agent_info->max_queue_size << std::endl; - std::clog << ">> CU number : " << agent_info->cu_num << std::endl; - std::clog << ">> Waves per CU : " << agent_info->waves_per_cu << std::endl; - std::clog << ">> SIMDs per CU : " << agent_info->simds_per_cu << std::endl; - std::clog << ">> SE number : " << agent_info->se_num << std::endl; - std::clog << ">> Shader Arrays per SE : " << agent_info->shader_arrays_per_se << std::endl; - } - return true; -} - -uint64_t HsaRsrcFactory::Submit(hsa_queue_t* queue, const void* packet) { - const uint32_t slot_size_b = CMD_SLOT_SIZE_B; - - // adevance command queue - const uint64_t write_idx = hsa_api_.hsa_queue_load_write_index_relaxed(queue); - hsa_api_.hsa_queue_store_write_index_relaxed(queue, write_idx + 1); - while ((write_idx - hsa_api_.hsa_queue_load_read_index_relaxed(queue)) >= queue->size) { - sched_yield(); - } - - uint32_t slot_idx = (uint32_t)(write_idx % queue->size); - uint32_t* queue_slot = - reinterpret_cast((uintptr_t)(queue->base_address) + (slot_idx * slot_size_b)); - const uint32_t* slot_data = reinterpret_cast(packet); - - // Copy buffered commands into the queue slot. - // Overwrite the AQL invalid header (first dword) last. - // This prevents the slot from being read until it's fully written. - memcpy(&queue_slot[1], &slot_data[1], slot_size_b - sizeof(uint32_t)); - std::atomic* header_atomic_ptr = - reinterpret_cast*>(&queue_slot[0]); - header_atomic_ptr->store(slot_data[0], std::memory_order_release); - - // ringdoor bell - hsa_api_.hsa_signal_store_relaxed(queue->doorbell_signal, write_idx); - - return write_idx; -} - -uint64_t HsaRsrcFactory::Submit(hsa_queue_t* queue, const void* packet, size_t size_bytes) { - const uint32_t slot_size_b = CMD_SLOT_SIZE_B; - if ((size_bytes & (slot_size_b - 1)) != 0) { - fprintf(stderr, "HsaRsrcFactory::Submit: Bad packet size %zx\n", size_bytes); - abort(); - } - - const char* begin = reinterpret_cast(packet); - const char* end = begin + size_bytes; - uint64_t write_idx = 0; - for (const char* ptr = begin; ptr < end; ptr += slot_size_b) { - write_idx = Submit(queue, ptr); - } - - return write_idx; -} - -const char* HsaRsrcFactory::GetKernelName(uint64_t addr) { - std::lock_guard lck(mutex_); - const auto it = symbols_map_->find(addr); - if (it == symbols_map_->end()) { - fprintf(stderr, "HsaRsrcFactory::kernel addr (0x%lx) is not found\n", addr); - abort(); - } - return strdup(it->second); -} - -void HsaRsrcFactory::EnableExecutableTracking(HsaApiTable* table) { - std::lock_guard lck(mutex_); - executable_tracking_on_ = true; - table->core_->hsa_executable_freeze_fn = hsa_executable_freeze_interceptor; -} - -hsa_status_t HsaRsrcFactory::executable_symbols_cb(hsa_executable_t exec, - hsa_executable_symbol_t symbol, void* data) { - hsa_symbol_kind_t value = (hsa_symbol_kind_t)0; - hsa_status_t status = - hsa_api_.hsa_executable_symbol_get_info(symbol, HSA_EXECUTABLE_SYMBOL_INFO_TYPE, &value); - CHECK_STATUS("Error in getting symbol info", status); - if (value == HSA_SYMBOL_KIND_KERNEL) { - uint64_t addr = 0; - uint32_t len = 0; - status = hsa_api_.hsa_executable_symbol_get_info( - symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_OBJECT, &addr); - CHECK_STATUS("Error in getting kernel object", status); - status = hsa_api_.hsa_executable_symbol_get_info(symbol, HSA_EXECUTABLE_SYMBOL_INFO_NAME_LENGTH, - &len); - CHECK_STATUS("Error in getting name len", status); - char* name = new char[len + 1]; - status = hsa_api_.hsa_executable_symbol_get_info(symbol, HSA_EXECUTABLE_SYMBOL_INFO_NAME, name); - CHECK_STATUS("Error in getting kernel name", status); - name[len] = 0; - auto ret = symbols_map_->insert({addr, name}); - if (ret.second == false) { - delete[] ret.first->second; - ret.first->second = name; - } - } - return HSA_STATUS_SUCCESS; -} - -hsa_status_t HsaRsrcFactory::hsa_executable_freeze_interceptor(hsa_executable_t executable, - const char* options) { - std::lock_guard lck(mutex_); - if (symbols_map_ == NULL) symbols_map_ = new symbols_map_t; - hsa_status_t status = - hsa_api_.hsa_executable_iterate_symbols(executable, executable_symbols_cb, NULL); - CHECK_STATUS("Error in iterating executable symbols", status); - return hsa_api_.hsa_executable_freeze(executable, options); - ; -} - -void HsaRsrcFactory::DumpHandles(FILE* file) { - auto beg = agent_map_.begin(); - auto end = agent_map_.end(); - for (auto it = beg; it != end; ++it) { - const AgentInfo* agent_info = it->second; - fprintf(file, "0x%lx agent %s\n", agent_info->dev_id.handle, - (agent_info->dev_type == HSA_DEVICE_TYPE_CPU) ? "cpu" : "gpu"); - if (agent_info->cpu_pool.handle != 0) - fprintf(file, "0x%lx pool cpu\n", agent_info->cpu_pool.handle); - if (agent_info->kern_arg_pool.handle != 0) - fprintf(file, "0x%lx pool cpu kernarg\n", agent_info->kern_arg_pool.handle); - if (agent_info->gpu_pool.handle != 0) - fprintf(file, "0x%lx pool gpu\n", agent_info->gpu_pool.handle); - } - fflush(file); -} - -std::atomic HsaRsrcFactory::instance_{}; -HsaRsrcFactory::mutex_t HsaRsrcFactory::mutex_; -HsaRsrcFactory::timestamp_t HsaRsrcFactory::timeout_ns_ = HsaTimer::TIMESTAMP_MAX; -hsa_pfn_t HsaRsrcFactory::hsa_api_{}; -bool HsaRsrcFactory::executable_tracking_on_ = false; -HsaRsrcFactory::symbols_map_t* HsaRsrcFactory::symbols_map_ = NULL; diff --git a/test/hsa/src/hsa_rsrc_factory.h b/test/hsa/src/hsa_rsrc_factory.h deleted file mode 100644 index 22da8527d8..0000000000 --- a/test/hsa/src/hsa_rsrc_factory.h +++ /dev/null @@ -1,516 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef _HSA_RSRC_FACTORY_H_ -#define _HSA_RSRC_FACTORY_H_ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include - -#define HSA_ARGUMENT_ALIGN_BYTES 16 -#define HSA_QUEUE_ALIGN_BYTES 64 -#define HSA_PACKET_ALIGN_BYTES 64 - -#define CHECK_STATUS(msg, status) \ - do { \ - if ((status) != HSA_STATUS_SUCCESS) { \ - const char* emsg = 0; \ - hsa_status_string(status, &emsg); \ - printf("%s: %s\n", msg, emsg ? emsg : ""); \ - abort(); \ - } \ - } while (0) - -#define CHECK_ITER_STATUS(msg, status) \ - do { \ - if ((status) != HSA_STATUS_INFO_BREAK) { \ - const char* emsg = 0; \ - hsa_status_string(status, &emsg); \ - printf("%s: %s\n", msg, emsg ? emsg : ""); \ - abort(); \ - } \ - } while (0) - -static const size_t MEM_PAGE_BYTES = 0x1000; -static const size_t MEM_PAGE_MASK = MEM_PAGE_BYTES - 1; -typedef decltype(hsa_agent_t::handle) hsa_agent_handle_t; - -struct hsa_pfn_t { - decltype(::hsa_init)* hsa_init; - decltype(::hsa_shut_down)* hsa_shut_down; - decltype(::hsa_agent_get_info)* hsa_agent_get_info; - decltype(::hsa_iterate_agents)* hsa_iterate_agents; - - decltype(::hsa_queue_create)* hsa_queue_create; - decltype(::hsa_queue_destroy)* hsa_queue_destroy; - decltype(::hsa_queue_load_write_index_relaxed)* hsa_queue_load_write_index_relaxed; - decltype(::hsa_queue_store_write_index_relaxed)* hsa_queue_store_write_index_relaxed; - decltype(::hsa_queue_load_read_index_relaxed)* hsa_queue_load_read_index_relaxed; - - decltype(::hsa_signal_create)* hsa_signal_create; - decltype(::hsa_signal_destroy)* hsa_signal_destroy; - decltype(::hsa_signal_load_relaxed)* hsa_signal_load_relaxed; - decltype(::hsa_signal_store_relaxed)* hsa_signal_store_relaxed; - decltype(::hsa_signal_wait_scacquire)* hsa_signal_wait_scacquire; - decltype(::hsa_signal_store_screlease)* hsa_signal_store_screlease; - - decltype(::hsa_code_object_reader_create_from_file)* hsa_code_object_reader_create_from_file; - decltype(::hsa_executable_create_alt)* hsa_executable_create_alt; - decltype(::hsa_executable_load_agent_code_object)* hsa_executable_load_agent_code_object; - decltype(::hsa_executable_freeze)* hsa_executable_freeze; - decltype(::hsa_executable_get_symbol)* hsa_executable_get_symbol; - decltype(::hsa_executable_symbol_get_info)* hsa_executable_symbol_get_info; - decltype(::hsa_executable_iterate_symbols)* hsa_executable_iterate_symbols; - - decltype(::hsa_system_get_info)* hsa_system_get_info; - decltype(::hsa_system_get_major_extension_table)* hsa_system_get_major_extension_table; - - decltype(::hsa_amd_agent_iterate_memory_pools)* hsa_amd_agent_iterate_memory_pools; - decltype(::hsa_amd_memory_pool_get_info)* hsa_amd_memory_pool_get_info; - decltype(::hsa_amd_memory_pool_allocate)* hsa_amd_memory_pool_allocate; - decltype(::hsa_amd_agents_allow_access)* hsa_amd_agents_allow_access; - decltype(::hsa_amd_memory_async_copy)* hsa_amd_memory_async_copy; - - decltype(::hsa_amd_signal_async_handler)* hsa_amd_signal_async_handler; - decltype(::hsa_amd_profiling_set_profiler_enabled)* hsa_amd_profiling_set_profiler_enabled; - decltype(::hsa_amd_profiling_get_async_copy_time)* hsa_amd_profiling_get_async_copy_time; - decltype(::hsa_amd_profiling_get_dispatch_time)* hsa_amd_profiling_get_dispatch_time; -}; - -// Encapsulates information about a Hsa Agent such as its -// handle, name, max queue size, max wavefront size, etc. -struct AgentInfo { - // Handle of Agent - hsa_agent_t dev_id; - - // Agent type - Cpu = 0, Gpu = 1 or Dsp = 2 - uint32_t dev_type; - - // APU flag - bool is_apu; - - // Agent system index - uint32_t dev_index; - - // GFXIP name - char gfxip[64]; - - // Name of Agent whose length is less than 64 - char name[64]; - - // Max size of Wavefront size - uint32_t max_wave_size; - - // Max size of Queue buffer - uint32_t max_queue_size; - - // Hsail profile supported by agent - hsa_profile_t profile; - - // CPU/GPU/kern-arg memory pools - hsa_amd_memory_pool_t cpu_pool; - hsa_amd_memory_pool_t gpu_pool; - hsa_amd_memory_pool_t kern_arg_pool; - - // The number of compute unit available in the agent. - uint32_t cu_num; - - // Maximum number of waves possible in a Compute Unit. - uint32_t waves_per_cu; - - // Number of SIMD's per compute unit CU - uint32_t simds_per_cu; - - // Number of Shader Engines (SE) in Gpu - uint32_t se_num; - - // Number of Shader Arrays Per Shader Engines in Gpu - uint32_t shader_arrays_per_se; - - // SGPR/VGPR block sizes - uint32_t sgpr_block_dflt; - uint32_t sgpr_block_size; - uint32_t vgpr_block_size; -}; - -// HSA timer class -// Provides current HSA timestampa and system-clock/ns conversion API -class HsaTimer { - public: - typedef uint64_t timestamp_t; - static const timestamp_t TIMESTAMP_MAX = UINT64_MAX; - typedef long double freq_t; - - enum time_id_t { TIME_ID_CLOCK_REALTIME = 0, TIME_ID_CLOCK_MONOTONIC = 1, TIME_ID_NUMBER }; - - HsaTimer(const hsa_pfn_t* hsa_api) : hsa_api_(hsa_api) { - timestamp_t sysclock_hz = 0; - hsa_status_t status = - hsa_api_->hsa_system_get_info(HSA_SYSTEM_INFO_TIMESTAMP_FREQUENCY, &sysclock_hz); - CHECK_STATUS("hsa_system_get_info(HSA_SYSTEM_INFO_TIMESTAMP_FREQUENCY)", status); - sysclock_factor_ = (freq_t)1000000000 / (freq_t)sysclock_hz; - } - - // Methods for system-clock/ns conversion - timestamp_t sysclock_to_ns(const timestamp_t& sysclock) const { - return timestamp_t((freq_t)sysclock * sysclock_factor_); - } - timestamp_t ns_to_sysclock(const timestamp_t& time) const { - return timestamp_t((freq_t)time / sysclock_factor_); - } - - // Method for timespec/ns conversion - static timestamp_t timespec_to_ns(const timespec& time) { - return ((timestamp_t)time.tv_sec * 1000000000) + time.tv_nsec; - } - - // Return timestamp in 'ns' - timestamp_t timestamp_ns() const { - timestamp_t sysclock; - hsa_status_t status = hsa_api_->hsa_system_get_info(HSA_SYSTEM_INFO_TIMESTAMP, &sysclock); - CHECK_STATUS("hsa_system_get_info(HSA_SYSTEM_INFO_TIMESTAMP)", status); - return sysclock_to_ns(sysclock); - } - - // Return time in 'ns' - static timestamp_t clocktime_ns(clockid_t clock_id) { - timespec time; - clock_gettime(clock_id, &time); - return timespec_to_ns(time); - } - - // Return pair of correlated values of profiling timestamp and time with - // correlation error for a given time ID and number of iterations - void correlated_pair_ns(time_id_t time_id, uint32_t iters, timestamp_t* timestamp_v, - timestamp_t* time_v, timestamp_t* error_v) const { - clockid_t clock_id = 0; - switch (clock_id) { - case TIME_ID_CLOCK_REALTIME: - clock_id = CLOCK_REALTIME; - break; - case TIME_ID_CLOCK_MONOTONIC: - clock_id = CLOCK_MONOTONIC; - break; - default: - CHECK_STATUS("internal error: invalid time_id", HSA_STATUS_ERROR); - } - - std::vector ts_vec(iters); - std::vector tm_vec(iters); - const uint32_t steps = iters - 1; - - for (uint32_t i = 0; i < iters; ++i) { - hsa_api_->hsa_system_get_info(HSA_SYSTEM_INFO_TIMESTAMP, &ts_vec[i]); - clock_gettime(clock_id, &tm_vec[i]); - } - - const timestamp_t ts_base = sysclock_to_ns(ts_vec.front()); - const timestamp_t tm_base = timespec_to_ns(tm_vec.front()); - const timestamp_t error = (ts_vec.back() - ts_vec.front()) / (2 * steps); - - timestamp_t ts_accum = 0; - timestamp_t tm_accum = 0; - for (uint32_t i = 0; i < iters; ++i) { - ts_accum += (ts_vec[i] - ts_base); - tm_accum += (timespec_to_ns(tm_vec[i]) - tm_base); - } - - *timestamp_v = (ts_accum / iters) + ts_base + error; - *time_v = (tm_accum / iters) + tm_base; - *error_v = error; - } - - private: - // Timestamp frequency factor - freq_t sysclock_factor_; - // HSA API table - const hsa_pfn_t* const hsa_api_; -}; - -class HsaRsrcFactory { - public: - static const size_t CMD_SLOT_SIZE_B = 0x40; - typedef std::recursive_mutex mutex_t; - typedef HsaTimer::timestamp_t timestamp_t; - - static HsaRsrcFactory* Create(bool initialize_hsa = true) { - std::lock_guard lck(mutex_); - HsaRsrcFactory* obj = instance_.load(std::memory_order_relaxed); - if (obj == NULL) { - obj = new HsaRsrcFactory(initialize_hsa); - instance_.store(obj, std::memory_order_release); - } - return obj; - } - - static HsaRsrcFactory& Instance() { - HsaRsrcFactory* obj = instance_.load(std::memory_order_acquire); - if (obj == NULL) obj = Create(false); - hsa_status_t status = (obj != NULL) ? HSA_STATUS_SUCCESS : HSA_STATUS_ERROR; - CHECK_STATUS("HsaRsrcFactory::Instance() failed", status); - return *obj; - } - - static void Destroy() { - std::lock_guard lck(mutex_); - if (instance_) delete instance_.load(); - instance_ = NULL; - } - - // Return system agent info - const AgentInfo* GetAgentInfo(const hsa_agent_t agent); - - // Get the count of Hsa Gpu Agents available on the platform - // @return uint32_t Number of Gpu agents on platform - uint32_t GetCountOfGpuAgents(); - - // Get the count of Hsa Cpu Agents available on the platform - // @return uint32_t Number of Cpu agents on platform - uint32_t GetCountOfCpuAgents(); - - // Get the AgentInfo handle of a Gpu device - // @param idx Gpu Agent at specified index - // @param agent_info Output parameter updated with AgentInfo - // @return bool true if successful, false otherwise - bool GetGpuAgentInfo(uint32_t idx, const AgentInfo** agent_info); - - // Get the AgentInfo handle of a Cpu device - // @param idx Cpu Agent at specified index - // @param agent_info Output parameter updated with AgentInfo - // @return bool true if successful, false otherwise - bool GetCpuAgentInfo(uint32_t idx, const AgentInfo** agent_info); - - // Create a Queue object and return its handle. The queue object is expected - // to support user requested number of Aql dispatch packets. - // @param agent_info Gpu Agent on which to create a queue object - // @param num_Pkts Number of packets to be held by queue - // @param queue Output parameter updated with handle of queue object - // @return bool true if successful, false otherwise - bool CreateQueue(const AgentInfo* agent_info, uint32_t num_pkts, hsa_queue_t** queue); - - // Create a Signal object and return its handle. - // @param value Initial value of signal object - // @param signal Output parameter updated with handle of signal object - // @return bool true if successful, false otherwise - bool CreateSignal(uint32_t value, hsa_signal_t* signal); - - // Allocate local GPU memory - // @param agent_info Agent from whose memory region to allocate - // @param size Size of memory in terms of bytes - // @return uint8_t* Pointer to buffer, null if allocation fails. - uint8_t* AllocateLocalMemory(const AgentInfo* agent_info, size_t size); - - // Allocate memory tp pass kernel parameters - // Memory is alocated accessible for all CPU agents and for GPU given by AgentInfo parameter. - // @param agent_info Agent from whose memory region to allocate - // @param size Size of memory in terms of bytes - // @return uint8_t* Pointer to buffer, null if allocation fails. - uint8_t* AllocateKernArgMemory(const AgentInfo* agent_info, size_t size); - - // Allocate system memory accessible from both CPU and GPU - // Memory is alocated accessible to all CPU agents and AgentInfo parameter is ignored. - // @param agent_info Agent from whose memory region to allocate - // @param size Size of memory in terms of bytes - // @return uint8_t* Pointer to buffer, null if allocation fails. - uint8_t* AllocateSysMemory(const AgentInfo* agent_info, size_t size); - - // Allocate memory for command buffer. - // @param agent_info Agent from whose memory region to allocate - // @param size Size of memory in terms of bytes - // @return uint8_t* Pointer to buffer, null if allocation fails. - uint8_t* AllocateCmdMemory(const AgentInfo* agent_info, size_t size); - - // Wait signal - hsa_signal_value_t SignalWait(const hsa_signal_t& signal, - const hsa_signal_value_t& signal_value) const; - - // Wait signal with signal value restore - void SignalWaitRestore(const hsa_signal_t& signal, const hsa_signal_value_t& signal_value) const; - - // Copy data from GPU to host memory - bool Memcpy(const hsa_agent_t& agent, void* dst, const void* src, size_t size); - bool Memcpy(const AgentInfo* agent_info, void* dst, const void* src, size_t size); - - // Memory free method - static bool FreeMemory(void* ptr); - - // Loads an Assembled Brig file and Finalizes it into Device Isa - // @param agent_info Gpu device for which to finalize - // @param brig_path File path of the Assembled Brig file - // @param kernel_name Name of the kernel to finalize - // @param code_desc Handle of finalized Code Descriptor that could - // be used to submit for execution - // @return true if successful, false otherwise - bool LoadAndFinalize(const AgentInfo* agent_info, const char* brig_path, const char* kernel_name, - hsa_executable_t* hsa_exec, hsa_executable_symbol_t* code_desc); - - // Print the various fields of Hsa Gpu Agents - bool PrintGpuAgents(const std::string& header); - - // Submit AQL packet to given queue - static uint64_t Submit(hsa_queue_t* queue, const void* packet); - static uint64_t Submit(hsa_queue_t* queue, const void* packet, size_t size_bytes); - - // Enable executables loading tracking - static bool IsExecutableTracking() { return executable_tracking_on_; } - static void EnableExecutableTracking(HsaApiTable* table); - static const char* GetKernelName(uint64_t addr); - - // Initialize HSA API table - void static InitHsaApiTable(HsaApiTable* table); - static const hsa_pfn_t* HsaApi() { return &hsa_api_; } - - // Return AqlProfile API table - typedef hsa_ven_amd_aqlprofile_pfn_t aqlprofile_pfn_t; - const aqlprofile_pfn_t* AqlProfileApi() const { return &aqlprofile_api_; } - - // Return Loader API table - const hsa_ven_amd_loader_1_00_pfn_t* LoaderApi() const { return &loader_api_; } - - // Methods for system-clock/ns conversion and timestamp in 'ns' - timestamp_t SysclockToNs(const timestamp_t& sysclock) const { - return timer_->sysclock_to_ns(sysclock); - } - timestamp_t NsToSysclock(const timestamp_t& time) const { return timer_->ns_to_sysclock(time); } - timestamp_t TimestampNs() const { return timer_->timestamp_ns(); } - - timestamp_t GetSysTimeout() const { return timeout_; } - static timestamp_t GetTimeoutNs() { return timeout_ns_; } - static void SetTimeoutNs(const timestamp_t& time) { - std::lock_guard lck(mutex_); - timeout_ns_ = time; - if (instance_ != NULL) Instance().timeout_ = Instance().timer_->ns_to_sysclock(time); - } - - void CorrelateTime(HsaTimer::time_id_t time_id, uint32_t iters) { - timestamp_t timestamp_v = 0; - timestamp_t time_v = 0; - timestamp_t error_v = 0; - timer_->correlated_pair_ns(time_id, iters, ×tamp_v, &time_v, &error_v); - time_shift_[time_id] = time_v - timestamp_v; - time_error_[time_id] = error_v; - } - - hsa_status_t GetTime(uint32_t time_id, timestamp_t value, uint64_t* time) { - if (time_id >= HsaTimer::TIME_ID_NUMBER) return HSA_STATUS_ERROR; - *time = value + time_shift_[time_id]; - return HSA_STATUS_SUCCESS; - } - - hsa_status_t GetTimestamp(uint32_t time_id, uint64_t value, timestamp_t* timestamp) { - if (time_id >= HsaTimer::TIME_ID_NUMBER) return HSA_STATUS_ERROR; - *timestamp = value - time_shift_[time_id]; - return HSA_STATUS_SUCCESS; - } - - void DumpHandles(FILE* output_file); - - private: - // System agents iterating callback - static hsa_status_t GetHsaAgentsCallback(hsa_agent_t agent, void* data); - - // Callback function to find and bind kernarg region of an agent - static hsa_status_t FindMemRegionsCallback(hsa_region_t region, void* data); - - // Load AQL profile HSA extension library directly - static hsa_status_t LoadAqlProfileLib(aqlprofile_pfn_t* api); - - // Constructor of the class. Will initialize the Hsa Runtime and - // query the system topology to get the list of Cpu and Gpu devices - explicit HsaRsrcFactory(bool initialize_hsa); - - // Destructor of the class - ~HsaRsrcFactory(); - - // Add an instance of AgentInfo representing a Hsa Gpu agent - const AgentInfo* AddAgentInfo(const hsa_agent_t agent); - - // To mmap command buffer memory - static const bool CMD_MEMORY_MMAP = false; - - // HSA was initialized - const bool initialize_hsa_; - - static std::atomic instance_; - static mutex_t mutex_; - - // Used to maintain a list of Hsa Gpu Agent Info - std::vector gpu_list_; - std::vector gpu_agents_; - - // Used to maintain a list of Hsa Cpu Agent Info - std::vector cpu_list_; - std::vector cpu_agents_; - - // System agents map - std::map agent_map_; - - // Executables loading tracking - typedef std::map symbols_map_t; - static symbols_map_t* symbols_map_; - static bool executable_tracking_on_; - static hsa_status_t hsa_executable_freeze_interceptor(hsa_executable_t executable, - const char* options); - static hsa_status_t executable_symbols_cb(hsa_executable_t exec, hsa_executable_symbol_t symbol, - void* data); - - // HSA runtime API table - static hsa_pfn_t hsa_api_; - - // AqlProfile API table - aqlprofile_pfn_t aqlprofile_api_; - - // Loader API table - hsa_ven_amd_loader_1_00_pfn_t loader_api_; - - // System timeout, ns - static timestamp_t timeout_ns_; - // System timeout, sysclock - timestamp_t timeout_; - - // HSA timer - HsaTimer* timer_; - - // Time shift array to support time conversion - timestamp_t time_shift_[HsaTimer::TIME_ID_NUMBER]; - timestamp_t time_error_[HsaTimer::TIME_ID_NUMBER]; - - // CPU/kern-arg memory pools - hsa_amd_memory_pool_t* cpu_pool_; - hsa_amd_memory_pool_t* kern_arg_pool_; -}; - -#endif // _HSA_RSRC_FACTORY_H_ diff --git a/test/hsa/test/CMakeLists.txt b/test/hsa/test/CMakeLists.txt deleted file mode 100644 index eaab608759..0000000000 --- a/test/hsa/test/CMakeLists.txt +++ /dev/null @@ -1,79 +0,0 @@ -################################################################################ -## Copyright (c) 2018-2022 Advanced Micro Devices, Inc. -## -## Permission is hereby granted, free of charge, to any person obtaining a copy -## of this software and associated documentation files (the "Software"), to -## deal in the Software without restriction, including without limitation the -## rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -## sell copies of the Software, and to permit persons to whom the Software is -## furnished to do so, subject to the following conditions: -## -## The above copyright notice and this permission notice shall be included in -## all copies or substantial portions of the Software. -## -## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -## IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -## AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -## LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -## FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -## IN THE SOFTWARE. -################################################################################ - -find_package(Clang REQUIRED CONFIG - PATHS - "/opt/rocm/" - PATH_SUFFIXES - "llvm/lib/cmake/clang") - -function(generate_hsaco TARGET_ID INPUT_FILE OUTPUT_FILE) - separate_arguments(CLANG_ARG_LIST UNIX_COMMAND - "-O2 -x cl -Xclang -finclude-default-header -cl-denorms-are-zero -cl-std=CL2.0 - -target amdgcn-amd-amdhsa -mcpu=${TARGET_ID} -o ${OUTPUT_FILE} ${INPUT_FILE}") - - ## Add custom command to produce a code object file. - ## This depends on the kernel source file & compiler. - ## It does not pickup devicelib changes. It is not clear - ## how to do that after conversion to --rocm-path is done. - add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/${OUTPUT_FILE} - COMMAND clang ${CLANG_ARG_LIST} - WORKING_DIRECTORY ${PROJECT_BINARY_DIR} - DEPENDS ${INPUT_FILE} clang - COMMENT "Building ${OUTPUT_FILE}..." - VERBATIM) - - set(HSACO_TARGET_LIST ${HSACO_TARGET_LIST} ${PROJECT_BINARY_DIR}/${OUTPUT_FILE} PARENT_SCOPE) -endfunction(generate_hsaco) - -function(build_kernel_for_devices KERNEL_FILE KERNEL_NAME) - foreach(target_id ${GPU_TARGETS}) - ## generate kernel bitcodes - generate_hsaco(${target_id} ${KERNEL_FILE} ${target_id}_${KERNEL_NAME}.hsaco) - endforeach(target_id) - set(HSACO_TARGET_LIST ${HSACO_TARGET_LIST} PARENT_SCOPE) -endfunction(build_kernel_for_devices) - -set(HSACO_TARGET_LIST "") -build_kernel_for_devices("${CMAKE_CURRENT_SOURCE_DIR}/dummy_kernel/dummy_kernel.cl" "DummyKernel") -build_kernel_for_devices("${CMAKE_CURRENT_SOURCE_DIR}/simple_convolution/simple_convolution.cl" "SimpleConvolution") -add_custom_target(hsaco_targets DEPENDS ${HSACO_TARGET_LIST}) - -## Test kernel -set(TEST_NAME simple_convolution) -set(KERN_SRC ${TEST_NAME}/${TEST_NAME}.cpp) - -## Util sources -file(GLOB UTIL_SRC "util/*.cpp") - -## Test control sources -set(CTRL_SRC - app/test.cpp - ctrl/test_hsa.cpp) - -## Building ctrl test executable -add_executable(ctrl EXCLUDE_FROM_ALL ${CTRL_SRC} ${UTIL_SRC} ${KERN_SRC}) -target_compile_definitions(ctrl PRIVATE AMD_INTERNAL_BUILD) -target_include_directories(ctrl PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ${PROJECT_SOURCE_DIR}) -target_link_libraries(ctrl hsa-runtime64::hsa-runtime64 Threads::Threads dl) -add_dependencies(ctrl hsaco_targets) -add_dependencies(mytest ctrl) diff --git a/test/hsa/test/app/test.cpp b/test/hsa/test/app/test.cpp deleted file mode 100644 index 5ebcbc8151..0000000000 --- a/test/hsa/test/app/test.cpp +++ /dev/null @@ -1,84 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#include -#include -#include -#include -#include - -#include "ctrl/run_kernel.h" -#include "ctrl/test_aql.h" -#include "dummy_kernel/dummy_kernel.h" -#include "simple_convolution/simple_convolution.h" - -void thread_fun(const int kiter, const int diter, const uint32_t agents_number) { - const AgentInfo* agent_info[agents_number]; - hsa_queue_t* queue[agents_number]; - HsaRsrcFactory* rsrc = &HsaRsrcFactory::Instance(); - - for (uint32_t n = 0; n < agents_number; ++n) { - uint32_t agent_id = n % rsrc->GetCountOfGpuAgents(); - if (rsrc->GetGpuAgentInfo(agent_id, &agent_info[n]) == false) { - fprintf(stderr, "AgentInfo failed\n"); - abort(); - } - if (rsrc->CreateQueue(agent_info[n], 128, &queue[n]) == false) { - fprintf(stderr, "CreateQueue failed\n"); - abort(); - } - } - - for (int i = 0; i < kiter; ++i) { - for (uint32_t n = 0; n < agents_number; ++n) { - RunKernel(0, NULL, agent_info[n], queue[n], diter); - RunKernel(0, NULL, agent_info[n], queue[n], diter); - } - } - - for (uint32_t n = 0; n < agents_number; ++n) { - hsa_queue_destroy(queue[n]); - } -} - -int main(int argc, char** argv) { - const char* kiter_s = getenv("ROCP_KITER"); - const char* diter_s = getenv("ROCP_DITER"); - const char* agents_s = getenv("ROCP_AGENTS"); - const char* thrs_s = getenv("ROCP_THRS"); - - const int kiter = (kiter_s != NULL) ? atol(kiter_s) : 1; - const int diter = (diter_s != NULL) ? atol(diter_s) : 1; - const uint32_t agents_number = (agents_s != NULL) ? (uint32_t)atol(agents_s) : 1; - const int thrs = (thrs_s != NULL) ? atol(thrs_s) : 1; - - TestHsa::HsaInstantiate(); - - std::vector t(thrs); - for (int n = 0; n < thrs; ++n) { - t[n] = std::thread(thread_fun, kiter, diter, agents_number); - } - for (int n = 0; n < thrs; ++n) { - t[n].join(); - } - - TestHsa::HsaShutdown(); - return 0; -} diff --git a/test/hsa/test/ctrl/run_kernel.h b/test/hsa/test/ctrl/run_kernel.h deleted file mode 100644 index fd01e46d1f..0000000000 --- a/test/hsa/test/ctrl/run_kernel.h +++ /dev/null @@ -1,90 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef TEST_CTRL_RUN_KERNEL_H_ -#define TEST_CTRL_RUN_KERNEL_H_ - -#include "ctrl/test_hsa.h" -#include "util/test_assert.h" - -template -bool RunKernel(int argc = 0, char* argv[] = NULL, const AgentInfo* agent_info = NULL, - hsa_queue_t* queue = NULL, int count = 1) { - bool ret_val = false; - - if (getenv("ROC_TEST_TRACE") == NULL) std::clog.rdbuf(NULL); - - - // Create test kernel object - Kernel test_kernel; - - TestHsa* test_hsa = new TestHsa(&test_kernel); - test_hsa->SetAgentInfo(agent_info); - test_hsa->SetQueue(queue); - - TestAql* test_aql = new Test(test_hsa); - TEST_ASSERT(test_aql != NULL); - if (test_aql == NULL) return 1; - - // Initialization of Hsa Runtime - ret_val = test_aql->Initialize(argc, argv); - if (ret_val == false) { - std::cerr << "Error in the test initialization" << std::endl; - // TEST_ASSERT(ret_val); - return false; - } - - // Setup Hsa resources needed for execution - ret_val = test_aql->Setup(); - if (ret_val == false) { - std::cerr << "Error in creating hsa resources" << std::endl; - TEST_ASSERT(ret_val); - return false; - } - - // Kernel dspatch iterations - for (int i = 0; i < count; ++i) { - // Run test kernel - ret_val = test_aql->Run(); - if (ret_val == false) { - std::cerr << "Error in running the test kernel" << std::endl; - TEST_ASSERT(ret_val); - return false; - } - - // Verify the results of the execution - ret_val = test_aql->VerifyResults(); - if (ret_val) { - std::clog << "Test : Passed" << std::endl; - } else { - std::clog << "Test : Failed" << std::endl; - } - } - - // Print time taken by sample - test_aql->PrintTime(); - - test_aql->Cleanup(); - delete test_aql; - - return ret_val; -} - -#endif // TEST_CTRL_RUN_KERNEL_H_ diff --git a/test/hsa/test/ctrl/test_aql.h b/test/hsa/test/ctrl/test_aql.h deleted file mode 100644 index 32425e3dcf..0000000000 --- a/test/hsa/test/ctrl/test_aql.h +++ /dev/null @@ -1,75 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef TEST_CTRL_TEST_AQL_H_ -#define TEST_CTRL_TEST_AQL_H_ - -#include -#include - -#include "util/hsa_rsrc_factory.h" - -// Test AQL interface -class TestAql { - public: - explicit TestAql(TestAql* t = 0) : test_(t) {} - virtual ~TestAql() { - if (test_) delete test_; - } - - TestAql* Test() { return test_; } - virtual const AgentInfo* GetAgentInfo() { return (test_) ? test_->GetAgentInfo() : 0; } - virtual hsa_queue_t* GetQueue() { return (test_) ? test_->GetQueue() : 0; } - virtual HsaRsrcFactory* GetRsrcFactory() { return (test_) ? test_->GetRsrcFactory() : 0; } - - // Initialize application environment including setting - // up of various configuration parameters based on - // command line arguments - // @return bool true on success and false on failure - virtual bool Initialize(int argc, char** argv) { - return (test_) ? test_->Initialize(argc, argv) : true; - } - - // Setup application parameters for exectuion - // @return bool true on success and false on failure - virtual bool Setup() { return (test_) ? test_->Setup() : true; } - - // Run the kernel - // @return bool true on success and false on failure - virtual bool Run() { return (test_) ? test_->Run() : true; } - - // Verify results - // @return bool true on success and false on failure - virtual bool VerifyResults() { return (test_) ? test_->VerifyResults() : true; } - - // Print to console the time taken to execute kernel - virtual void PrintTime() { - if (test_) test_->PrintTime(); - } - - // Release resources e.g. memory allocations - // @return bool true on success and false on failure - virtual bool Cleanup() { return (test_) ? test_->Cleanup() : true; } - - private: - TestAql* const test_; -}; - -#endif // TEST_CTRL_TEST_AQL_H_ diff --git a/test/hsa/test/ctrl/test_hsa.cpp b/test/hsa/test/ctrl/test_hsa.cpp deleted file mode 100644 index 24083c8ecf..0000000000 --- a/test/hsa/test/ctrl/test_hsa.cpp +++ /dev/null @@ -1,279 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#include "ctrl/test_hsa.h" - -#include - -#include "util/test_assert.h" -#include "util/helper_funcs.h" -#include "util/hsa_rsrc_factory.h" - -HsaRsrcFactory* TestHsa::hsa_rsrc_ = NULL; - -HsaRsrcFactory* TestHsa::HsaInstantiate() { - // Instantiate an instance of Hsa Resources Factory - if (hsa_rsrc_ == NULL) { - hsa_rsrc_ = HsaRsrcFactory::Create(); - // Print properties of the agents - hsa_rsrc_->PrintGpuAgents("> GPU agents"); - } - return hsa_rsrc_; -} - -void TestHsa::HsaShutdown() { - if (hsa_rsrc_) hsa_rsrc_->Destroy(); -} - -bool TestHsa::Initialize(int /*arg_cnt*/, char** /*arg_list*/) { - std::clog << "TestHsa::Initialize :" << std::endl; - - // Instantiate a Timer object - setup_timer_idx_ = hsa_timer_.CreateTimer(); - dispatch_timer_idx_ = hsa_timer_.CreateTimer(); - - if (hsa_rsrc_ == NULL) { - TEST_ASSERT(false); - return false; - } - - // Create an instance of Gpu agent - if (agent_info_ == NULL) { - const uint32_t agent_id = 0; - if (!hsa_rsrc_->GetGpuAgentInfo(agent_id, &agent_info_)) { - agent_info_ = NULL; - std::cerr << "> error: agent[" << agent_id << "] is not found" << std::endl; - return false; - } - } - std::clog << "> Using agent[" << agent_info_->dev_index << "] : " << agent_info_->name - << std::endl; - - // Create an instance of Aql Queue - if (hsa_queue_ == NULL) { - const uint32_t num_pkts = 128; - if (hsa_rsrc_->CreateQueue(agent_info_, num_pkts, &hsa_queue_) == false) { - hsa_queue_ = NULL; - TEST_ASSERT(false); - } - my_queue_ = true; - } - - // Obtain handle of signal - hsa_rsrc_->CreateSignal(1, &hsa_signal_); - - // Obtain the code object file name - std::string agentName(agent_info_->name); - brig_path_obj_.append(agentName); - brig_path_obj_.append("_" + name_ + ".hsaco"); - - return true; -} - -bool TestHsa::Setup() { - std::clog << "TestHsa::setup :" << std::endl; - - // Start the timer object - hsa_timer_.StartTimer(setup_timer_idx_); - - // Load and Finalize Kernel Code Descriptor - const char* brig_path = brig_path_obj_.c_str(); - bool suc = hsa_rsrc_->LoadAndFinalize(agent_info_, brig_path, symb_.c_str(), &hsa_exec_, - &kernel_code_desc_); - if (suc == false) { - std::cerr << "Error in loading and finalizing Kernel" << std::endl; - return false; - } - - mem_map_t& mem_map = test_->GetMemMap(); - for (mem_it_t it = mem_map.begin(); it != mem_map.end(); ++it) { - mem_descr_t& des = it->second; - if (des.size == 0) continue; - - switch (des.id) { - case TestKernel::LOCAL_DES_ID: - des.ptr = hsa_rsrc_->AllocateLocalMemory(agent_info_, des.size); - break; - case TestKernel::KERNARG_DES_ID: { - // Check the kernel args size - const size_t kernarg_size = des.size; - size_t size_info = 0; - const hsa_status_t status = hsa_executable_symbol_get_info( - kernel_code_desc_, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_KERNARG_SEGMENT_SIZE, &size_info); - TEST_ASSERT(status == HSA_STATUS_SUCCESS); - size_info = kernarg_size; - const bool kernarg_missmatch = (kernarg_size > size_info); - if (kernarg_missmatch) { - std::cout << "kernarg_size = " << kernarg_size << ", size_info = " << size_info - << std::flush << std::endl; - TEST_ASSERT(!kernarg_missmatch); - break; - } - // ALlocate kernarg memory - des.size = size_info; - des.ptr = hsa_rsrc_->AllocateKernArgMemory(agent_info_, size_info); - if (des.ptr) memset(des.ptr, 0, size_info); - break; - } - case TestKernel::SYS_DES_ID: - des.ptr = hsa_rsrc_->AllocateSysMemory(agent_info_, des.size); - if (des.ptr) memset(des.ptr, 0, des.size); - break; - case TestKernel::NULL_DES_ID: - des.ptr = NULL; - break; - default: - break; - } - TEST_ASSERT(des.ptr != NULL); - if (des.ptr == NULL) return false; - } - test_->Init(); - - // Stop the timer object - hsa_timer_.StopTimer(setup_timer_idx_); - setup_time_taken_ = hsa_timer_.ReadTimer(setup_timer_idx_); - total_time_taken_ = setup_time_taken_; - - return true; -} - -bool TestHsa::Run() { - std::clog << "TestHsa::run :" << std::endl; - - const uint32_t work_group_size = 64; - const uint32_t work_grid_size = test_->GetGridSize(); - uint32_t group_segment_size = 0; - uint32_t private_segment_size = 0; - uint64_t code_handle = 0; - - // Retrieve the amount of group memory needed - hsa_executable_symbol_get_info( - kernel_code_desc_, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_GROUP_SEGMENT_SIZE, &group_segment_size); - - // Retrieve the amount of private memory needed - hsa_executable_symbol_get_info(kernel_code_desc_, - HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_PRIVATE_SEGMENT_SIZE, - &private_segment_size); - - - // Retrieve handle of the code block - hsa_executable_symbol_get_info(kernel_code_desc_, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_OBJECT, - &code_handle); - - // Initialize the dispatch packet. - hsa_kernel_dispatch_packet_t aql; - memset(&aql, 0, sizeof(aql)); - // Set the packet's type, barrier bit, acquire and release fences - aql.header = HSA_PACKET_TYPE_KERNEL_DISPATCH; - aql.header |= HSA_FENCE_SCOPE_SYSTEM << HSA_PACKET_HEADER_SCACQUIRE_FENCE_SCOPE; - aql.header |= HSA_FENCE_SCOPE_SYSTEM << HSA_PACKET_HEADER_SCRELEASE_FENCE_SCOPE; - // Populate Aql packet with default values - aql.setup = 1; - aql.grid_size_x = work_grid_size; - aql.grid_size_y = 1; - aql.grid_size_z = 1; - aql.workgroup_size_x = work_group_size; - aql.workgroup_size_y = 1; - aql.workgroup_size_z = 1; - // Bind the kernel code descriptor and arguments - aql.kernel_object = code_handle; - aql.kernarg_address = test_->GetKernargPtr(); - aql.group_segment_size = group_segment_size; - aql.private_segment_size = private_segment_size; - // Initialize Aql packet with handle of signal - hsa_signal_store_relaxed(hsa_signal_, 1); - aql.completion_signal = hsa_signal_; - - std::clog << "> Executing kernel: \"" << name_ << "\"" << std::endl; - - // Start the timer object - hsa_timer_.StartTimer(dispatch_timer_idx_); - - // Submit AQL packet to the queue - const uint64_t que_idx = hsa_rsrc_->Submit(hsa_queue_, &aql); - - std::clog << "> Waiting on kernel dispatch signal, que_idx=" << que_idx << std::endl - << std::flush; - - // Wait on the dispatch signal until the kernel is finished. - // Update wait condition to HSA_WAIT_STATE_ACTIVE for Polling - if (hsa_signal_wait_scacquire(hsa_signal_, HSA_SIGNAL_CONDITION_LT, 1, UINT64_MAX, - HSA_WAIT_STATE_BLOCKED) != 0) { - TEST_ASSERT("signal_wait failed"); - } - - std::clog << "> DONE, que_idx=" << que_idx << std::endl; - - // Stop the timer object - hsa_timer_.StopTimer(dispatch_timer_idx_); - dispatch_time_taken_ = hsa_timer_.ReadTimer(dispatch_timer_idx_); - total_time_taken_ += dispatch_time_taken_; - - return true; -} - -bool TestHsa::VerifyResults() { - bool cmp = false; - void* output = NULL; - const uint32_t size = test_->GetOutputSize(); - bool suc = false; - - if (size == 0) return true; - - // Copy local kernel output buffers from local memory into host memory - if (test_->IsOutputLocal()) { - output = hsa_rsrc_->AllocateSysMemory(agent_info_, size); - suc = hsa_rsrc_->Memcpy(agent_info_, output, test_->GetOutputPtr(), size); - if (!suc) std::clog << "> VerifyResults: Memcpy failed" << std::endl << std::flush; - } else { - output = test_->GetOutputPtr(); - suc = true; - } - - if ((output != NULL) && suc) { - // Print the test output - test_->PrintOutput(output); - // Compare the results and see if they match - cmp = (memcmp(output, test_->GetRefOut(), size) == 0); - } - - if (test_->IsOutputLocal() && (output != NULL)) hsa_rsrc_->FreeMemory(output); - - return cmp; -} - -void TestHsa::PrintTime() { - std::clog << "Time taken for Setup by " << this->name_ << " : " << this->setup_time_taken_ - << std::endl; - std::clog << "Time taken for Dispatch by " << this->name_ << " : " << this->dispatch_time_taken_ - << std::endl; - std::clog << "Time taken in Total by " << this->name_ << " : " << this->total_time_taken_ - << std::endl; -} - -bool TestHsa::Cleanup() { - hsa_executable_destroy(hsa_exec_); - hsa_signal_destroy(hsa_signal_); - if (my_queue_) hsa_queue_destroy(hsa_queue_); - hsa_queue_ = NULL; - agent_info_ = NULL; - return true; -} diff --git a/test/hsa/test/ctrl/test_hsa.h b/test/hsa/test/ctrl/test_hsa.h deleted file mode 100644 index 599a9de576..0000000000 --- a/test/hsa/test/ctrl/test_hsa.h +++ /dev/null @@ -1,127 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef TEST_CTRL_TEST_HSA_H_ -#define TEST_CTRL_TEST_HSA_H_ - -#include "ctrl/test_aql.h" -#include "ctrl/test_kernel.h" -#include "util/hsa_rsrc_factory.h" -#include "util/perf_timer.h" - -// Class implements HSA test -class TestHsa : public TestAql { - public: - // Instantiate HSA resources - static HsaRsrcFactory* HsaInstantiate(); - static void HsaShutdown(); - - // Constructor - explicit TestHsa(TestKernel* test) : test_(test), name_(test->Name()), symb_(test->SymbName()) { - total_time_taken_ = 0; - setup_time_taken_ = 0; - dispatch_time_taken_ = 0; - agent_info_ = NULL; - hsa_queue_ = NULL; - my_queue_ = false; - hsa_exec_ = {}; - } - - // Get methods for Agent Info, HAS queue, HSA Resourcse Manager - HsaRsrcFactory* GetRsrcFactory() { return hsa_rsrc_; } - hsa_agent_t HsaAgent() { return agent_info_->dev_id; } - const AgentInfo* GetAgentInfo() { return agent_info_; } - void SetAgentInfo(const AgentInfo* agent_info) { agent_info_ = agent_info; } - hsa_queue_t* GetQueue() { return hsa_queue_; } - void SetQueue(hsa_queue_t* queue) { hsa_queue_ = queue; } - - // Initialize application environment including setting - // up of various configuration parameters based on - // command line arguments - // @return bool true on success and false on failure - bool Initialize(int argc, char** argv); - - // Setup application parameters for exectuion - // @return bool true on success and false on failure - bool Setup(); - - // Run the BinarySearch kernel - // @return bool true on success and false on failure - bool Run(); - - // Verify against reference implementation - // @return bool true on success and false on failure - bool VerifyResults(); - - // Print to console the time taken to execute kernel - void PrintTime(); - - // Release resources e.g. memory allocations - // @return bool true on success and false on failure - bool Cleanup(); - - private: - typedef TestKernel::mem_descr_t mem_descr_t; - typedef TestKernel::mem_map_t mem_map_t; - typedef TestKernel::mem_it_t mem_it_t; - - // Test object - TestKernel* test_; - - // Path of Brig file - std::string brig_path_obj_; - - // Used to track time taken to run the sample - double total_time_taken_; - double setup_time_taken_; - double dispatch_time_taken_; - - // Handle of signal - hsa_signal_t hsa_signal_; - - // Handle of Kernel Code Descriptor - hsa_executable_symbol_t kernel_code_desc_; - - // Instance of timer object - uint32_t setup_timer_idx_; - uint32_t dispatch_timer_idx_; - PerfTimer hsa_timer_; - - // Instance of Hsa Resources Factory - static HsaRsrcFactory* hsa_rsrc_; - - // Handle to an Hsa Gpu Agent - const AgentInfo* agent_info_; - - // Handle to an Hsa Queue - hsa_queue_t* hsa_queue_; - bool my_queue_; - - // Test kernel name - std::string name_; - - // Test kernel name - std::string symb_; - - // Kernel executable - hsa_executable_t hsa_exec_; -}; - -#endif // TEST_CTRL_TEST_HSA_H_ diff --git a/test/hsa/test/ctrl/test_kernel.h b/test/hsa/test/ctrl/test_kernel.h deleted file mode 100644 index d5cfde464b..0000000000 --- a/test/hsa/test/ctrl/test_kernel.h +++ /dev/null @@ -1,136 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef TEST_CTRL_TEST_KERNEL_H_ -#define TEST_CTRL_TEST_KERNEL_H_ - -#include -#include -#include -#include - -// Class implements kernel test -class TestKernel { - public: - // Exported buffers IDs - enum buf_id_t { KERNARG_EXP_ID, OUTPUT_EXP_ID, REFOUT_EXP_ID }; - // Memory descriptors IDs - enum des_id_t { NULL_DES_ID, LOCAL_DES_ID, KERNARG_DES_ID, SYS_DES_ID, REFOUT_DES_ID }; - - // Memory descriptors vector declaration - struct mem_descr_t { - des_id_t id; - void* ptr; - uint32_t size; - }; - - // Memory map declaration - typedef std::map mem_map_t; - typedef mem_map_t::iterator mem_it_t; - typedef mem_map_t::const_iterator mem_const_it_t; - - virtual ~TestKernel() {} - - // Initialize method - virtual void Init() = 0; - - // Return kernel memory map - mem_map_t& GetMemMap() { return mem_map_; } - - // Return NULL descriptor - static mem_descr_t NullDescriptor() { return {NULL_DES_ID, NULL, 0}; } - - // Check if decripter is local - bool IsLocal(const mem_descr_t& descr) const { return (descr.id == LOCAL_DES_ID); } - - // Methods to get the kernel attributes - const mem_descr_t& GetKernargDescr() { return *test_map_[KERNARG_EXP_ID]; } - const mem_descr_t& GetOutputDescr() { return *test_map_[OUTPUT_EXP_ID]; } - void* GetKernargPtr() { return GetKernargDescr().ptr; } - uint32_t GetKernargSize() { return GetKernargDescr().size; } - void* GetOutputPtr() { return GetOutputDescr().ptr; } - uint32_t GetOutputSize() { return GetOutputDescr().size; } - bool IsOutputLocal() { return IsLocal(GetOutputDescr()); } - virtual uint32_t GetGridSize() const = 0; - - // Return reference output - void* GetRefOut() { return test_map_[REFOUT_EXP_ID]->ptr; } - - // Print output - virtual void PrintOutput(const void* ptr) const = 0; - - // Return name - virtual std::string Name() const = 0; - - // Return name - virtual std::string SymbName() { return Name() + ".kd"; } - - protected: - // Set buffer descriptor - bool SetInDescr(const uint32_t& buf_id, const des_id_t& des_id, const uint32_t& size) { - bool suc = SetMemDescr(buf_id, des_id, size); - if (des_id == KERNARG_DES_ID) { - test_map_[KERNARG_EXP_ID] = &mem_map_[buf_id]; - } - return suc; - } - - // Set results descriptor - bool SetOutDescr(const uint32_t& buf_id, const des_id_t& des_id, const uint32_t& size) { - bool suc = SetMemDescr(buf_id, des_id, size); - test_map_[OUTPUT_EXP_ID] = &mem_map_[buf_id]; - return suc; - } - - // Set host descriptor - bool SetHostDescr(const uint32_t& buf_id, const des_id_t& des_id, const uint32_t& size) { - bool suc = SetMemDescr(buf_id, des_id, size); - if (suc) { - mem_descr_t& descr = mem_map_[buf_id]; - descr.ptr = malloc(size); - if (des_id == REFOUT_DES_ID) { - test_map_[REFOUT_EXP_ID] = &descr; - } - if (descr.ptr == NULL) suc = false; - } - return suc; - } - - // Get memory descriptor - mem_descr_t GetDescr(const uint32_t& buf_id) const { - mem_const_it_t it = mem_map_.find(buf_id); - return (it != mem_map_.end()) ? it->second : NullDescriptor(); - } - - private: - // Set memory descriptor - bool SetMemDescr(const uint32_t& buf_id, const des_id_t& des_id, const uint32_t& size) { - const mem_descr_t des = {des_id, NULL, size}; - auto ret = mem_map_.insert(mem_map_t::value_type(buf_id, des)); - return ret.second; - } - - // Kernel memory map object - mem_map_t mem_map_; - // Test memory map object - std::map test_map_; -}; - -#endif // TEST_CTRL_TEST_KERNEL_H_ diff --git a/test/hsa/test/dummy_kernel/dummy_kernel.h b/test/hsa/test/dummy_kernel/dummy_kernel.h deleted file mode 100644 index 15ed51d205..0000000000 --- a/test/hsa/test/dummy_kernel/dummy_kernel.h +++ /dev/null @@ -1,68 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef TEST_DUMMY_KERNEL_DUMMY_KERNEL_H_ -#define TEST_DUMMY_KERNEL_DUMMY_KERNEL_H_ - -#include -#include - -#include "ctrl/test_kernel.h" - -// Class implements DummyKernel kernel parameters -class DummyKernel : public TestKernel { - public: - // Kernel buffers IDs - enum { KERNARG_BUF_ID, LOCAL_BUF_ID }; - - // Constructor - DummyKernel() : width_(64), height_(64) { - SetInDescr(KERNARG_BUF_ID, KERNARG_DES_ID, 0); - SetOutDescr(LOCAL_BUF_ID, LOCAL_DES_ID, 0); - } - - // Initialize method - void Init() {} - - // Return compute grid size - uint32_t GetGridSize() const { return width_ * height_; } - - // Print output - void PrintOutput(const void* ptr) const {} - - // Return name - std::string Name() const { return std::string("DummyKernel"); } - - private: - // Reference CPU implementation - bool ReferenceImplementation(uint32_t* output, const uint32_t* input, const float* mask, - const uint32_t width, const uint32_t height, - const uint32_t maskWidth, const uint32_t maskHeight) { - return true; - } - - // Width of the Input array - const uint32_t width_; - - // Height of the Input array - const uint32_t height_; -}; - -#endif // TEST_DUMMY_KERNEL_DUMMY_KERNEL_H_ diff --git a/test/hsa/test/run.sh b/test/hsa/test/run.sh deleted file mode 100755 index 3284831748..0000000000 --- a/test/hsa/test/run.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -################################################################################ -# Copyright (c) 2018 Advanced Micro Devices, Inc. All rights reserved. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. -################################################################################ - -# test trace -export ROC_TEST_TRACE=1 - -# kernels loading iterations -export ROCP_KITER=50 -# kernels dispatching iterations per kernel load -# dispatching to the same queue -export ROCP_DITER=50 -# GPU agents number -export ROCP_AGENTS=2 -# host threads number -# each thread creates a queue pre GPU agent -export ROCP_THRS=3 - -eval ./test/ctrl - -#valgrind --leak-check=full $tbin -#valgrind --tool=massif $tbin -#ms_print massif.out. - -exit 0 diff --git a/test/hsa/test/simple_convolution/simple_convolution.cl b/test/hsa/test/simple_convolution/simple_convolution.cl deleted file mode 100644 index e0f5ab3001..0000000000 --- a/test/hsa/test/simple_convolution/simple_convolution.cl +++ /dev/null @@ -1,74 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -/** - * SimpleConvolution is where each pixel of the output image - * is the weighted sum of the neighborhood pixels of the input image - * The neighborhood is defined by the dimensions of the mask and - * weight of each neighbor is defined by the mask itself. - * @param output Output matrix after performing convolution - * @param input Input matrix on which convolution is to be performed - * @param mask mask matrix using which convolution was to be performed - * @param inputDimensions dimensions of the input matrix - * @param maskDimensions dimensions of the mask matrix - */ -__kernel void SimpleConvolution(__global uint * output, - __global uint * input, - __global float * mask, - const uint2 inputDimensions, - const uint2 maskDimensions) { - - uint tid = get_global_id(0); - - uint width = inputDimensions.x; - uint height = inputDimensions.y; - - uint x = tid%width; - uint y = tid/width; - - uint maskWidth = maskDimensions.x; - uint maskHeight = maskDimensions.y; - - uint vstep = (maskWidth -1)/2; - uint hstep = (maskHeight -1)/2; - - // find the left, right, top and bottom indices such that - // the indices do not go beyond image boundaires - uint left = (x < vstep) ? 0 : (x - vstep); - uint right = ((x + vstep) >= width) ? width - 1 : (x + vstep); - uint top = (y < hstep) ? 0 : (y - hstep); - uint bottom = ((y + hstep) >= height)? height - 1: (y + hstep); - - // initializing wighted sum value - float sumFX = 0; - - for(uint i = left; i <= right; ++i) { - for(uint j = top; j <= bottom; ++j) { - // performing wighted sum within the mask boundaries - uint maskIndex = (j - (y - hstep)) * maskWidth + (i - (x - vstep)); - uint index = j * width + i; - sumFX += ((float)input[index] * mask[maskIndex]); - } - } - - // To round to the nearest integer - sumFX += 0.5f; - output[tid] = (uint)sumFX; -} diff --git a/test/hsa/test/simple_convolution/simple_convolution.cpp b/test/hsa/test/simple_convolution/simple_convolution.cpp deleted file mode 100644 index c7b96ec3bf..0000000000 --- a/test/hsa/test/simple_convolution/simple_convolution.cpp +++ /dev/null @@ -1,386 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#include "simple_convolution/simple_convolution.h" - -#include -#include -#include - -#include "util/helper_funcs.h" -#include "util/test_assert.h" - -const uint32_t SimpleConvolution::input_data_[]{ - 15, 201, 51, 89, 92, 34, 96, 66, 11, 225, 161, 96, 81, 211, 108, 124, 202, 244, 182, - 90, 215, 92, 98, 20, 44, 225, 55, 247, 202, 0, 45, 218, 202, 97, 51, 39, 131, 147, - 105, 143, 116, 11, 239, 198, 222, 92, 67, 169, 81, 250, 3, 40, 86, 101, 60, 131, 70, - 116, 123, 17, 117, 168, 236, 64, 10, 31, 103, 142, 179, 209, 29, 40, 220, 13, 239, 187, - 105, 50, 100, 186, 44, 104, 227, 131, 205, 32, 6, 20, 149, 130, 38, 10, 43, 18, 75, - 53, 50, 178, 195, 230, 132, 225, 14, 96, 238, 253, 27, 88, 48, 128, 18, 92, 232, 246, - 224, 182, 23, 231, 203, 172, 105, 241, 183, 148, 4, 2, 202, 55, 181, 142, 29, 57, 111, - 43, 153, 93, 41, 181, 181, 89, 54, 200, 182, 31, 190, 150, 213, 213, 126, 160, 130, 232, - 146, 57, 125, 151, 59, 71, 206, 240, 213, 236, 42, 68, 24, 195, 162, 65, 121, 87, 155, - 175, 31, 81, 207, 222, 232, 164, 180, 102, 69, 55, 79, 216, 112, 204, 112, 171, 19, 63, - 156, 233, 43, 198, 46, 67, 138, 208, 132, 4, 39, 32, 180, 71, 113, 131, 38, 90, 40, - 219, 193, 109, 18, 16, 70, 131, 220, 182, 46, 240, 245, 203, 217, 32, 146, 7, 100, 28, - 216, 233, 32, 255, 9, 213, 71, 123, 88, 110, 213, 128, 74, 150, 238, 93, 166, 52, 224, - 131, 234, 15, 115, 224, 218, 76, 1, 108, 84, 101, 137, 44, 79, 170, 44, 88, 127, 116, - 211, 216, 226, 168, 88, 45, 63, 70, 138, 230, 123, 107, 105, 101, 122, 220, 70, 84, 41, - 71, 193, 125, 173, 75, 169, 252, 245, 213, 84, 117, 73, 40, 77, 44, 209, 166, 90, 16, - 237, 229, 246, 104, 80, 95, 206, 202, 60, 20, 31, 101, 92, 225, 226, 9, 44, 140, 5, - 34, 97, 89, 151, 171, 129, 229, 216, 82, 139, 51, 99, 120, 24, 89, 225, 104, 185, 175, - 50, 246, 196, 82, 91, 32, 51, 62, 42, 96, 202, 47, 130, 44, 137, 26, 215, 10, 255, - 176, 93, 138, 227, 193, 3, 251, 27, 229, 100, 212, 149, 151, 202, 89, 233, 38, 122, 29, - 100, 164, 125, 46, 212, 0, 90, 93, 26, 50, 103, 25, 226, 197, 164, 198, 135, 168, 194, - 162, 141, 38, 119, 34, 190, 66, 124, 167, 104, 247, 197, 204, 156, 67, 251, 112, 67, 85, - 205, 93, 135, 53, 119, 106, 251, 28, 49, 130, 196, 243, 36, 82, 26, 155, 117, 216, 221, - 241, 128, 70, 233, 70, 18, 133, 137, 14, 245, 204, 99, 195, 42, 235, 248, 161, 86, 243, - 190, 135, 118, 130, 123, 154, 213, 150, 54, 74, 111, 20, 60, 240, 90, 37, 54, 109, 171, - 191, 123, 161, 140, 222, 100, 182, 202, 93, 88, 32, 80, 23, 168, 198, 153, 36, 97, 111, - 187, 151, 185, 43, 172, 245, 27, 6, 27, 82, 115, 199, 18, 239, 104, 158, 206, 205, 85, - 152, 42, 174, 185, 123, 197, 98, 65, 95, 135, 163, 206, 66, 59, 136, 109, 231, 125, 137, - 237, 153, 219, 97, 96, 237, 81, 201, 140, 31, 150, 226, 183, 192, 144, 113, 59, 86, 212, - 125, 182, 91, 33, 132, 158, 92, 12, 12, 68, 138, 149, 50, 36, 113, 147, 133, 95, 229, - 78, 235, 4, 228, 206, 188, 165, 95, 45, 225, 181, 1, 94, 107, 93, 128, 240, 251, 220, - 252, 7, 32, 135, 156, 83, 171, 14, 230, 48, 109, 203, 126, 89, 208, 99, 39, 140, 9, - 134, 185, 234, 60, 187, 73, 167, 24, 201, 152, 20, 166, 148, 27, 199, 28, 184, 26, 199, - 198, 0, 248, 52, 204, 119, 141, 157, 218, 181, 41, 227, 59, 227, 206, 119, 159, 23, 31, - 184, 224, 183, 204, 134, 76, 231, 77, 105, 160, 103, 48, 103, 104, 41, 155, 53, 160, 41, - 210, 123, 222, 252, 95, 26, 223, 45, 146, 126, 68, 177, 54, 37, 105, 3, 171, 182, 235, - 249, 31, 139, 97, 80, 243, 202, 121, 143, 0, 26, 184, 210, 149, 151, 207, 244, 177, 174, - 34, 67, 45, 102, 245, 100, 140, 95, 104, 55, 21, 83, 49, 53, 223, 147, 134, 210, 93, - 0, 97, 93, 26, 26, 48, 175, 178, 255, 164, 99, 174, 198, 167, 220, 45, 156, 64, 185, - 252, 168, 241, 18, 252, 35, 71, 219, 182, 205, 173, 19, 206, 15, 113, 232, 42, 161, 152, - 220, 160, 60, 64, 79, 3, 231, 43, 49, 132, 108, 235, 128, 21, 220, 146, 17, 255, 218, - 236, 182, 168, 154, 201, 118, 170, 58, 94, 212, 220, 246, 177, 125, 51, 241, 204, 55, 216, - 248, 104, 92, 100, 83, 221, 121, 48, 111, 138, 47, 73, 119, 230, 241, 17, 175, 103, 187, - 234, 198, 144, 199, 188, 65, 68, 240, 51, 17, 39, 11, 9, 143, 104, 109, 227, 70, 231, - 19, 181, 113, 66, 255, 233, 41, 241, 250, 217, 89, 182, 196, 31, 71, 139, 220, 137, 208, - 204, 188, 225, 243, 200, 234, 131, 48, 88, 102, 119, 63, 121, 44, 177, 188, 44, 154, 229, - 29, 149, 190, 118, 76, 130, 150, 147, 14, 114, 28, 222, 62, 217, 191, 50, 161, 170, 181, - 210, 2, 28, 73, 66, 149, 117, 243, 81, 162, 141, 55, 191, 35, 245, 54, 111, 120, 204, - 2, 134, 62, 31, 100, 125, 248, 36, 175, 153, 206, 101, 107, 209, 129, 181, 19, 22, 43, - 7, 104, 205, 149, 159, 140, 184, 149, 195, 39, 14, 143, 42, 148, 205, 73, 249, 74, 66, - 30, 250, 219, 237, 96, 71, 190, 225, 253, 210, 248, 40, 218, 96, 245, 111, 0, 130, 39, - 150, 69, 79, 165, 212, 122, 57, 162, 195, 51, 237, 6, 82, 231, 225, 63, 71, 41, 253, - 41, 38, 208, 33, 78, 170, 130, 68, 26, 131, 198, 66, 26, 12, 145, 191, 224, 11, 249, - 130, 207, 44, 112, 213, 126, 88, 183, 190, 160, 225, 187, 201, 8, 140, 235, 87, 55, 109, - 155, 81, 241, 98, 147, 11, 110, 37, 202, 79, 49, 195, 210, 0, 240, 66, 214, 110, 154, - 142, 44, 58, 111, 232, 4, 119, 117, 239, 207, 172, 93, 106, 254, 78, 205, 145, 89, 59, - 183, 35, 138, 232, 230, 92, 233, 214, 159, 191, 69, 58, 78, 114, 116, 189, 91, 121, 53, - 208, 104, 4, 125, 198, 111, 123, 20, 60, 13, 109, 120, 196, 145, 3, 172, 119, 95, 150, - 78, 255, 85, 147, 57, 163, 6, 174, 97, 97, 39, 151, 50, 144, 155, 175, 86, 11, 43, - 107, 71, 56, 216, 191, 253, 105, 194, 170, 225, 34, 64, 47, 34, 150, 195, 91, 58, 201, - 10, 155, 43, 49, 50, 93, 194, 206, 13, 25, 217, 56, 132, 33, 112, 92, 225, 109, 198, - 164, 23, 167, 199, 88, 215, 234, 238, 155, 69, 40, 100, 80, 196, 144, 129, 246, 237, 68, - 197, 250, 93, 159, 51, 225, 193, 163, 62, 163, 17, 4, 71, 41, 172, 15, 130, 132, 249, - 112, 31, 63, 152, 132, 143, 92, 20, 17, 83, 1, 86, 25, 252, 179, 185, 47, 149, 122, - 211, 211, 29, 229, 216, 101, 15, 133, 117, 145, 9, 111, 1, 40, 175, 154, 173, 62, 247, - 193, 80, 75, 194, 166, 100, 191, 90, 29, 239, 239, 152, 194, 195, 182, 168, 156, 27, 183, - 33, 145, 73, 43, 0, 75, 83, 175, 229, 0, 238, 221, 194, 63, 40, 133, 230, 140, 68, - 64, 170, 51, 48, 66, 246, 243, 248, 159, 144, 20, 87, 177, 165, 160, 220, 166, 235, 48, - 86, 209, 49, 68, 174, 243, 132, 214, 120, 106, 99, 189, 170, 13, 241, 219, 80, 232, 207, - 72, 135, 95, 92, 223, 16, 2, 127, 237, 169, 107, 29, 255, 61, 79, 68, 236, 67, 200, - 194, 188, 50, 38, 121, 221, 52, 107, 184, 132, 84, 136, 204, 219, 231, 41, 186, 248, 44, - 58, 229, 213, 166, 3, 212, 227, 82, 25, 207, 150, 225, 146, 82, 20, 185, 204, 242, 237, - 55, 170, 113, 139, 50, 62, 103, 26, 103, 34, 18, 148, 93, 247, 105, 3, 251, 62, 231, - 77, 87, 182, 227, 57, 73, 54, 77, 2, 2, 63, 239, 57, 234, 97, 197, 29, 159, 44, - 55, 7, 79, 74, 155, 172, 66, 5, 175, 61, 67, 150, 139, 155, 77, 111, 212, 151, 165, - 34, 153, 167, 98, 137, 225, 77, 234, 166, 107, 138, 211, 163, 145, 34, 237, 45, 206, 47, - 50, 126, 108, 117, 21, 248, 17, 98, 103, 230, 249, 12, 9, 147, 179, 107, 29, 149, 185, - 7, 59, 37, 146, 14, 200, 35, 49, 182, 80, 0, 230, 130, 126, 83, 248, 148, 75, 9, - 247, 178, 240, 240, 190, 249, 132, 114, 101, 161, 7, 30, 169, 67, 68, 59, 82, 12, 95, - 131, 195, 176, 131, 169, 51, 2, 252, 44, 150, 72, 54, 141, 250, 38, 126, 185, 31, 3, - 44, 132, 165, 52, 163, 78, 120, 231, 138, 202, 244, 234, 77, 183, 155, 209, 97, 207, 212, - 94, 251, 107, 166, 49, 249, 161, 88, 120, 91, 120, 123, 135, 253, 33, 188, 160, 112, 52, - 136, 250, 254, 125, 229, 76, 53, 128, 30, 150, 79, 243, 244, 75, 95, 155, 125, 88, 60, - 213, 209, 152, 78, 77, 32, 75, 110, 220, 236, 222, 17, 117, 217, 15, 242, 190, 92, 39, - 63, 123, 190, 143, 111, 178, 219, 206, 78, 88, 38, 138, 46, 247, 34, 124, 69, 66, 199, - 179, 31, 179, 145, 48, 41, 106, 64, 27, 41, 157, 67, 105, 24, 1, 249, 135, 179, 212, - 86, 1, 44, 124, 140, 91, 116, 175, 215, 185, 242, 159, 108, 17, 83, 254, 66, 124, 105, - 131, 151, 146, 32, 218, 252, 57, 219, 245, 193, 143, 201, 23, 145, 246, 148, 30, 82, 8, - 206, 41, 194, 192, 201, 47, 210, 28, 46, 20, 152, 151, 151, 48, 42, 184, 11, 38, 241, - 231, 28, 179, 119, 230, 202, 8, 220, 94, 39, 46, 103, 245, 88, 42, 181, 33, 90, 136, - 62, 136, 156, 214, 31, 52, 7, 74, 237, 19, 113, 223, 250, 141, 146, 113, 115, 92, 122, - 80, 187, 161, 126, 35, 150, 215, 78, 76, 249, 168, 212, 55, 48, 113, 14, 80, 166, 21, - 154, 147, 40, 12, 114, 35, 153, 5, 148, 12, 98, 15, 92, 29, 176, 219, 65, 71, 179, - 143, 147, 172, 56, 104, 227, 104, 218, 241, 185, 128, 7, 84, 20, 47, 96, 135, 82, 249, - 140, 231, 6, 238, 246, 99, 12, 167, 63, 77, 238, 242, 221, 130, 158, 21, 235, 129, 126, - 197, 114, 56, 69, 121, 140, 90, 169, 237, 225, 252, 231, 109, 228, 237, 91, 219, 81, 104, - 130, 144, 181, 113, 130, 147, 244, 32, 169, 223, 162, 39, 164, 21, 95, 234, 143, 236, 68, - 57, 217, 37, 53, 192, 147, 25, 174, 239, 245, 0, 87, 119, 144, 13, 232, 19, 160, 220, - 51, 73, 188, 214, 113, 96, 235, 209, 75, 122, 190, 144, 179, 151, 181, 233, 88, 73, 3, - 7, 56, 248, 7, 143, 112, 152, 156, 89, 171, 61, 53, 223, 135, 242, 181, 248, 83, 161, - 202, 158, 28, 136, 46, 208, 32, 228, 186, 121, 45, 189, 128, 102, 182, 136, 246, 38, 32, - 147, 127, 204, 208, 181, 171, 87, 167, 97, 80, 250, 2, 26, 153, 31, 163, 200, 239, 195, - 172, 169, 60, 218, 103, 188, 65, 30, 69, 55, 68, 102, 202, 196, 50, 154, 121, 221, 242, - 33, 63, 67, 28, 66, 93, 181, 97, 0, 126, 81, 196, 43, 251, 0, 5, 98, 189, 70, - 128, 3, 126, 197, 105, 72, 137, 155, 227, 3, 121, 214, 36, 184, 25, 65, 250, 118, 247, - 91, 119, 117, 173, 60, 160, 168, 60, 166, 10, 250, 237, 139, 253, 107, 80, 102, 180, 217, - 2, 151, 221, 123, 109, 1, 52, 134, 66, 46, 253, 57, 138, 117, 175, 55, 178, 79, 223, - 239, 245, 234, 233, 226, 117, 231, 78, 198, 78, 2, 159, 80, 154, 124, 204, 7, 126, 0, - 142, 193, 47, 140, 251, 185, 2, 170, 241, 180, 249, 208, 163, 239, 186, 141, 210, 48, 116, - 32, 246, 195, 34, 150, 19, 188, 19, 224, 196, 146, 224, 83, 83, 15, 224, 78, 201, 226, - 249, 186, 151, 243, 139, 58, 226, 70, 199, 181, 118, 60, 213, 109, 255, 248, 3, 19, 181, - 23, 243, 122, 169, 212, 205, 252, 228, 173, 75, 173, 144, 68, 104, 39, 55, 243, 98, 26, - 57, 41, 207, 175, 102, 165, 29, 102, 158, 32, 121, 83, 56, 109, 205, 225, 66, 155, 222, - 38, 73, 42, 212, 218, 110, 60, 1, 166, 48, 99, 193, 105, 141, 145, 25, 244, 54, 54, - 90, 213, 87, 212, 40, 143, 66, 246, 112, 132, 146, 79, 171, 220, 121, 128, 182, 232, 189, - 184, 143, 237, 27, 80, 86, 169, 226, 112, 158, 25, 166, 248, 238, 253, 204, 23, 141, 15, - 13, 254, 147, 160, 77, 63, 124, 199, 191, 50, 175, 124, 234, 62, 105, 6, 143, 192, 176, - 113, 48, 78, 139, 215, 71, 121, 213, 20, 144, 98, 35, 158, 96, 183, 62, 174, 246, 187, - 117, 182, 237, 37, 50, 216, 99, 156, 223, 243, 93, 143, 101, 142, 222, 240, 101, 37, 106, - 58, 57, 250, 157, 93, 153, 254, 20, 216, 172, 10, 147, 34, 192, 129, 71, 243, 90, 171, - 144, 57, 159, 238, 201, 4, 124, 167, 244, 225, 205, 95, 28, 7, 89, 185, 100, 243, 184, - 121, 203, 100, 131, 95, 135, 68, 224, 207, 56, 58, 122, 201, 115, 25, 183, 61, 30, 51, - 229, 18, 21, 178, 113, 49, 186, 203, 235, 31, 191, 163, 152, 138, 8, 28, 233, 143, 97, - 202, 95, 153, 4, 217, 98, 120, 243, 26, 182, 17, 77, 155, 36, 99, 78, 150, 149, 8, - 98, 128, 39, 33, 36, 192, 172, 45, 220, 149, 189, 61, 96, 28, 215, 100, 246, 58, 221, - 233, 84, 147, 251, 162, 47, 31, 5, 125, 181, 154, 134, 23, 27, 174, 57, 64, 110, 229, - 109, 75, 123, 43, 136, 219, 71, 95, 64, 61, 154, 29, 39, 238, 177, 34, 145, 225, 65, - 150, 94, 247, 49, 229, 15, 77, 147, 72, 141, 2, 45, 251, 77, 169, 38, 213, 132, 110, - 53, 196, 172, 207, 226, 212, 190, 148, 246, 79, 117, 56, 230, 212, 48, 23, 185, 63, 100, - 76, 136, 242, 78, 181, 237, 156, 95, 20, 113, 227, 131, 167, 168, 47, 119, 139, 3, 53, - 31, 250, 133, 149, 50, 107, 105, 99, 130, 34, 162, 231, 111, 42, 217, 190, 224, 199, 90, - 63, 220, 204, 35, 95, 115, 203, 143, 234, 86, 147, 32, 118, 141, 165, 11, 192, 16, 117, - 35, 147, 152, 198, 123, 7, 240, 84, 198, 209, 28, 33, 17, 248, 237, 52, 88, 97, 255, - 231, 76, 86, 122, 109, 204, 8, 18, 216, 201, 35, 77, 237, 183, 229, 179, 50, 237, 164, - 135, 179, 118, 164, 213, 135, 157, 195, 187, 245, 36, 187, 220, 113, 18, 87, 222, 222, 96, - 241, 183, 42, 21, 4, 23, 205, 233, 203, 0, 214, 112, 136, 138, 230, 44, 95, 110, 201, - 34, 41, 191, 71, 229, 155, 185, 247, 243, 151, 214, 84, 137, 141, 126, 159, 146, 149, 108, - 124, 97, 109, 82, 209, 245, 221, 183, 34, 60, 37, 236, 95, 79, 171, 167, 53, 71, 96, - 45, 58, 248, 3, 142, 129, 145, 12, 33, 36, 162, 142, 160, 3, 251, 243, 213, 240, 208, - 141, 19, 13, 178, 255, 109, 2, 170, 20, 55, 241, 116, 101, 44, 108, 105, 186, 238, 251, - 199, 15, 31, 106, 157, 191, 110, 152, 178, 67, 137, 131, 208, 156, 144, 131, 155, 253, 134, - 70, 18, 190, 55, 134, 35, 99, 243, 140, 30, 225, 135, 230, 240, 166, 81, 142, 102, 191, - 39, 25, 3, 177, 156, 211, 77, 45, 87, 233, 43, 221, 48, 61, 155, 103, 195, 191, 203, - 182, 75, 233, 152, 211, 208, 136, 121, 33, 23, 224, 224, 62, 249, 227, 239, 149, 183, 61, - 195, 15, 39, 238, 236, 87, 43, 136, 191, 239, 71, 138, 166, 147, 116, 62, 102, 68, 199, - 224, 101, 223, 193, 70, 29, 186, 42, 13, 80, 225, 75, 19, 241, 115, 1, 221, 202, 45, - 102, 137, 29, 174, 20, 195, 66, 136, 2, 168, 205, 201, 137, 50, 168, 74, 121, 198, 4, - 163, 212, 85, 133, 31, 105, 118, 146, 106, 84, 93, 152, 187, 231, 181, 105, 251, 121, 171, - 132, 123, 84, 81, 69, 221, 132, 238, 40, 253, 181, 45, 161, 137, 130, 39, 169, 235, 158, - 59, 86, 242, 153, 239, 173, 128, 165, 23, 123, 30, 195, 0, 154, 23, 81, 224, 245, 214, - 206, 30, 212, 131, 75, 117, 12, 206, 157, 181, 186, 59, 241, 17, 45, 138, 0, 219, 11, - 165, 243, 135, 196, 182, 135, 95, 205, 217, 63, 195, 175, 14, 225, 131, 145, 45, 249, 158, - 251, 150, 84, 182, 209, 70, 199, 255, 209, 199, 219, 220, 109, 206, 99, 50, 132, 234, 146, - 82, 195, 209, 22, 114, 223, 247, 246, 113, 37, 239, 16, 33, 134, 100, 215, 88, 170, 158, - 87, 123, 102, 50, 88, 211, 1, 187, 6, 134, 165, 152, 216, 105, 106, 239, 220, 74, 231, - 210, 187, 12, 194, 204, 45, 72, 49, 4, 160, 219, 162, 248, 87, 8, 43, 176, 220, 44, - 107, 227, 178, 17, 124, 139, 122, 230, 122, 87, 48, 97, 42, 236, 110, 236, 185, 155, 53, - 234, 159, 214, 198, 66, 206, 30, 75, 249, 206, 40, 38, 57, 11, 217, 74, 136, 100, 197, - 110, 223, 29, 159, 65, 71, 140, 175, 51, 69, 74, 105, 48, 234, 63, 246, 45, 13, 20, - 121, 7, 226, 161, 46, 28, 173, 7, 103, 53, 108, 45, 164, 76, 74, 68, 141, 145, 208, - 61, 197, 22, 136, 46, 70, 115, 110, 60, 161, 124, 81, 26, 132, 51, 188, 178, 79, 106, - 186, 183, 160, 39, 228, 68, 115, 46, 136, 1, 192, 89, 62, 133, 112, 198, 180, 182, 58, - 34, 243, 219, 158, 69, 245, 34, 120, 178, 213, 200, 28, 143, 128, 188, 182, 100, 1, 41, - 146, 137, 43, 82, 227, 105, 216, 83, 48, 140, 10, 106, 175, 254, 70, 77, 67, 59, 112, - 188, 237, 69, 133, 10, 212, 5, 198, 138, 105, 199, 180, 252, 81, 223, 79, 53, 73, 39, - 137, 121, 180, 148, 228, 99, 146, 42, 177, 214, 102, 33, 147, 84, 102, 25, 94, 59, 31, - 37, 197, 137, 237, 122, 133, 63, 90, 213, 116, 163, 253, 253, 29, 177, 145, 2, 21, 36, - 45, 198, 251, 147, 231, 143, 232, 78, 168, 71, 137, 199, 108, 79, 80, 90, 201, 214, 153, - 35, 172, 13, 199, 169, 11, 228, 91, 157, 231, 112, 193, 20, 54, 189, 167, 30, 77, 144, - 108, 245, 215, 246, 189, 68, 69, 14, 158, 14, 228, 55, 50, 145, 69, 249, 58, 80, 222, - 149, 237, 198, 5, 175, 218, 60, 109, 130, 91, 186, 18, 200, 175, 234, 190, 109, 46, 3, - 123, 204, 18, 96, 4, 68, 241, 73, 62, 44, 154, 29, 193, 136, 227, 199, 55, 189, 4, - 164, 64, 95, 95, 82, 39, 15, 60, 230, 124, 107, 233, 248, 55, 251, 89, 60, 63, 75, - 134, 126, 119, 32, 156, 57, 168, 127, 0, 224, 61, 5, 133, 125, 100, 228, 208, 140, 243, - 12, 114, 111, 119, 92, 104, 175, 87, 193, 236, 151, 13, 114, 21, 132, 146, 177, 189, 59, - 49, 190, 27, 110, 195, 160, 236, 40, 132, 188, 181, 120, 201, 40, 232, 65, 132, 80, 241, - 220, 18, 221, 115, 31, 79, 137, 164, 226, 58, 98, 29, 108, 32, 57, 219, 228, 218, 199, - 13, 95, 132, 195, 215, 77, 235, 191, 143, 112, 16, 128, 76, 35, 93, 191, 66, 173, 73, - 231, 143, 132, 73, 173, 240, 106, 231, 203, 78, 193, 147, 92, 33, 23, 31, 248, 100, 11, - 184, 243, 123, 201, 115, 200, 236, 209, 135, 47, 126, 209, 22, 14, 85, 95, 188, 69, 202, - 163, 17, 24, 101, 164, 117, 134, 187, 148, 127, 31, 159, 55, 19, 27, 1, 135, 227, 237, - 89, 107, 28, 216, 60, 51, 230, 145, 147, 163, 215, 93, 70, 232, 118, 172, 140, 235, 50, - 71, 128, 177, 103, 32, 233, 123, 60, 234, 2, 31, 216, 91, 139, 244, 52, 200, 40, 26, - 90, 188, 189, 49, 25, 4, 25, 144, 176, 166, 124, 227, 237, 252, 148, 85, 29, 125, 208, - 89, 104, 210, 121, 64, 46, 4, 53, 99, 204, 93, 125, 38, 25, 59, 88, 51, 64, 113, - 195, 241, 23, 64, 212, 5, 60, 104, 90, 90, 230, 42, 179, 78, 253, 44, 143, 44, 49, - 196, 143, 254, 34, 13, 36, 60, 73, 125, 112, 137, 239, 52, 122, 7, 116, 79, 12, 177, - 183, 103, 11, 158, 146, 190, 237, 143, 235, 124, 188, 28, 65, 76, 26, 100, 89, 63, 160, - 163, 188, 17, 44, 172, 69, 167, 179, 185, 246, 191, 107, 174, 38, 118, 76, 184, 53, 58, - 72, 32, 182, 5, 61, 248, 81, 88, 92, 170, 152, 253, 77, 84, 14, 122, 1, 83, 34, - 180, 13, 25, 115, 120, 199, 154, 238, 20, 83, 36, 79, 155, 68, 5, 160, 130, 254, 242, - 218, 90, 156, 114, 87, 234, 199, 101, 101, 200, 185, 135, 124, 198, 160, 240, 62, 104, 138, - 45, 125, 222, 81, 204, 122, 150, 210, 26, 24, 208, 12, 242, 42, 169, 101, 130, 148, 44, - 232, 249, 245, 161, 128, 113, 103, 33, 98, 166, 137, 236, 212, 7, 202, 38, 211, 69, 188, - 165, 95, 212, 118, 108, 199, 161, 22, 45, 35, 170, 90, 11, 163, 79, 173, 36, 193, 20, - 69, 35, 187, 207, 16, 144, 214, 219, 182, 170, 32, 114, 79, 128, 71, 198, 237, 15, 103, - 4, 60, 139, 175, 150, 151, 82, 230, 68, 119, 168, 89, 188, 204, 20, 140, 220, 165, 98, - 184, 91, 12, 217, 205, 92, 90, 20, 35, 71, 36, 138, 76, 96, 22, 251, 247, 173, 78, - 222, 241, 197, 134, 75, 130, 83, 96, 14, 47, 5, 113, 232, 96, 126, 193, 45, 218, 28, - 66, 253, 99, 103, 136, 176, 200, 158, 171, 191, 76, 249, 158, 62, 190, 37, 137, 65, 120, - 233, 80, 168, 238, 193, 145, 79, 63, 82, 125, 26, 111, 191, 24, 210, 39, 161, 131, 239, - 64, 46, 175, 140, 39, 77, 202, 230, 115, 84, 40, 235, 62, 120, 148, 45, 57, 37, 124, - 121, 120, 249, 148, 231, 185, 172, 186, 224, 77, 61, 207, 141, 107, 126, 26, 147, 204, 229, - 121, 63, 58, 161, 43, 120, 25, 191, 165, 83, 228, 34, 205, 92, 27, 97, 67, 213, 13, - 253, 182, 91, 59, 133, 233, 166, 4, 4, 57, 209, 233, 179, 16, 35, 85, 59, 155, 111, - 250, 65, 194, 223, 99, 144, 59, 127, 241, 127, 85, 255, 125, 11, 90, 184, 145, 68, 95, - 150, 72, 153, 103, 49, 76, 120, 85, 161, 179, 241, 16, 174, 51, 211, 142, 150, 99, 201, - 22, 85, 73, 108, 84, 199, 120, 175, 128, 9, 243, 223, 160, 59, 120, 8, 109, 197, 128, - 194, 103, 52, 180, 119, 227, 231, 75, 113, 126, 175, 59, 148, 4, 132, 1, 89, 75, 121, - 8, 204, 131, 251, 171, 36, 55, 36, 44, 165, 233, 172, 103, 80, 224, 28, 200, 195, 3, - 20, 53, 129, 195, 112, 22, 200, 244, 23, 34, 64, 145, 42, 12, 20, 38, 184, 56, 94, - 220, 101, 3, 198, 17, 107, 22, 242, 135, 222, 182, 138, 243, 235, 11, 182, 91, 34, 127, - 80, 58, 161, 145, 203, 204, 158, 224, 242, 86, 24, 81, 51, 126, 84, 249, 143, 191, 15, - 130, 70, 238, 57, 209, 225, 36, 221, 152, 128, 255, 24, 208, 57, 186, 97, 4, 134, 255, - 229, 121, 86, 254, 202, 137, 124, 31, 130, 12, 222, 146, 142, 37, 129, 199, 247, 98, 236, - 212, 251, 108, 211, 20, 60, 13, 206, 158, 18, 84}; - -SimpleConvolution::SimpleConvolution() { - width_ = 64; - height_ = 64; - mask_width_ = 3; - mask_height_ = mask_width_; - randomize_seed_ = 0; - - if (!IsPowerOf2(width_)) { - width_ = RoundToPowerOf2(width_); - } - - if (!IsPowerOf2(height_)) { - height_ = RoundToPowerOf2(height_); - } - - if (!(mask_width_ % 2)) { - mask_width_++; - } - - if (!(mask_height_ % 2)) { - mask_height_++; - } - - if (width_ * height_ < 256) { - width_ = 64; - height_ = 64; - } - - const uint32_t input_size_bytes = width_ * height_ * sizeof(uint32_t); - const uint32_t mask_size_bytes = mask_width_ * mask_height_ * sizeof(float); - - SetInDescr(KERNARG_BUF_ID, KERNARG_DES_ID, sizeof(kernel_args_t)); - SetInDescr(INPUT_BUF_ID, SYS_DES_ID, input_size_bytes); - SetInDescr(MASK_BUF_ID, SYS_DES_ID, mask_size_bytes); - SetOutDescr(LOCAL_BUF_ID, LOCAL_DES_ID, input_size_bytes); - SetHostDescr(REFOUT_BUF_ID, REFOUT_DES_ID, input_size_bytes); - - if (!randomize_seed_) TEST_ASSERT(sizeof(input_data_) <= input_size_bytes); -} - -void SimpleConvolution::Init() { - std::clog << "SimpleConvolution::init :" << std::endl; - - mem_descr_t kernarg_des = GetDescr(KERNARG_BUF_ID); - mem_descr_t input_des = GetDescr(INPUT_BUF_ID); - mem_descr_t mask_des = GetDescr(MASK_BUF_ID); - mem_descr_t output_des = GetDescr(LOCAL_BUF_ID); -#if 0 - printf("kernarg_des %p 0x%x\n", kernarg_des.ptr, kernarg_des.size); - printf("input_des %p 0x%x\n", input_des.ptr, input_des.size); - printf("mask_des %p 0x%x\n", mask_des.ptr, mask_des.size); - printf("output_des %p 0x%x\n", output_des.ptr, output_des.size); -#endif - uint32_t* input = reinterpret_cast(input_des.ptr); - uint32_t* output_local = reinterpret_cast(output_des.ptr); - float* mask = reinterpret_cast(mask_des.ptr); - kernel_args_t* kernel_args = reinterpret_cast(kernarg_des.ptr); - - if (randomize_seed_) { - // random initialisation of input - FillRandom(input, width_, height_, 0, 255, randomize_seed_); - } else { - // initialization with preset values - memcpy(input, input_data_, width_ * height_ * sizeof(uint32_t)); - } - - // Fill a blurr filter or some other filter of your choice - const float val = 1.0f / (mask_width_ * 2.0f - 1.0f); - for (uint32_t i = 0; i < (mask_width_ * mask_height_); i++) { - mask[i] = 0; - } - for (uint32_t i = 0; i < mask_width_; i++) { - uint32_t y = mask_height_ / 2; - mask[y * mask_width_ + i] = val; - } - for (uint32_t i = 0; i < mask_height_; i++) { - uint32_t x = mask_width_ / 2; - mask[i * mask_width_ + x] = val; - } - - // Print the INPUT array. - std::clog << std::dec; - PrintArray("> Input[0]", input, width_, 1); - PrintArray("> Mask", mask, mask_width_, mask_height_); - - // Fill the kernel args - kernel_args->arg1 = output_local; - kernel_args->arg2 = input; - kernel_args->arg3 = mask; - kernel_args->arg4 = width_; - kernel_args->arg41 = height_; - kernel_args->arg5 = mask_width_; - kernel_args->arg51 = mask_height_; - - // Calculate the reference output - ReferenceImplementation(reinterpret_cast(GetRefOut()), input, mask, width_, height_, - mask_width_, mask_height_); -} - -void SimpleConvolution::PrintOutput(const void* ptr) const { - PrintArray("> Output[0]", reinterpret_cast(ptr), width_, 1); -} - -bool SimpleConvolution::ReferenceImplementation(uint32_t* output, const uint32_t* input, - const float* mask, const uint32_t width, - const uint32_t height, const uint32_t mask_width, - const uint32_t mask_height) { - const uint32_t vstep = (mask_width - 1) / 2; - const uint32_t hstep = (mask_height - 1) / 2; - - // for each pixel in the input - for (uint32_t x = 0; x < width; x++) { - for (uint32_t y = 0; y < height; y++) { - // find the left, right, top and bottom indices such that - // the indices do not go beyond image boundaires - const uint32_t left = (x < vstep) ? 0 : (x - vstep); - const uint32_t right = ((x + vstep) >= width) ? width - 1 : (x + vstep); - const uint32_t top = (y < hstep) ? 0 : (y - hstep); - const uint32_t bottom = ((y + hstep) >= height) ? height - 1 : (y + hstep); - - // initializing wighted sum value - float sum_fx = 0; - for (uint32_t i = left; i <= right; ++i) { - for (uint32_t j = top; j <= bottom; ++j) { - // performing wighted sum within the mask boundaries - uint32_t mask_idx = (j - (y - hstep)) * mask_width + (i - (x - vstep)); - uint32_t index = j * width + i; - - // to round to the nearest integer - sum_fx += ((float)input[index] * mask[mask_idx]); - } - } - sum_fx += 0.5f; - output[y * width + x] = uint32_t(sum_fx); - } - } - - return true; -} diff --git a/test/hsa/test/simple_convolution/simple_convolution.h b/test/hsa/test/simple_convolution/simple_convolution.h deleted file mode 100644 index a3c340fe3c..0000000000 --- a/test/hsa/test/simple_convolution/simple_convolution.h +++ /dev/null @@ -1,92 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef TEST_SIMPLE_CONVOLUTION_SIMPLE_CONVOLUTION_H_ -#define TEST_SIMPLE_CONVOLUTION_SIMPLE_CONVOLUTION_H_ - -#include -#include - -#include "ctrl/test_kernel.h" - -// Class implements SimpleConvolution kernel parameters -class SimpleConvolution : public TestKernel { - public: - // Kernel buffers IDs - enum { INPUT_BUF_ID, LOCAL_BUF_ID, MASK_BUF_ID, KERNARG_BUF_ID, REFOUT_BUF_ID }; - - // Constructor - SimpleConvolution(); - - // Initialize method - void Init(); - - // Return compute grid size - uint32_t GetGridSize() const { return width_ * height_; } - - // Print output - void PrintOutput(const void* ptr) const; - - // Return name - std::string Name() const { return std::string("SimpleConvolution"); } - - private: - // Local kernel arguments declaration - struct kernel_args_t { - void* arg1; - void* arg2; - void* arg3; - uint32_t arg4; - uint32_t arg41; - uint32_t arg5; - uint32_t arg51; - }; - - // Reference CPU implementation of Simple Convolution - // @param output Output matrix after performing convolution - // @param input Input matrix on which convolution is to be performed - // @param mask mask matrix using which convolution was to be performed - // @param input_dimensions dimensions of the input matrix - // @param mask_dimensions dimensions of the mask matrix - // @return bool true on success and false on failure - bool ReferenceImplementation(uint32_t* output, const uint32_t* input, const float* mask, - const uint32_t width, const uint32_t height, - const uint32_t maskWidth, const uint32_t maskHeight); - - // Width of the Input array - uint32_t width_; - - // Height of the Input array - uint32_t height_; - - // Mask dimensions - uint32_t mask_width_; - - // Mask dimensions - uint32_t mask_height_; - - // Randomize input data - unsigned randomize_seed_; - - // Input data - static const uint32_t input_data_[]; -}; - -#endif // TEST_SIMPLE_CONVOLUTION_SIMPLE_CONVOLUTION_H_ diff --git a/test/hsa/test/util/evt_stats.h b/test/hsa/test/util/evt_stats.h deleted file mode 100644 index 4731cd1bc4..0000000000 --- a/test/hsa/test/util/evt_stats.h +++ /dev/null @@ -1,115 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef EVT_STATS_H_ -#define EVT_STATS_H_ - -#include - -#include -#include -#include -#include - -template class EvtStatsT { - public: - typedef std::mutex mutex_t; - typedef uint64_t evt_count_t; - typedef double evt_avr_t; - struct evt_record_t { - uint64_t count; - evt_avr_t avr; - evt_record_t() : count(0), avr(0) {} - }; - typedef typename std::map map_t; - typedef typename std::map labels_t; - - // Comparison function - struct cmpfun { - template bool operator()(const T& a, const T& b) const { - return (a.second.avr != b.second.avr) ? a.second.avr < b.second.avr : a.first < b.first; - } - }; - - inline void add_event(evt_id_t id, evt_weight_t weight) { - std::lock_guard lck(mutex_); - // printf("EvtStats %p ::add_event %u %lu\n", this, id, weight); fflush(stdout); - - evt_record_t& rec = map_[id]; - const evt_count_t prev_count = rec.count; - const evt_count_t new_count = prev_count + 1; - const evt_avr_t prev_avr = rec.avr; - const evt_avr_t new_avr = ((prev_avr * prev_count) + weight) / new_count; - - rec.count = new_count; - rec.avr = new_avr; - } - - void dump() { - std::lock_guard lck(mutex_); - fprintf(stdout, "Dumping %s\n", path_); - fflush(stdout); - - typedef typename std::set, cmpfun> set_t; - set_t s_(map_.begin(), map_.end()); - - uint64_t index = 0; - for (auto& e : s_) { - const evt_id_t id = e.first; - const char* label = get_label(id); - std::ostringstream oss; - oss << index << ",\"" << label << "\"," << e.second.count << "," << (uint64_t)(e.second.avr) - << "," << (uint64_t)(e.second.count * e.second.avr); - fprintf(fdes_, "%s\n", oss.str().c_str()); - index += 1; - } - - fclose(fdes_); - } - - const char* get_label(const uint32_t& id) { - auto ret = labels_.insert({id, NULL}); - const char* label = ret.first->second; - return label; - } - const char* get_label(const char* id) { return id; } - const char* get_label(const std::string& id) { return id.c_str(); } - - void set_label(evt_id_t id, const char* label) { - // printf("EvtStats %p ::set_label %u %s\n", this, id, label); fflush(stdout); - labels_[id] = label; - } - - EvtStatsT(FILE* f, const char* path) : fdes_(f), path_(path) { - // printf("EvtStats %p ::EvtStatsT()\n", this); fflush(stdout); - fprintf(fdes_, "Index,Name,Count,Avr,Total\n"); - } - - private: - mutex_t mutex_; - map_t map_; - labels_t labels_; - FILE* fdes_; - const char* path_; -}; - -typedef EvtStatsT EvtStats; - -#endif // EVT_STATS_H_ diff --git a/test/hsa/test/util/helper_funcs.h b/test/hsa/test/util/helper_funcs.h deleted file mode 100644 index de88343bff..0000000000 --- a/test/hsa/test/util/helper_funcs.h +++ /dev/null @@ -1,84 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef TEST_UTIL_HELPER_FUNCS_H_ -#define TEST_UTIL_HELPER_FUNCS_H_ - -#include -#include -#include -#include -#include - -static inline void Error(std::string error_msg) { - std::cerr << "Error: " << error_msg << std::endl; -} - -template -void PrintArray(const std::string header, const T* data, const int width, const int height) { - std::clog << header << " :\n"; - for (int i = 0; i < height; i++) { - std::clog << "> "; - for (int j = 0; j < width; j++) { - std::clog << data[i * width + j] << " "; - } - std::clog << "\n"; - } -} - -template -bool FillRandom(T* array_ptr, const int width, const int height, const T range_min, - const T range_max, unsigned int seed = 123) { - if (!array_ptr) { - Error("Cannot fill array. NULL pointer."); - return false; - } - - if (!seed) seed = (unsigned int)time(NULL); - - srand(seed); - double range = double(range_max - range_min) + 1.0; - - /* random initialisation of input */ - for (int i = 0; i < height; i++) - for (int j = 0; j < width; j++) { - int index = i * width + j; - array_ptr[index] = range_min + T(range * rand() / (RAND_MAX + 1.0)); - } - - return true; -} - -template T RoundToPowerOf2(T val) { - int bytes = sizeof(T); - - val--; - for (int i = 0; i < bytes; i++) val |= val >> (1 << i); - val++; - - return val; -} - -template bool IsPowerOf2(T val) { - long long long_val = val; - return (((long_val & (-long_val)) - long_val == 0) && (long_val != 0)); -} - -#endif // TEST_UTIL_HELPER_FUNCS_H_ diff --git a/test/hsa/test/util/hsa_rsrc_factory.cpp b/test/hsa/test/util/hsa_rsrc_factory.cpp deleted file mode 120000 index f3726ccf79..0000000000 --- a/test/hsa/test/util/hsa_rsrc_factory.cpp +++ /dev/null @@ -1 +0,0 @@ -../../src/hsa_rsrc_factory.cpp \ No newline at end of file diff --git a/test/hsa/test/util/hsa_rsrc_factory.h b/test/hsa/test/util/hsa_rsrc_factory.h deleted file mode 120000 index 64af96f19b..0000000000 --- a/test/hsa/test/util/hsa_rsrc_factory.h +++ /dev/null @@ -1 +0,0 @@ -../../src/hsa_rsrc_factory.h \ No newline at end of file diff --git a/test/hsa/test/util/perf_timer.cpp b/test/hsa/test/util/perf_timer.cpp deleted file mode 100644 index a59df3a5ad..0000000000 --- a/test/hsa/test/util/perf_timer.cpp +++ /dev/null @@ -1,177 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#include "util/perf_timer.h" - -PerfTimer::PerfTimer() { freq_in_100mhz_ = MeasureTSCFreqHz(); } - -PerfTimer::~PerfTimer() { - while (!timers_.empty()) { - Timer* temp = timers_.back(); - timers_.pop_back(); - delete temp; - } -} - -// New cretaed timer instantance index will be returned -int PerfTimer::CreateTimer() { - Timer* newTimer = new Timer; - newTimer->start = 0; - newTimer->clocks = 0; - -#ifdef _WIN32 - QueryPerformanceFrequency((LARGE_INTEGER*)&newTimer->freq); -#else - newTimer->freq = (long long)1.0E3; -#endif - - /* Push back the address of new Timer instance created */ - timers_.push_back(newTimer); - return (int)(timers_.size() - 1); -} - -int PerfTimer::StartTimer(int index) { - if (index >= (int)timers_.size()) { - Error("Cannot reset timer. Invalid handle."); - return FAILURE; - } - -#ifdef _WIN32 -// General Windows timing method -#ifndef _AMD - long long tmpStart; - QueryPerformanceCounter((LARGE_INTEGER*)&(tmpStart)); - timers_[index]->start = (double)tmpStart; -#else -// AMD Windows timing method -#endif -#else -// General Linux timing method -#ifndef _AMD - struct timeval s; - gettimeofday(&s, 0); - timers_[index]->start = s.tv_sec * 1.0E3 + ((double)(s.tv_usec / 1.0E3)); -#else - // AMD timing method - unsigned int unused; - timers_[index]->start = __rdtscp(&unused); -#endif -#endif - - return SUCCESS; -} - - -int PerfTimer::StopTimer(int index) { - double n = 0; - if (index >= (int)timers_.size()) { - Error("Cannot reset timer. Invalid handle."); - return FAILURE; - } -#ifdef _WIN32 -#ifndef _AMD - long long n1; - QueryPerformanceCounter((LARGE_INTEGER*)&(n1)); - n = (double)n1; -#else -// AMD Window Timing -#endif - -#else -// General Linux timing method -#ifndef _AMD - struct timeval s; - gettimeofday(&s, 0); - n = s.tv_sec * 1.0E3 + (double)(s.tv_usec / 1.0E3); -#else - // AMD Linux timing - unsigned int unused; - n = __rdtscp(&unused); -#endif -#endif - - n -= timers_[index]->start; - timers_[index]->start = 0; - -#ifndef _AMD - timers_[index]->clocks += n; -#else - // timers_[index]->clocks += 10 * n / freq_in_100mhz_; // unit is ns - timers_[index]->clocks += 1.0E-6 * 10 * n / freq_in_100mhz_; // convert to ms -#endif - - return SUCCESS; -} - -void PerfTimer::Error(std::string str) { std::cout << str << std::endl; } - - -double PerfTimer::ReadTimer(int index) { - if (index >= (int)timers_.size()) { - Error("Cannot read timer. Invalid handle."); - return FAILURE; - } - - double reading = double(timers_[index]->clocks); - - reading = double(reading / timers_[index]->freq); - - return reading; -} - - -uint64_t PerfTimer::CoarseTimestampUs() { -#ifdef _WIN32 - uint64_t freqHz, ticks; - QueryPerformanceFrequency((LARGE_INTEGER*)&freqHz); - QueryPerformanceCounter((LARGE_INTEGER*)&ticks); - - // Scale numerator and divisor until (ticks * 1000000) fits in uint64_t. - while (ticks > (1ULL << 44)) { - ticks /= 16; - freqHz /= 16; - } - - return (ticks * 1000000) / freqHz; -#else - struct timespec ts; - clock_gettime(CLOCK_MONOTONIC_RAW, &ts); - return uint64_t(ts.tv_sec) * 1000000 + ts.tv_nsec / 1000; -#endif -} - -uint64_t PerfTimer::MeasureTSCFreqHz() { - // Make a coarse interval measurement of TSC ticks for 1 gigacycles. - unsigned int unused; - uint64_t tscTicksEnd; - - uint64_t coarseBeginUs = CoarseTimestampUs(); - uint64_t tscTicksBegin = __rdtscp(&unused); - do { - tscTicksEnd = __rdtscp(&unused); - } while (tscTicksEnd - tscTicksBegin < 1000000000); - - uint64_t coarseEndUs = CoarseTimestampUs(); - - // Compute the TSC frequency and round to nearest 100MHz. - uint64_t coarseIntervalNs = (coarseEndUs - coarseBeginUs) * 1000; - uint64_t tscIntervalTicks = tscTicksEnd - tscTicksBegin; - return (tscIntervalTicks * 10 + (coarseIntervalNs / 2)) / coarseIntervalNs; -} diff --git a/test/hsa/test/util/perf_timer.h b/test/hsa/test/util/perf_timer.h deleted file mode 100644 index f95fbb98a2..0000000000 --- a/test/hsa/test/util/perf_timer.h +++ /dev/null @@ -1,81 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef TEST_UTIL_PERF_TIMER_H_ -#define TEST_UTIL_PERF_TIMER_H_ - -// Will use AMD timer or general Linux timer based on compilation flag -// Need to consider platform is Windows or Linux - -#include -#include -#include - -#if defined(_MSC_VER) -#include -#include -#include -#else -#if defined(__GNUC__) -#include -#include -#endif // __GNUC__ -#endif // _MSC_VER - -#include -#include -#include - -class PerfTimer { - public: - enum { SUCCESS = 0, FAILURE = 1 }; - - PerfTimer(); - ~PerfTimer(); - - // General Linux timing method - int CreateTimer(); - int StartTimer(int index); - int StopTimer(int index); - - // retrieve time - double ReadTimer(int index); - // write into a file - double WriteTimer(int index); - - private: - struct Timer { - std::string name; /* name of time object */ - long long freq; /* frequency */ - double clocks; /* number of ticks at end */ - double start; /* start point ticks */ - }; - - std::vector timers_; /* vector to Timer objects */ - double freq_in_100mhz_; - - // AMD timing method - uint64_t CoarseTimestampUs(); - uint64_t MeasureTSCFreqHz(); - - void Error(std::string str); -}; - -#endif // TEST_UTIL_PERF_TIMER_H_ diff --git a/test/hsa/test/util/test_assert.h b/test/hsa/test/util/test_assert.h deleted file mode 100644 index 586ef35433..0000000000 --- a/test/hsa/test/util/test_assert.h +++ /dev/null @@ -1,33 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef TEST_UTIL_TEST_ASSERT_H_ -#define TEST_UTIL_TEST_ASSERT_H_ - -#define TEST_ASSERT(cond) \ - { \ - if (!(cond)) { \ - std::cerr << "Assert failed(" << #cond << ") at " << __FILE__ << ", line " << __LINE__ \ - << std::endl; \ - exit(-1); \ - } \ - } - -#endif // TEST_UTIL_TEST_ASSERT_H_ diff --git a/test/hsa/test/util/xml.h b/test/hsa/test/util/xml.h deleted file mode 100644 index 12aa5817b6..0000000000 --- a/test/hsa/test/util/xml.h +++ /dev/null @@ -1,457 +0,0 @@ -/* Copyright (c) 2018-2022 Advanced Micro Devices, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. */ - -#ifndef TEST_UTIL_XML_H_ -#define TEST_UTIL_XML_H_ - -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include - -namespace xml { - -class Xml { - public: - typedef std::vector token_t; - - struct level_t; - typedef std::vector nodes_t; - typedef std::map opts_t; - struct level_t { - std::string tag; - nodes_t nodes; - opts_t opts; - }; - typedef std::vector nodes_vec_t; - typedef std::map map_t; - - enum { DECL_STATE, BODY_STATE }; - - static Xml* Create(const std::string& file_name, const Xml* obj = NULL) { - Xml* xml = new Xml(file_name, obj); - if (xml != NULL) { - if (xml->Init() == false) { - delete xml; - xml = NULL; - } else { - const std::size_t pos = file_name.rfind('/'); - const std::string path = (pos != std::string::npos) ? file_name.substr(0, pos + 1) : ""; - - xml->PreProcess(); - nodes_t incl_nodes; - for (auto* node : xml->GetNodes("top.include")) { - if (node->opts.find("touch") == node->opts.end()) { - node->opts["touch"] = ""; - incl_nodes.push_back(node); - } - } - for (auto* incl : incl_nodes) { - const std::string& incl_name = path + incl->opts["file"]; - Xml* ixml = Create(incl_name, xml); - if (ixml == NULL) { - delete xml; - xml = NULL; - break; - } else { - delete ixml; - } - } - if (xml) { - xml->Process(); - } - } - } - - return xml; - } - - static void Destroy(Xml* xml) { delete xml; } - - std::string GetName() { return file_name_; } - - void AddExpr(const std::string& full_tag, const std::string& name, const std::string& expr) { - const std::size_t pos = full_tag.rfind('.'); - const std::size_t pos1 = (pos == std::string::npos) ? 0 : pos + 1; - const std::string level_tag = full_tag.substr(pos1); - level_t* level = new level_t; - (*map_)[full_tag].push_back(level); - level->tag = level_tag; - level->opts["name"] = name; - level->opts["expr"] = expr; - } - - void AddConst(const std::string& full_tag, const std::string& name, const uint64_t& val) { - std::ostringstream oss; - oss << val; - AddExpr(full_tag, name, oss.str()); - } - - nodes_t GetNodes(const std::string& global_tag) { return (*map_)[global_tag]; } - - template F ForEach(const F& f_i) { - F f = f_i; - if (map_) { - for (auto& entry : *map_) { - for (auto node : entry.second) { - if (f.fun(entry.first, node) == false) break; - } - } - } - return f; - } - - template F ForEach(const F& f_i) const { - F f = f_i; - if (map_) { - for (auto& entry : *map_) { - for (auto node : entry.second) { - if (f.fun(entry.first, node) == false) break; - } - } - } - return f; - } - - struct print_func { - bool fun(const std::string& global_tag, level_t* node) { - for (auto& opt : node->opts) { - std::cout << global_tag << "." << opt.first << " = " << opt.second << std::endl; - } - return true; - } - }; - - void Print() const { - std::cout << "XML file '" << file_name_ << "':" << std::endl; - ForEach(print_func()); - } - - private: - Xml(const std::string& file_name, const Xml* obj) - : file_name_(file_name), - file_line_(0), - data_size_(0), - index_(0), - state_(BODY_STATE), - comment_(false), - included_(false), - level_(NULL), - map_(NULL) { - if (obj != NULL) { - map_ = obj->map_; - level_ = obj->level_; - included_ = true; - } - } - - struct delete_func { - bool fun(const std::string&, level_t* node) { - delete node; - return true; - } - }; - - ~Xml() { - if (included_ == false) { - ForEach(delete_func()); - delete map_; - } - } - - bool Init() { - fd_ = open(file_name_.c_str(), O_RDONLY); - if (fd_ == -1) { - // perror((std::string("open XML file ") + file_name_).c_str()); - return false; - } - - if (map_ == NULL) { - map_ = new map_t; - if (map_ == NULL) return false; - AddLevel("top"); - } - - return true; - } - - void PreProcess() { - uint32_t ind = 0; - char buf[kBufSize]; - bool error = false; - - while (1) { - const uint32_t pos = lseek(fd_, 0, SEEK_CUR); - uint32_t size = read(fd_, buf, kBufSize); - if (size <= 0) break; - buf[size - 1] = '\0'; - - if (strncmp(buf, "#include \"", 10) == 0) { - for (ind = 0; (ind < size) && (buf[ind] != '\n'); ++ind) { - } - if (ind == size) { - fprintf(stderr, "XML PreProcess failed, line size limit %zu\n", kBufSize); - error = true; - break; - } - buf[ind] = '\0'; - size = ind; - lseek(fd_, pos + ind + 1, SEEK_SET); - - for (ind = 10; (ind < size) && (buf[ind] != '"'); ++ind) { - } - if (ind == size) { - error = true; - break; - } - buf[ind] = '\0'; - - AddLevel("include"); - AddOption("file", &buf[10]); - UpLevel(); - } - } - - if (error) { - fprintf(stderr, "XML PreProcess failed, line '%s'\n", buf); - exit(1); - } - - lseek(fd_, 0, SEEK_SET); - } - - void Process() { - token_t remainder; - - while (1) { - token_t token = (remainder.size()) ? remainder : NextToken(); - remainder.clear(); - - // token_t token1 = token; - // token1.push_back('\0'); - // std::cout << "> " << &token1[0] << std::endl; - - // End of file - if (token.size() == 0) break; - - switch (state_) { - case BODY_STATE: - if (token[0] == '<') { - bool node_begin = true; - unsigned ind = 1; - if (token[1] == '/') { - node_begin = false; - ++ind; - } - - unsigned i = ind; - while (i < token.size()) { - if (token[i] == '>') break; - ++i; - } - for (unsigned j = i + 1; j < token.size(); ++j) remainder.push_back(token[j]); - - if (i == token.size()) { - if (node_begin) - state_ = DECL_STATE; - else - BadFormat(token); - token.push_back('\0'); - } else { - token[i] = '\0'; - } - - const char* tag = &token[ind]; - if (node_begin) { - AddLevel(tag); - } else { - if (strncmp(CurrentLevel().c_str(), tag, strlen(tag)) != 0) { - token.back() = '>'; - BadFormat(token); - } - UpLevel(); - } - } else { - BadFormat(token); - } - break; - case DECL_STATE: - if (token[0] == '>') { - state_ = BODY_STATE; - for (unsigned j = 1; j < token.size(); ++j) remainder.push_back(token[j]); - continue; - } else { - token.push_back('\0'); - unsigned j = 0; - for (j = 0; j < token.size(); ++j) - if (token[j] == '=') break; - if (j == token.size()) BadFormat(token); - token[j] = '\0'; - const char* key = &token[0]; - const char* value = &token[j + 1]; - AddOption(key, value); - } - break; - default: - std::cout << "XML parser error: wrong state: " << state_ << std::endl; - exit(1); - } - } - } - - bool SpaceCheck() const { - bool cond = ((buffer_[index_] == ' ') || (buffer_[index_] == '\t')); - return cond; - } - - bool LineEndCheck() { - bool found = false; - if (buffer_[index_] == '\n') { - buffer_[index_] = ' '; - ++file_line_; - found = true; - comment_ = false; - } else if (comment_ || (buffer_[index_] == '#')) { - found = true; - comment_ = true; - } - return found; - } - - token_t NextToken() { - token_t token; - bool in_string = false; - bool special_symb = false; - - while (1) { - if (data_size_ == 0) { - data_size_ = read(fd_, buffer_, kBufSize); - if (data_size_ <= 0) break; - } - - if (token.empty()) { - while ((index_ < data_size_) && (SpaceCheck() || LineEndCheck())) { - ++index_; - } - } - while ((index_ < data_size_) && (in_string || !(SpaceCheck() || LineEndCheck()))) { - const char symb = buffer_[index_]; - bool skip_symb = false; - - switch (symb) { - case '\\': - if (special_symb) { - special_symb = false; - } else { - special_symb = true; - skip_symb = true; - } - break; - case '"': - if (special_symb) { - special_symb = false; - } else { - in_string = !in_string; - if (!in_string) { - buffer_[index_] = ' '; - --index_; - } - skip_symb = true; - } - break; - } - - if (!skip_symb) token.push_back(symb); - ++index_; - } - - if (index_ == data_size_) { - index_ = 0; - data_size_ = 0; - } else { - if (special_symb || in_string) BadFormat(token); - break; - } - } - - return token; - } - - void BadFormat(token_t token) { - token.push_back('\0'); - std::cout << "Error: " << file_name_ << ", line " << file_line_ << ", bad XML token '" - << &token[0] << "'" << std::endl; - exit(1); - } - - void AddLevel(const std::string& tag) { - level_t* level = new level_t; - level->tag = tag; - if (level_) { - level_->nodes.push_back(level); - stack_.push_back(level_); - } - level_ = level; - - std::string global_tag; - for (level_t* level : stack_) { - global_tag += level->tag + "."; - } - global_tag += tag; - (*map_)[global_tag].push_back(level_); - } - - void UpLevel() { - level_ = stack_.back(); - stack_.pop_back(); - } - - std::string CurrentLevel() const { return level_->tag; } - - void AddOption(const std::string& key, const std::string& value) { level_->opts[key] = value; } - - const std::string file_name_; - unsigned file_line_; - int fd_; - - static const size_t kBufSize = 256; - char buffer_[kBufSize]; - - unsigned data_size_; - unsigned index_; - unsigned state_; - bool comment_; - std::vector stack_; - bool included_; - level_t* level_; - map_t* map_; -}; - -} // namespace xml - -#endif // TEST_UTIL_XML_H_ diff --git a/test/run.sh b/test/run.sh index 07c49ca39f..ef8280aee9 100755 --- a/test/run.sh +++ b/test/run.sh @@ -114,7 +114,7 @@ eval_test() { # Tests dry run eval_test "MatrixTranspose dry run" ./test/MatrixTranspose MatrixTranspose_dryrun_trace -eval_test "ctrl dry run" ./test/hsa/ctrl ctrl_dryrun_trace +eval_test "copy dry run" ./test/copy copy_dryrun_trace # Standalone test # rocTrecer is used explicitely by test @@ -158,11 +158,11 @@ export ROCP_AGENTS=1 # each thread creates a queue pre GPU agent export ROCP_THRS=1 -eval_test "tool HSA test" ./test/hsa/ctrl ctrl_hsa_trace +eval_test "tool HSA test" ./test/copy copy_hsa_trace echo "" > test/input.xml export ROCP_INPUT=test/input.xml -eval_test "tool HSA test input" ./test/hsa/ctrl ctrl_hsa_input_trace +eval_test "tool HSA test input" ./test/copy copy_hsa_input_trace unset ROCP_INPUT export HSA_TOOLS_LIB="$ROCTRACER_LIB_PATH/libroctracer64.so ./test/libhsaco_test.so"