diff --git a/projects/roctracer/script/check_trace.py b/projects/roctracer/script/check_trace.py new file mode 100644 index 0000000000..1cb99d8045 --- /dev/null +++ b/projects/roctracer/script/check_trace.py @@ -0,0 +1,135 @@ +#!/usr/bin/python + +#Copyright (c) 2015-present 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. + +import sys, os, re +import filecmp +import argparse + +events_count = {} +events_order = {} +trace2level = {} +trace2level_filename = 'test/tests_trace_cmp_levels.txt' + +def parse_trace_levels(filename): + f = open(filename) + trace2level = {} + for line in f: + item = line.split(' ', 1) + trace2level[item[0]] = eval(item[1]) + return trace2level + +# check trace againt golden reference and returns 0 for match, 1 for mismatch +def check_trace_status(tracename): + trace2level = parse_trace_levels(trace2level_filename) + + trace = tracename + '.txt' + rtrace = tracename + '_r.txt' + if os.path.basename(tracename) in trace2level: + trace_level = trace2level[os.path.basename(tracename)] + print 'Trace comparison for ' + os.path.basename(tracename) + ' is at level ' + str(trace_level) + else: + print 'Trace ' + os.path.basename(tracename) + ' not found in ' + trace2level_filename + ', defaulting to level 0' + return 0 + + if trace_level == 1: + cnt_r = gen_events_info(rtrace,'cnt') + cnt = gen_events_info(trace,'cnt') + if cnt_r == cnt: + return 0 + else: + return 1 + elif trace_level == 2: + cnt_r = gen_events_info(rtrace,'or') + cnt = gen_events_info(trace,'or') + if cnt_r == cnt: + return 0 + else: + return 1 + elif trace_level == 3: + if filecmp.cmp(trace,rtrace): + return 0 + else: + return 1 + +#Parses roctracer trace file for regression purpose +#and generates events count per event (when cnt is on) or events order per tid (when order is on) +def gen_events_info(tracefile, metric): + events_count = {} + events_order = {} + res='' + with open(tracefile) as f: + for line in f: + event_pattern_s = re.compile(r'# START \((\d+)\) #############################') + ms = event_pattern_s.match(line) + if ms: + start_id = ms.group(1) + continue + event_pattern = re.compile(r'.*<(\w+)\s+id\(\d+\)\s+.*tid\((\d+)\)>') + # event_pattern extracts event(grp1) and tid (grp2) from a line like this: + # + m = event_pattern.match(line) + if m: + event = m.group(1) + tid = m.group(2) + event_pattern2 = re.compile(r'\d+:\d+\s+\d+:(\d+)\s+(\w+)') + # event_pattern2 extracts tid (grp1) and event (grp2) from a line like this: + # 1822810364769411:1822810364771941 116477:116477 hsa_agent_get_info(, 17, 0x7ffeac015fec) = 0 + m2 = event_pattern2.match(line) + if m2: + event = m2.group(2) + tid = m2.group(1) + event_pattern3 = re.compile(r'') + # event_pattern2 extracts rocTX event like: + # + # + m3 = event_pattern3.match(line) + if m3: + event = m3.group(1) + tid = start_id + if metric == 'cnt' and (m or m2 or m3): + if event in events_count: + events_count[event] = events_count[event] + 1 + else: + events_count[event] = 1 + if metric == 'or' and (m or m2 or m3): + if tid in events_order.keys(): + events_order[tid].append(event) + else: + events_order[tid] = [event] + if metric == 'cnt': + for event,count in events_count.items(): + res = res + event + " : count " + str(count) + '\n' + if metric == 'or': + for tid in sorted (events_order.keys()) : + #res = res + 'Events for tid ' + tid + ' are:\n' + str(events_order[tid]) + '\n' + res = res + str(events_order[tid]) + return res + + +parser = argparse.ArgumentParser(description='check_trace.py: check a trace aainst golden ref. Returns 0 for success, 1 for failure') +requiredNamed = parser.add_argument_group('Required arguments') +requiredNamed.add_argument('-in', metavar='file', help='Name of trace to be checked', required=True) +args = vars(parser.parse_args()) + +if __name__ == '__main__': + sys.exit(check_trace_status(args['in'])) + diff --git a/projects/roctracer/test/CMakeLists.txt b/projects/roctracer/test/CMakeLists.txt index 03a8695f15..2082e2ef05 100644 --- a/projects/roctracer/test/CMakeLists.txt +++ b/projects/roctracer/test/CMakeLists.txt @@ -40,6 +40,10 @@ add_custom_target( mytest COMMAND sh -xc "cp ${TEST_DIR}/MatrixTranspose_test/MatrixTranspose ${PROJECT_BINARY_DIR}/test/MatrixTranspose_mgpu" COMMAND C_TEST=1 ${TEST_CFLAGS} make -C "${TEST_DIR}/MatrixTranspose_test" COMMAND sh -xc "cp ${TEST_DIR}/MatrixTranspose_test/MatrixTranspose ${PROJECT_BINARY_DIR}/test/MatrixTranspose_ctest" +# copy traces + COMMAND sh -xc "cp ${TEST_DIR}/MatrixTranspose*/*_trace.txt ${PROJECT_BINARY_DIR}/test/" + COMMAND sh -xc "cp ${TEST_DIR}/*_trace.txt ${PROJECT_BINARY_DIR}/test/" + COMMAND sh -xc "cp ${TEST_DIR}/tests_trace_cmp_levels.txt ${PROJECT_BINARY_DIR}/test/" ) ## Util sources @@ -59,4 +63,4 @@ set ( TEST_DIR ${HSA_TEST_DIR} ) add_subdirectory ( ${TEST_DIR} ${PROJECT_BINARY_DIR}/test/hsa ) ## copying run script -execute_process ( COMMAND sh -xc "cp ${RUN_SCRIPT} ${PROJECT_BINARY_DIR}" ) +execute_process ( COMMAND sh -xc "cp ${RUN_SCRIPT} ${PROJECT_BINARY_DIR}" ) \ No newline at end of file diff --git a/projects/roctracer/test/MatrixTranspose/MatrixTranspose_ctest_trace.txt b/projects/roctracer/test/MatrixTranspose/MatrixTranspose_ctest_trace.txt new file mode 100644 index 0000000000..61e8730e44 --- /dev/null +++ b/projects/roctracer/test/MatrixTranspose/MatrixTranspose_ctest_trace.txt @@ -0,0 +1,503 @@ +standalone C test: "LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose_ctest" +# INIT ############################# +# START (99) ############################# + + + + + + +PASSED! +# START (98) ############################# +PASSED! +# START (97) ############################# + + + + + + +PASSED! +# START (96) ############################# +PASSED! +# START (95) ############################# + + + + + + +PASSED! +# START (94) ############################# +PASSED! +# START (93) ############################# + + + + + + +PASSED! +# START (92) ############################# +PASSED! +# START (91) ############################# + + + + + + +PASSED! +# START (90) ############################# +PASSED! +# START (89) ############################# + + + + + + +PASSED! +# START (88) ############################# +PASSED! +# START (87) ############################# + + + + + + +PASSED! +# START (86) ############################# +PASSED! +# START (85) ############################# + + + + + + +PASSED! +# START (84) ############################# +PASSED! +# START (83) ############################# + + + + + + +PASSED! +# START (82) ############################# +PASSED! +# START (81) ############################# + + + + + + +PASSED! +# START (80) ############################# +PASSED! +# START (79) ############################# + + + + + + +PASSED! +# START (78) ############################# +PASSED! +# START (77) ############################# + + + + + + +PASSED! +# START (76) ############################# +PASSED! +# START (75) ############################# + + + + + + +PASSED! +# START (74) ############################# +PASSED! +# START (73) ############################# + + + + + + +PASSED! +# START (72) ############################# +PASSED! +# START (71) ############################# + + + + + + +PASSED! +# START (70) ############################# +PASSED! +# START (69) ############################# + + + + + + +PASSED! +# START (68) ############################# +PASSED! +# START (67) ############################# + + + + + + +PASSED! +# START (66) ############################# +PASSED! +# START (65) ############################# + + + + + + +PASSED! +# START (64) ############################# +PASSED! +# START (63) ############################# + + + + + + +PASSED! +# START (62) ############################# +PASSED! +# START (61) ############################# + + + + + + +PASSED! +# START (60) ############################# +PASSED! +# START (59) ############################# + + + + + + +PASSED! +# START (58) ############################# +PASSED! +# START (57) ############################# + + + + + + +PASSED! +# START (56) ############################# +PASSED! +# START (55) ############################# + + + + + + +PASSED! +# START (54) ############################# +PASSED! +# START (53) ############################# + + + + + + +PASSED! +# START (52) ############################# +PASSED! +# START (51) ############################# + + + + + + +PASSED! +# START (50) ############################# +PASSED! +# START (49) ############################# + + + + + + +PASSED! +# START (48) ############################# +PASSED! +# START (47) ############################# + + + + + + +PASSED! +# START (46) ############################# +PASSED! +# START (45) ############################# + + + + + + +PASSED! +# START (44) ############################# +PASSED! +# START (43) ############################# + + + + + + +PASSED! +# START (42) ############################# +PASSED! +# START (41) ############################# + + + + + + +PASSED! +# START (40) ############################# +PASSED! +# START (39) ############################# + + + + + + +PASSED! +# START (38) ############################# +PASSED! +# START (37) ############################# + + + + + + +PASSED! +# START (36) ############################# +PASSED! +# START (35) ############################# + + + + + + +PASSED! +# START (34) ############################# +PASSED! +# START (33) ############################# + + + + + + +PASSED! +# START (32) ############################# +PASSED! +# START (31) ############################# + + + + + + +PASSED! +# START (30) ############################# +PASSED! +# START (29) ############################# + + + + + + +PASSED! +# START (28) ############################# +PASSED! +# START (27) ############################# + + + + + + +PASSED! +# START (26) ############################# +PASSED! +# START (25) ############################# + + + + + + +PASSED! +# START (24) ############################# +PASSED! +# START (23) ############################# + + + + + + +PASSED! +# START (22) ############################# +PASSED! +# START (21) ############################# + + + + + + +PASSED! +# START (20) ############################# +PASSED! +# START (19) ############################# + + + + + + +PASSED! +# START (18) ############################# +PASSED! +# START (17) ############################# + + + + + + +PASSED! +# START (16) ############################# +PASSED! +# START (15) ############################# + + + + + + +PASSED! +# START (14) ############################# +PASSED! +# START (13) ############################# + + + + + + +PASSED! +# START (12) ############################# +PASSED! +# START (11) ############################# + + + + + + +PASSED! +# START (10) ############################# +PASSED! +# START (9) ############################# + + + + + + +PASSED! +# START (8) ############################# +PASSED! +# START (7) ############################# + + + + + + +PASSED! +# START (6) ############################# +PASSED! +# START (5) ############################# + + + + + + +PASSED! +# START (4) ############################# +PASSED! +# START (3) ############################# + + + + + + +PASSED! +# START (2) ############################# +PASSED! +# START (1) ############################# + + + + + + +PASSED! +# START (0) ############################# +PASSED! +# STOP ############################# diff --git a/projects/roctracer/test/MatrixTranspose/MatrixTranspose_hip_trace.txt b/projects/roctracer/test/MatrixTranspose/MatrixTranspose_hip_trace.txt new file mode 100644 index 0000000000..860f8db54f --- /dev/null +++ b/projects/roctracer/test/MatrixTranspose/MatrixTranspose_hip_trace.txt @@ -0,0 +1,466 @@ +tool period test: "ROCP_CTRL_RATE=10:100000:1000000 ./test/MatrixTranspose" +ROCTracer (pid=116438): + HIP-trace() +ROCTracer: trace control: delay(10us), length(100000us), rate(1000000us) +Device name Vega 10 XT [Radeon RX Vega 64] +## Iteration (99) ################# +PASSED! +## Iteration (98) ################# +PASSED! +## Iteration (97) ################# +PASSED! +## Iteration (96) ################# +PASSED! +## Iteration (95) ################# +PASSED! +## Iteration (94) ################# +PASSED! +## Iteration (93) ################# +PASSED! +## Iteration (92) ################# +PASSED! +## Iteration (91) ################# +PASSED! +## Iteration (90) ################# +PASSED! +## Iteration (89) ################# +PASSED! +## Iteration (88) ################# +PASSED! +## Iteration (87) ################# +PASSED! +## Iteration (86) ################# +PASSED! +## Iteration (85) ################# +PASSED! +## Iteration (84) ################# +PASSED! +## Iteration (83) ################# +PASSED! +## Iteration (82) ################# +PASSED! +## Iteration (81) ################# +PASSED! +## Iteration (80) ################# +PASSED! +## Iteration (79) ################# +PASSED! +## Iteration (78) ################# +PASSED! +## Iteration (77) ################# +PASSED! +## Iteration (76) ################# +PASSED! +## Iteration (75) ################# +PASSED! +## Iteration (74) ################# +PASSED! +## Iteration (73) ################# +PASSED! +## Iteration (72) ################# +PASSED! +## Iteration (71) ################# +PASSED! +## Iteration (70) ################# +PASSED! +## Iteration (69) ################# +PASSED! +## Iteration (68) ################# +PASSED! +## Iteration (67) ################# +PASSED! +## Iteration (66) ################# +PASSED! +## Iteration (65) ################# +PASSED! +## Iteration (64) ################# +PASSED! +## Iteration (63) ################# +PASSED! +## Iteration (62) ################# +PASSED! +## Iteration (61) ################# +PASSED! +## Iteration (60) ################# +PASSED! +## Iteration (59) ################# +PASSED! +## Iteration (58) ################# +PASSED! +## Iteration (57) ################# +PASSED! +## Iteration (56) ################# +PASSED! +## Iteration (55) ################# +PASSED! +## Iteration (54) ################# +PASSED! +## Iteration (53) ################# +PASSED! +## Iteration (52) ################# +PASSED! +## Iteration (51) ################# +PASSED! +## Iteration (50) ################# +PASSED! +## Iteration (49) ################# +PASSED! +## Iteration (48) ################# +PASSED! +## Iteration (47) ################# +PASSED! +## Iteration (46) ################# +PASSED! +## Iteration (45) ################# +PASSED! +## Iteration (44) ################# +PASSED! +## Iteration (43) ################# +PASSED! +## Iteration (42) ################# +PASSED! +## Iteration (41) ################# +PASSED! +## Iteration (40) ################# +PASSED! +## Iteration (39) ################# +PASSED! +## Iteration (38) ################# +PASSED! +## Iteration (37) ################# +PASSED! +## Iteration (36) ################# +PASSED! +## Iteration (35) ################# +PASSED! +## Iteration (34) ################# +PASSED! +## Iteration (33) ################# +PASSED! +## Iteration (32) ################# +PASSED! +## Iteration (31) ################# +PASSED! +## Iteration (30) ################# +PASSED! +## Iteration (29) ################# +PASSED! +## Iteration (28) ################# +PASSED! +## Iteration (27) ################# +PASSED! +## Iteration (26) ################# +PASSED! +## Iteration (25) ################# +PASSED! +## Iteration (24) ################# +PASSED! +## Iteration (23) ################# +PASSED! +## Iteration (22) ################# +PASSED! +## Iteration (21) ################# +PASSED! +## Iteration (20) ################# +PASSED! +## Iteration (19) ################# +PASSED! +## Iteration (18) ################# +PASSED! +## Iteration (17) ################# +PASSED! +## Iteration (16) ################# +PASSED! +## Iteration (15) ################# +PASSED! +## Iteration (14) ################# +PASSED! +## Iteration (13) ################# +PASSED! +## Iteration (12) ################# +PASSED! +## Iteration (11) ################# +PASSED! +## Iteration (10) ################# +PASSED! +## Iteration (9) ################# +PASSED! +## Iteration (8) ################# +PASSED! +## Iteration (7) ################# +PASSED! +## Iteration (6) ################# +PASSED! +## Iteration (5) ################# +PASSED! +## Iteration (4) ################# +PASSED! +## Iteration (3) ################# +PASSED! +## Iteration (2) ################# +PASSED! +## Iteration (1) ################# +PASSED! +## Iteration (0) ################# +PASSED! +1822770162190096:1822770162201236 116438:116438 hipGetDeviceProperties() +1822770164732632:1822770164861753 116438:116438 hipMalloc(ptr(0x7fdfe4c00000) size(0x400000)) +1822770164862903:1822770164922593 116438:116438 hipMalloc(ptr(0x7fdfe4600000) size(0x400000)) +1822770164934104:1822770173240357 116438:116438 hipMemcpy(dst(0x7fdfe4c00000) src(0x20b7940) size(0x400000) kind(1)) +1822770173243647:1822770173243648 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770618561423:1822770618561424 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770636292136:1822770636292137 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770636318946:1822770636318947 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770649027427:1822770649027428 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770649055147:1822770649055148 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770661858819:1822770661858820 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770661886030:1822770661886031 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770674690761:1822770674690762 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770674719182:1822770674719183 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770687446783:1822770687446784 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770687474763:1822770687474764 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770700179044:1822770700179045 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770700207174:1822770700207175 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770713015755:1822770713015756 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770713043885:1822770713043886 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770725806637:1822770725806638 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770725833717:1822770725833718 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770738590118:1822770738590119 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770738618148:1822770738618149 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770751343939:1822770751343940 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770751372549:1822770751372550 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770764097681:1822770764097682 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770764136631:1822770764136632 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770776839992:1822770776839993 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770776867912:1822770776867913 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770789778774:1822770789778775 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770789807094:1822770789807095 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770802678836:1822770802678837 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770802707166:1822770802707167 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770815520828:1822770815520829 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770815548698:1822770815548699 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770828292289:1822770828292290 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770828320769:1822770828320770 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770841038531:1822770841038532 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770841065971:1822770841065972 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770853790232:1822770853790233 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770853820062:1822770853820063 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770866522263:1822770866522264 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770866550493:1822770866550494 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770879265854:1822770879265855 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770879294035:1822770879294036 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770892077246:1822770892077247 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770892105206:1822770892105207 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770904861617:1822770904861618 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770904892457:1822770904892458 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770917627368:1822770917627369 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770917655519:1822770917655520 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770930409670:1822770930409671 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770930438360:1822770930438361 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770943189151:1822770943189152 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770943217081:1822770943217082 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770956024813:1822770956024814 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770956052314:1822770956052315 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770968829485:1822770968829486 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770968857945:1822770968857946 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770981593826:1822770981593827 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770981621566:1822770981621567 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770994423678:1822770994423679 116438:116438 MARK(name(before HIP LaunchKernel)) +1822770994452568:1822770994452569 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771007194429:1822771007194430 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771007221919:1822771007221920 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771020222042:1822771020222043 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771020249972:1822771020249973 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771032985534:1822771032985535 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771033013724:1822771033013725 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771045714144:1822771045714145 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771045741935:1822771045741936 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771058596217:1822771058596218 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771058624617:1822771058624618 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771071441309:1822771071441310 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771071469609:1822771071469610 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771084319850:1822771084319851 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771084348361:1822771084348362 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771097128132:1822771097128133 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771097156612:1822771097156613 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771109883183:1822771109883184 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771109921563:1822771109921564 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771122729855:1822771122729856 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771122757155:1822771122757156 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771135568637:1822771135568638 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771135597657:1822771135597658 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771148375219:1822771148375220 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771148403629:1822771148403630 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771159180137:1822771161235110 116438:116438 hipMemcpy(dst(0x7fdfe4c00000) src(0x20b7940) size(0x400000) kind(1)) +1822771161236660:1822771161236661 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771161248381:1822771161264431 116438:116438 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822771161285751:1822771161285752 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771161287281:1822771165514938 116438:116438 hipMemcpy(dst(0x24b7950) src(0x7fdfe4600000) size(0x400000) kind(2)) +1822771171918848:1822771173984782 116438:116438 hipMemcpy(dst(0x7fdfe4c00000) src(0x20b7940) size(0x400000) kind(1)) +1822771173986152:1822771173986153 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771173996942:1822771174012792 116438:116438 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822771174014272:1822771174014273 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771174015382:1822771178279619 116438:116438 hipMemcpy(dst(0x24b7950) src(0x7fdfe4600000) size(0x400000) kind(2)) +1822771184673329:1822771186731413 116438:116438 hipMemcpy(dst(0x7fdfe4c00000) src(0x20b7940) size(0x400000) kind(1)) +1822771186732863:1822771186732864 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771186744233:1822771186760743 116438:116438 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822771186761783:1822771186761784 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771186762873:1822771191066460 116438:116438 hipMemcpy(dst(0x24b7950) src(0x7fdfe4600000) size(0x400000) kind(2)) +1822771197562312:1822771199606165 116438:116438 hipMemcpy(dst(0x7fdfe4c00000) src(0x20b7940) size(0x400000) kind(1)) +1822771199607685:1822771199607686 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771199618535:1822771199634505 116438:116438 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822771199635835:1822771199635836 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771199636915:1822771203924882 116438:116438 hipMemcpy(dst(0x24b7950) src(0x7fdfe4600000) size(0x400000) kind(2)) +1822771210390814:1822771212448587 116438:116438 hipMemcpy(dst(0x7fdfe4c00000) src(0x20b7940) size(0x400000) kind(1)) +1822771212450127:1822771212450128 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771212462917:1822771212479457 116438:116438 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822771212480477:1822771212480478 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771212481567:1822771216792744 116438:116438 hipMemcpy(dst(0x24b7950) src(0x7fdfe4600000) size(0x400000) kind(2)) +1822771223198475:1822771225253498 116438:116438 hipMemcpy(dst(0x7fdfe4c00000) src(0x20b7940) size(0x400000) kind(1)) +1822771225255288:1822771225255289 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771225266888:1822771225282819 116438:116438 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822771225283809:1822771225283810 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771225284909:1822771229566596 116438:116438 hipMemcpy(dst(0x24b7950) src(0x7fdfe4600000) size(0x400000) kind(2)) +1822771236041977:1822771238101610 116438:116438 hipMemcpy(dst(0x7fdfe4c00000) src(0x20b7940) size(0x400000) kind(1)) +1822771238103080:1822771238103081 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771238113820:1822771238129850 116438:116438 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822771238130840:1822771238130841 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771238131950:1822771242369628 116438:116438 hipMemcpy(dst(0x24b7950) src(0x7fdfe4600000) size(0x400000) kind(2)) +1822771248769078:1822771250830021 116438:116438 hipMemcpy(dst(0x7fdfe4c00000) src(0x20b7940) size(0x400000) kind(1)) +1822771250831601:1822771250831602 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771250842911:1822771250858631 116438:116438 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822771250859621:1822771250859622 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771250860701:1822771255145869 116438:116438 hipMemcpy(dst(0x24b7950) src(0x7fdfe4600000) size(0x400000) kind(2)) +1822771263595032:1822771263595033 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771263622582:1822771263622583 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771276404694:1822771276404695 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771276431864:1822771276431865 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771289132475:1822771289132476 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771289160596:1822771289160597 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771301911557:1822771301911558 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771301950127:1822771301950128 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771314764229:1822771314764230 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771314791509:1822771314791510 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771327616470:1822771327616471 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771327644471:1822771327644472 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771340467792:1822771340467793 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771340495392:1822771340495393 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771353284764:1822771353284765 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771353314034:1822771353314035 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771366027805:1822771366027806 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771366054975:1822771366054976 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771378747056:1822771378747057 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771378775616:1822771378775617 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771391520358:1822771391520359 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771391548328:1822771391548329 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771404259849:1822771404259850 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771404287629:1822771404287630 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771417078650:1822771417078651 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771417105521:1822771417105522 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771429921622:1822771429921623 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771429948912:1822771429948913 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771442703863:1822771442703864 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771442732114:1822771442732115 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771455546175:1822771455546176 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771455574765:1822771455574766 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771468309596:1822771468309597 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771468337556:1822771468337557 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771481124388:1822771481124389 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771481151899:1822771481151900 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771493874879:1822771493874880 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771493904120:1822771493904121 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771506687371:1822771506687372 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771506715871:1822771506715872 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771519464533:1822771519464534 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771519492293:1822771519492294 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771532279194:1822771532279195 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771532307234:1822771532307235 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771545016015:1822771545016016 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771545044205:1822771545044206 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771557801846:1822771557801847 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771557829627:1822771557829628 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771570644168:1822771570644169 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771570672029:1822771570672030 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771583412800:1822771583412801 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771583440560:1822771583440561 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771596207231:1822771596207232 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771596235072:1822771596235073 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771609169614:1822771609169615 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771609198584:1822771609198585 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771621935145:1822771621935146 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771621963045:1822771621963046 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771634755077:1822771634755078 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771634782347:1822771634782348 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771647514558:1822771647514559 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771647554188:1822771647554189 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771660410781:1822771660410782 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771660438721:1822771660438722 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771673205902:1822771673205903 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771673233972:1822771673233973 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771686004863:1822771686004864 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771686032954:1822771686032955 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771698793305:1822771698793306 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771698821805:1822771698821806 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771711576346:1822771711576347 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771711604186:1822771711604187 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771724367387:1822771724367388 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771724394878:1822771724394879 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771737130739:1822771737130740 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771737160079:1822771737160080 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771749894700:1822771749894701 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771749922980:1822771749922981 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771762658122:1822771762658123 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771762686292:1822771762686293 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771775443853:1822771775443854 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771775471433:1822771775471434 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771788218125:1822771788218126 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771788245825:1822771788245826 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771801042946:1822771801042947 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771801071416:1822771801071417 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771813839688:1822771813839689 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771813867578:1822771813867579 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771826878471:1822771826878472 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771826906261:1822771826906262 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771839641572:1822771839641573 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771839669053:1822771839669054 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771852458764:1822771852458765 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771852485704:1822771852485705 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771865247615:1822771865247616 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771865275756:1822771865275757 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771878163408:1822771878163409 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771878191438:1822771878191439 116438:116438 MARK(name(after HIP LaunchKernel)) +1822771891031999:1822771891032000 116438:116438 MARK(name(before HIP LaunchKernel)) +1822771891060780:1822771891060781 116438:116438 MARK(name(after HIP LaunchKernel)) +1822770164959094:1822770173233007 0:0 hcMemcpyHostToDevice:4 +1822771159196627:1822771161231010 0:0 hcMemcpyHostToDevice:89 +1822771161271486:1822771162462508 0:0 hcCommandKernel:91 +1822771162546779:1822771165512668 0:0 hcMemcpyDeviceToHost:93 +1822771171936428:1822771173981162 0:0 hcMemcpyHostToDevice:94 +1822771174019952:1822771175216159 0:0 hcCommandKernel:96 +1822771162467378:1822771162499379 0:0 hcCommandMarker:93 +1822771175297180:1822771178277099 0:0 hcMemcpyDeviceToHost:98 +1822771184690200:1822771186728003 0:0 hcMemcpyHostToDevice:99 +1822771186767974:1822771187965367 0:0 hcCommandKernel:101 +1822771175221178:1822771175252439 0:0 hcCommandMarker:98 +1822771188052511:1822771191063960 0:0 hcMemcpyDeviceToHost:103 +1822771197579732:1822771199602785 0:0 hcMemcpyHostToDevice:104 +1822771199641385:1822771200839370 0:0 hcCommandKernel:106 +1822771187970434:1822771188001695 0:0 hcCommandMarker:103 +1822771200920833:1822771203922192 0:0 hcMemcpyDeviceToHost:108 +1822771210408554:1822771212444577 0:0 hcMemcpyHostToDevice:109 +1822771212486611:1822771213670374 0:0 hcCommandKernel:111 +1822771200844255:1822771200875960 0:0 hcCommandMarker:108 +1822771213752345:1822771216790154 0:0 hcMemcpyDeviceToHost:113 +1822771223214605:1822771225250368 0:0 hcMemcpyHostToDevice:114 +1822771225289765:1822771226493528 0:0 hcCommandKernel:116 +1822771213675410:1822771213707115 0:0 hcCommandMarker:113 +1822771226574837:1822771229564026 0:0 hcMemcpyDeviceToHost:118 +1822771236058777:1822771238097360 0:0 hcMemcpyHostToDevice:119 +1822771238136777:1822771239325132 0:0 hcCommandKernel:121 +1822771226498570:1822771226530127 0:0 hcCommandMarker:118 +1822771239406108:1822771242367398 0:0 hcMemcpyDeviceToHost:123 +1822771248787248:1822771250826071 0:0 hcMemcpyHostToDevice:124 +1822771250866138:1822771252059234 0:0 hcCommandKernel:126 +1822771239330157:1822771239361418 0:0 hcCommandMarker:123 +1822771252142610:1822771255143279 0:0 hcMemcpyDeviceToHost:128 +1822771252064420:1822771252095680 0:0 hcCommandMarker:128 diff --git a/projects/roctracer/test/MatrixTranspose/MatrixTranspose_mgpu_trace.txt b/projects/roctracer/test/MatrixTranspose/MatrixTranspose_mgpu_trace.txt new file mode 100644 index 0000000000..7fc1b7fa10 --- /dev/null +++ b/projects/roctracer/test/MatrixTranspose/MatrixTranspose_mgpu_trace.txt @@ -0,0 +1,6719 @@ +# INIT ############################# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Number of GPUs: 1 +# START (99) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x10de660) size(0x400000) kind(1) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + dst(0x14de670) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (98) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (97) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (96) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (95) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (94) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (93) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + Activity records: + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (92) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (91) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (90) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (89) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (88) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (87) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (86) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (85) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + Activity records: + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (84) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (83) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (82) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (81) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (80) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (79) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + + Activity records: + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (78) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (77) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (76) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (75) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (74) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (73) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (72) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (71) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + Activity records: + + + + + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (70) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (69) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (68) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (67) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (66) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (65) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (64) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + Activity records: + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) +PASSED! +# START (63) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (62) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (61) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (60) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (59) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (58) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (57) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + Activity records: + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + + + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + + + + + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (56) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (55) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (54) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (53) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (52) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (51) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (50) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + Activity records: + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) +PASSED! +# START (49) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (48) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (47) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (46) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (45) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (44) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (43) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + Activity records: + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (42) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (41) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (40) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (39) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (38) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (37) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (36) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + Activity records: + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) +PASSED! +# START (35) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (34) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (33) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (32) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (31) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (30) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (29) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + Activity records: + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (28) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (27) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (26) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (25) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (24) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (23) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (22) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (21) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + Activity records: + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (20) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (19) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (18) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (17) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (16) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (15) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + + Activity records: + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (14) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (13) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (12) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (11) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (10) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (9) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (8) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (7) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + Activity records: + + + + + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (6) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (5) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (4) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (3) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (2) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (1) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffd15195b38) size(0x400000) + + + + + + + + *ptr(0x0x7fdccfa00000) + + + + ptr(0x7ffd15195b30) size(0x400000) + + + + + + + + *ptr(0x0x7fdccf400000) + + + + dst(0x7fdccfa00000) src(0x658fb00) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x10de660) src(0x7fdccf400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7fdccfa00000) + + + + + + + + + + ptr(0x7fdccf400000) + + + + + + +# START (0) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + Activity records: + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) + external_id(33) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) + device_id(0) queue_id(0) + bytes(0x400000) + external_id(32) + process_id(26224) thread_id(26224) +PASSED! + Activity records: + external_id(31) + process_id(26224) thread_id(26224) + external_id(31) + process_id(26224) thread_id(26224) + device_id(0) queue_id(0) +# STOP ############################# + diff --git a/projects/roctracer/test/MatrixTranspose/MatrixTranspose_sys_hsa_trace.txt b/projects/roctracer/test/MatrixTranspose/MatrixTranspose_sys_hsa_trace.txt new file mode 100644 index 0000000000..38b348ab87 --- /dev/null +++ b/projects/roctracer/test/MatrixTranspose/MatrixTranspose_sys_hsa_trace.txt @@ -0,0 +1,7334 @@ +tool SYS/HSA test: "./test/MatrixTranspose" +ROCTracer (pid=116426): + rocTX-trace() + HSA-trace() + HSA-activity-trace() + HIP-trace() +Device name Vega 10 XT [Radeon RX Vega 64] +## Iteration (99) ################# +PASSED! +## Iteration (98) ################# +PASSED! +## Iteration (97) ################# +PASSED! +## Iteration (96) ################# +PASSED! +## Iteration (95) ################# +PASSED! +## Iteration (94) ################# +PASSED! +## Iteration (93) ################# +PASSED! +## Iteration (92) ################# +PASSED! +## Iteration (91) ################# +PASSED! +## Iteration (90) ################# +PASSED! +## Iteration (89) ################# +PASSED! +## Iteration (88) ################# +PASSED! +## Iteration (87) ################# +PASSED! +## Iteration (86) ################# +PASSED! +## Iteration (85) ################# +PASSED! +## Iteration (84) ################# +PASSED! +## Iteration (83) ################# +PASSED! +## Iteration (82) ################# +PASSED! +## Iteration (81) ################# +PASSED! +## Iteration (80) ################# +PASSED! +## Iteration (79) ################# +PASSED! +## Iteration (78) ################# +PASSED! +## Iteration (77) ################# +PASSED! +## Iteration (76) ################# +PASSED! +## Iteration (75) ################# +PASSED! +## Iteration (74) ################# +PASSED! +## Iteration (73) ################# +PASSED! +## Iteration (72) ################# +PASSED! +## Iteration (71) ################# +PASSED! +## Iteration (70) ################# +PASSED! +## Iteration (69) ################# +PASSED! +## Iteration (68) ################# +PASSED! +## Iteration (67) ################# +PASSED! +## Iteration (66) ################# +PASSED! +## Iteration (65) ################# +PASSED! +## Iteration (64) ################# +PASSED! +## Iteration (63) ################# +PASSED! +## Iteration (62) ################# +PASSED! +## Iteration (61) ################# +PASSED! +## Iteration (60) ################# +PASSED! +## Iteration (59) ################# +PASSED! +## Iteration (58) ################# +PASSED! +## Iteration (57) ################# +PASSED! +## Iteration (56) ################# +PASSED! +## Iteration (55) ################# +PASSED! +## Iteration (54) ################# +PASSED! +## Iteration (53) ################# +PASSED! +## Iteration (52) ################# +PASSED! +## Iteration (51) ################# +PASSED! +## Iteration (50) ################# +PASSED! +## Iteration (49) ################# +PASSED! +## Iteration (48) ################# +PASSED! +## Iteration (47) ################# +PASSED! +## Iteration (46) ################# +PASSED! +## Iteration (45) ################# +PASSED! +## Iteration (44) ################# +PASSED! +## Iteration (43) ################# +PASSED! +## Iteration (42) ################# +PASSED! +## Iteration (41) ################# +PASSED! +## Iteration (40) ################# +PASSED! +## Iteration (39) ################# +PASSED! +## Iteration (38) ################# +PASSED! +## Iteration (37) ################# +PASSED! +## Iteration (36) ################# +PASSED! +## Iteration (35) ################# +PASSED! +## Iteration (34) ################# +PASSED! +## Iteration (33) ################# +PASSED! +## Iteration (32) ################# +PASSED! +## Iteration (31) ################# +PASSED! +## Iteration (30) ################# +PASSED! +## Iteration (29) ################# +PASSED! +## Iteration (28) ################# +PASSED! +## Iteration (27) ################# +PASSED! +## Iteration (26) ################# +PASSED! +## Iteration (25) ################# +PASSED! +## Iteration (24) ################# +PASSED! +## Iteration (23) ################# +PASSED! +## Iteration (22) ################# +PASSED! +## Iteration (21) ################# +PASSED! +## Iteration (20) ################# +PASSED! +## Iteration (19) ################# +PASSED! +## Iteration (18) ################# +PASSED! +## Iteration (17) ################# +PASSED! +## Iteration (16) ################# +PASSED! +## Iteration (15) ################# +PASSED! +## Iteration (14) ################# +PASSED! +## Iteration (13) ################# +PASSED! +## Iteration (12) ################# +PASSED! +## Iteration (11) ################# +PASSED! +## Iteration (10) ################# +PASSED! +## Iteration (9) ################# +PASSED! +## Iteration (8) ################# +PASSED! +## Iteration (7) ################# +PASSED! +## Iteration (6) ################# +PASSED! +## Iteration (5) ################# +PASSED! +## Iteration (4) ################# +PASSED! +## Iteration (3) ################# +PASSED! +## Iteration (2) ################# +PASSED! +## Iteration (1) ################# +PASSED! +## Iteration (0) ################# +PASSED! +1822755600583836:1822755600592396 116426:116426 hipGetDeviceProperties() +1822755603137292:1822755603261543 116426:116426 hipMalloc(ptr(0x7f15f6e00000) size(0x400000)) +1822755603263063:1822755603321183 116426:116426 hipMalloc(ptr(0x7f15f6800000) size(0x400000)) +1822755603331953:1822755612493572 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822755612497492:1822755612497493 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756053165228:1822756058322441 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756058341371:1822756058341372 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756058348611:1822756062842319 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756075706002:1822756078088527 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756078090097:1822756078090098 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756078105407:1822756078127367 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756078128487:1822756078128488 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756078131817:1822756082629345 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756089169727:1822756091486222 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756091487702:1822756091487703 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756091501982:1822756091524312 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756091525612:1822756091525613 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756091528952:1822756096115831 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756102585213:1822756104861737 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756104863207:1822756104863208 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756104878057:1822756104898777 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756104900067:1822756104900068 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756104903357:1822756109424136 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756115849697:1822756118121221 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756118122771:1822756118122772 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756118137001:1822756118158682 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756118159732:1822756118159733 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756118169582:1822756122648230 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756129192922:1822756131481137 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756131482907:1822756131482908 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756131497317:1822756131527517 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756131528547:1822756131528548 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756131531817:1822756136133936 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756142559277:1822756144812022 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756144813802:1822756144813803 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756144828002:1822756144859412 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756144860642:1822756144860643 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756144863952:1822756149392670 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756155832552:1822756158128596 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756158130056:1822756158130057 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756158144806:1822756158176196 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756158177406:1822756158177407 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756158180866:1822756162648395 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756169141267:1822756171479702 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756171481192:1822756171481193 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756171496522:1822756171517892 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756171518932:1822756171518933 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756171522302:1822756176124641 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756182700813:1822756184875037 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756184876847:1822756184876848 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756184891907:1822756184914177 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756184915417:1822756184915418 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756184919077:1822756189253854 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756195697336:1822756197980300 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756197983650:1822756197983651 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756197998930:1822756198020930 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756198021960:1822756198021961 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756198025511:1822756202490389 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756208934610:1822756211236435 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756211237895:1822756211237896 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756211253375:1822756211274535 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756211275535:1822756211275536 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756211278895:1822756215906094 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756222572007:1822756224696150 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756224697740:1822756224697741 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756224712410:1822756224734510 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756224735951:1822756224735952 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756224739551:1822756229250169 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756235652210:1822756237948645 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756237950385:1822756237950386 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756237965145:1822756237987205 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756237988225:1822756237988226 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756237991545:1822756242475753 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756248912514:1822756251200179 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756251201669:1822756251201670 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756251216759:1822756251238619 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756251239819:1822756251239820 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756251243189:1822756255699598 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756262255949:1822756264548564 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756264550074:1822756264550075 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756264565454:1822756264595584 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756264600734:1822756264600735 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756264604334:1822756269112533 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756275609764:1822756277895409 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756277897079:1822756277897080 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756277912129:1822756277944439 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756277945489:1822756277945490 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756277948819:1822756282415058 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756288851438:1822756291120613 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756291122513:1822756291122514 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756291149593:1822756291175863 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756291176943:1822756291176944 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756291180203:1822756295645172 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756302171213:1822756304478118 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756304479708:1822756304479709 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756304494178:1822756304515918 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756304517068:1822756304517069 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756304520898:1822756309107888 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756315566009:1822756317872983 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756317874743:1822756317874744 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756317890003:1822756317911784 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756317912824:1822756317912825 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756317916174:1822756322439043 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756328910813:1822756331215508 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756331217458:1822756331217459 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756331231968:1822756331253648 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756331254698:1822756331254699 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756331257828:1822756335753407 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756342390220:1822756344858365 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756344860215:1822756344860216 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756344874965:1822756344896065 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756344897095:1822756344897096 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756344900925:1822756349401664 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756355860455:1822756358149420 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756358150960:1822756358150961 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756358165560:1822756358187320 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756358188350:1822756358188351 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756358191690:1822756362649129 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756369152500:1822756371494465 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756371496295:1822756371496296 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756371510515:1822756371530565 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756371531595:1822756371531596 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756371534665:1822756376133424 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756382612576:1822756384880270 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756384881870:1822756384881871 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756384896410:1822756384917200 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756384918210:1822756384918211 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756384921530:1822756389416939 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756395870000:1822756398160975 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756398162565:1822756398162566 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756398177805:1822756398213265 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756398214305:1822756398214306 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756398217745:1822756402685063 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756409203735:1822756411482520 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756411484130:1822756411484131 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756411509660:1822756411532540 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756411533560:1822756411533561 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756411537360:1822756416122419 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756422623011:1822756424903275 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756424904885:1822756424904886 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756424919835:1822756424942165 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756424943185:1822756424943186 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756424957215:1822756429406063 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756435805575:1822756438093209 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756438094729:1822756438094730 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756438109529:1822756438130739 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756438131789:1822756438131790 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756438134930:1822756442604798 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756449043639:1822756451481194 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756451482654:1822756451482655 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756451496875:1822756451518355 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756451519375:1822756451519376 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756451522695:1822756456118813 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756462615835:1822756464935750 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756464937590:1822756464937591 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756464952410:1822756464973620 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756464974650:1822756464974651 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756464978310:1822756469482009 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756475916750:1822756478215505 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756478217155:1822756478217156 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756478232365:1822756478254495 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756478255515:1822756478255516 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756478260725:1822756482717973 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756489224355:1822756491496559 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756491498149:1822756491498150 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756491513269:1822756491535129 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756491536169:1822756491536170 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756491539309:1822756496133179 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756502617380:1822756504960795 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756504962405:1822756504962406 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756504976805:1822756504996475 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756504997495:1822756504997496 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756505000715:1822756509486804 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756515924274:1822756518226989 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756518228529:1822756518228530 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756518253389:1822756518275080 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756518276100:1822756518276101 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756518279570:1822756522775518 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756529296900:1822756531622655 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756531624595:1822756531624596 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756531640655:1822756531671345 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756531672395:1822756531672396 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756531675905:1822756536172184 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756542624634:1822756544883439 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756544885089:1822756544885090 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756544900779:1822756544929679 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756544930729:1822756544930730 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756544934009:1822756549407198 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756555851479:1822756558146433 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756558154803:1822756558154804 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756558169663:1822756558192244 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756558193264:1822756558193265 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756558198284:1822756562636952 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756569145383:1822756571486988 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756571488778:1822756571488779 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756571504158:1822756571525808 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756571526878:1822756571526879 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756571530299:1822756576128868 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756582616299:1822756584938464 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756584940074:1822756584940075 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756584956164:1822756584979454 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756584980484:1822756584980485 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756584983974:1822756589472733 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756595920014:1822756598235618 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756598237198:1822756598237199 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756598252469:1822756598273209 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756598274249:1822756598274250 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756598277709:1822756602770158 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756609299049:1822756611466343 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756611467883:1822756611467884 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756611483103:1822756611504773 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756611505783:1822756611505784 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756611509313:1822756616132323 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756622616574:1822756624894869 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756624896249:1822756624896250 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756624910669:1822756624932369 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756624941849:1822756624941850 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756624945649:1822756629406637 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756635848028:1822756638138283 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756638140063:1822756638140064 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756638154493:1822756638175193 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756638176473:1822756638176474 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756638179643:1822756642665362 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756649186373:1822756651490688 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756651492298:1822756651492299 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756651514798:1822756651536438 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756651537558:1822756651537559 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756651541098:1822756656137197 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756662626069:1822756664908903 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756664910573:1822756664910574 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756664925194:1822756664956644 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756664957724:1822756664957725 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756664961214:1822756669415432 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756675858963:1822756678142727 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756678144287:1822756678144288 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756678160038:1822756678189638 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756678190678:1822756678190679 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756678194638:1822756682710676 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756689230518:1822756691505853 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756691507323:1822756691507324 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756691522913:1822756691545783 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756691546893:1822756691546894 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756691550693:1822756696120502 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756702630054:1822756704943748 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756704945428:1822756704945429 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756704960728:1822756704983559 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756704984589:1822756704984590 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756704988559:1822756709440857 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756715893578:1822756718207233 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756718208803:1822756718208804 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756718223753:1822756718246653 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756718247683:1822756718247684 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756718251113:1822756722741151 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756729273233:1822756731597148 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756731598688:1822756731598689 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756731613598:1822756731635518 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756731636568:1822756731636569 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756731640028:1822756736179837 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756742647508:1822756744926793 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756744928633:1822756744928634 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756744951763:1822756744973003 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756744974063:1822756744974064 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756744977513:1822756749465282 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756755866232:1822756758145827 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756758147437:1822756758147438 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756758162007:1822756758184357 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756758185377:1822756758185378 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756758188967:1822756762710866 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756769239158:1822756771516892 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756771518432:1822756771518433 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756771536932:1822756771558442 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756771559462:1822756771559463 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756771563172:1822756776138292 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756782623163:1822756784907137 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756784908677:1822756784908678 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756784932258:1822756784953098 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756784954108:1822756784954109 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756784957658:1822756789426336 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756795870157:1822756798139672 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756798141272:1822756798141273 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756798156212:1822756798188122 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756798189182:1822756798189183 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756798192822:1822756802664301 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756809172682:1822756811495407 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756811497017:1822756811497018 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756811512747:1822756811544017 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756811545057:1822756811545058 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756811548467:1822756816123556 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756822801809:1822756825067123 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756825069003:1822756825069004 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756825083383:1822756825106443 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756825107513:1822756825107514 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756825111163:1822756829594282 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756836043073:1822756838489348 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756838490878:1822756838490879 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756838506629:1822756838529339 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756838530389:1822756838530390 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756838536339:1822756843117688 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756849597819:1822756851904454 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756851906284:1822756851906285 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756851921594:1822756851943744 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756851944794:1822756851944795 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756851948634:1822756856432773 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756862870184:1822756865146458 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756865148348:1822756865148349 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756865162678:1822756865184238 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756865185268:1822756865185269 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756865188768:1822756869717157 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756876234269:1822756878502283 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756878503883:1822756878503884 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756878518613:1822756878540664 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756878541914:1822756878541915 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756878545134:1822756883115323 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756889597574:1822756891870778 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756891872388:1822756891872389 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756891886738:1822756891907738 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756891908938:1822756891908939 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756891912218:1822756896439708 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756903017390:1822756905309874 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756905311494:1822756905311495 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756905326004:1822756905347604 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756905348785:1822756905348786 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756905352035:1822756909844793 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756916324334:1822756918649929 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756918653659:1822756918653660 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756918668219:1822756918694589 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756918695609:1822756918695610 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756918699129:1822756923216618 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756929680439:1822756931969004 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756931970654:1822756931970655 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756931985954:1822756932032325 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756932033415:1822756932033416 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756932037015:1822756936514343 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756942929814:1822756945063257 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756945064847:1822756945064848 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756945079387:1822756945110788 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756945111818:1822756945111819 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756945115148:1822756949592126 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756956036087:1822756958304422 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756958306022:1822756958306023 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756958320622:1822756958343592 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756958344642:1822756958344643 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756958348242:1822756962809780 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756969310162:1822756971623357 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756971625107:1822756971625108 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756971642617:1822756971664637 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756971665647:1822756971665648 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756971669227:1822756976162865 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756982623277:1822756984886411 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756984888221:1822756984888222 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756984903231:1822756984924181 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756984927741:1822756984927742 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756984931021:1822756989414349 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822756995839491:1822756998143566 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822756998145226:1822756998145227 116426:116426 MARK(name(before HIP LaunchKernel)) +1822756998160536:1822756998182246 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822756998183286:1822756998183287 116426:116426 MARK(name(after HIP LaunchKernel)) +1822756998186696:1822757002652204 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757009164976:1822757011504701 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757011506291:1822757011506292 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757011521491:1822757011542751 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757011543781:1822757011543782 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757011547231:1822757016133260 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757022595401:1822757024868116 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757024869646:1822757024869647 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757024884006:1822757024904746 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757024905776:1822757024905777 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757024909096:1822757029417434 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757035857426:1822757038153230 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757038154770:1822757038154771 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757038169890:1822757038191320 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757038192350:1822757038192351 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757038195600:1822757042692059 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757049217611:1822757051517045 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757051518535:1822757051518536 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757051534055:1822757051563236 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757051564266:1822757051564267 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757051567596:1822757056133834 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757062623316:1822757064949271 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757064951161:1822757064951162 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757064965531:1822757064995501 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757064996531:1822757064996532 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757065000011:1822757069466290 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757075876940:1822757078143465 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757078145045:1822757078145046 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757078160595:1822757078192585 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757078193635:1822757078193636 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757078197025:1822757082649233 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757089064314:1822757091495340 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757091496900:1822757091496901 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757091512150:1822757091533660 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757091534750:1822757091534751 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757091538010:1822757096140050 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757102636811:1822757104930745 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757104932205:1822757104932206 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757104947175:1822757104969876 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757104970916:1822757104970917 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757104975026:1822757109465584 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757115895385:1822757118198910 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757118200500:1822757118200501 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757118215420:1822757118237410 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757118238470:1822757118238471 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757118241640:1822757122735479 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757129251740:1822757131534175 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757131535695:1822757131535696 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757131551645:1822757131572875 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757131573925:1822757131573926 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757131577395:1822757136137594 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757142628805:1822757144945570 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757144947120:1822757144947121 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757144961670:1822757144982660 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757144983690:1822757144983691 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757144987120:1822757149451469 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757155997020:1822757158312535 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757158314305:1822757158314306 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757158328965:1822757158350575 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757158351605:1822757158351606 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757158355195:1822757162886614 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757169385125:1822757171701610 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757171703420:1822757171703421 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757171717930:1822757171739001 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757171740011:1822757171740012 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757171743351:1822757176315180 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757182724111:1822757184957875 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757184959425:1822757184959426 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757184974655:1822757185006065 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757185007105:1822757185007106 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757185010415:1822757189497564 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757195934734:1822757198252839 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757198254529:1822757198254530 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757198271129:1822757198295140 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757198296720:1822757198296721 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757198301840:1822757202773008 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757209272950:1822757211537104 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757211538744:1822757211538745 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757211553424:1822757211574914 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757211576014:1822757211576015 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757211589224:1822757216144953 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757222623005:1822757224910759 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757224912349:1822757224912350 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757224927790:1822757224949810 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757224950900:1822757224950901 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757224954720:1822757229431278 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757235884759:1822757238186904 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757238188454:1822757238188455 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757238203054:1822757238224374 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757238225634:1822757238225635 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757238229684:1822757242685852 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757249238724:1822757251541669 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757251543189:1822757251543190 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757251558699:1822757251580449 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757251581729:1822757251581730 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757251585029:1822757256133718 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757262629670:1822757264913374 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757264914984:1822757264914985 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757264930504:1822757264953284 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757264954384:1822757264954385 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757264957734:1822757269422413 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757275859194:1822757278152778 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757278162068:1822757278162069 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757278177868:1822757278198638 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757278199688:1822757278199689 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757278202988:1822757282674327 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757289209029:1822757291506964 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757291508534:1822757291508535 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757291522734:1822757291543714 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757291544734:1822757291544735 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757291547894:1822757296141133 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757302620474:1822757304963489 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757304965309:1822757304965310 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757304980299:1822757305001459 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757305002479:1822757305002480 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757305005779:1822757309495618 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757315913109:1822757318192753 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757318194393:1822757318194394 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757318209814:1822757318242544 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757318243694:1822757318243695 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757318247724:1822757322734822 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757329258714:1822757331527788 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757331529328:1822757331529329 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757331544288:1822757331574119 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757331575169:1822757331575170 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757331578509:1822757336151528 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757342640339:1822757344918404 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757344920164:1822757344920165 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757344942864:1822757344965354 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757344966554:1822757344966555 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757344975354:1822757349453602 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757355903053:1822757358215338 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757358216948:1822757358216949 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757358232668:1822757358254368 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757358255418:1822757358255419 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757358258608:1822757362733447 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757369251168:1822757371551123 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757371552733:1822757371552734 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757371567043:1822757371588913 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757371590083:1822757371590084 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757371593943:1822757376142303 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757382602693:1822757384875598 116426:116426 hipMemcpy(dst(0x7f15f6e00000) src(0x2124940) size(0x400000) kind(1)) +1822757384877098:1822757384877099 116426:116426 MARK(name(before HIP LaunchKernel)) +1822757384891168:1822757384912708 116426:116426 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822757384913748:1822757384913749 116426:116426 MARK(name(after HIP LaunchKernel)) +1822757384916928:1822757389425657 116426:116426 hipMemcpy(dst(0x2524950) src(0x7f15f6800000) size(0x400000) kind(2)) +1822757395861378:1822757395971968 116426:116426 hipFree(ptr(0x7f15f6e00000)) +1822757395974058:1822757395992678 116426:116426 hipFree(ptr(0x7f15f6800000)) +1822755595358383:1822755595361503 116426:116426 hsa_amd_profiling_async_copy_enable() = 0 +1822755595485264:1822755595485714 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6eec64) = 0 +1822755595486744:1822755595487264 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6eec64) = 0 +1822755595486744:1822755595488004 116426:116426 hsa_iterate_agents(1, 0x1d47fe8) = 0 +1822755595488874:1822755595489204 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6eee6c) = 0 +1822755595488874:1822755595489644 116426:116426 hsa_iterate_agents(1, 0x1d47fe0) = 1 +1822755595495334:1822755595495694 116426:116426 hsa_agent_get_info(, 4, 0x7fff0b6eeb70) = 0 +1822755595496234:1822755595499514 116426:116426 hsa_agent_get_info(, 0, 0x7fff0b6eeb30) = 0 +1822755595500014:1822755595500344 116426:116426 hsa_agent_get_info(, 16, 0x1d3fdc8) = 0 +1822755595519244:1822755595519634 116426:116426 hsa_agent_get_info(, 21, 0x1d3fd60) = 0 +1822755595520084:1822755595520404 116426:116426 hsa_agent_get_info(, 22, 0x1d3fd62) = 0 +1822755595520844:1822755595521214 116426:116426 hsa_agent_get_info(, 14, 0x1d3fc00) = 0 +1822755595522934:1822755595523454 116426:116426 hsa_amd_profiling_async_copy_enable() = 0 +1822755595527194:1822755595528094 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee80c) = 0 +1822755595528614:1822755595528944 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee80c) = 0 +1822755595529394:1822755595529724 116426:116426 hsa_amd_memory_pool_get_info(, 2, 0x7fff0b6ee810) = 0 +1822755595529394:1822755595530164 116426:116426 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d3fbf8) = 1 +1822755595530994:1822755595531324 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee664) = 0 +1822755595531784:1822755595532124 116426:116426 hsa_amd_memory_pool_get_info(, 1, 0x7fff0b6ee654) = 0 +1822755595532564:1822755595532884 116426:116426 hsa_amd_memory_pool_get_info(, 2, 0x7fff0b6ee658) = 0 +1822755595533444:1822755595533774 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee664) = 0 +1822755595533444:1822755595534234 116426:116426 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d3fcb8) = 0 +1822755595535054:1822755595535384 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee81c) = 0 +1822755595535824:1822755595536154 116426:116426 hsa_amd_memory_pool_get_info(, 1, 0x7fff0b6ee68c) = 0 +1822755595536594:1822755595536914 116426:116426 hsa_amd_memory_pool_get_info(, 2, 0x7fff0b6ee680) = 0 +1822755595537714:1822755595538054 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee81c) = 0 +1822755595538484:1822755595538804 116426:116426 hsa_amd_memory_pool_get_info(, 1, 0x7fff0b6ee68c) = 0 +1822755595539244:1822755595539564 116426:116426 hsa_amd_memory_pool_get_info(, 2, 0x7fff0b6ee680) = 0 +1822755595539244:1822755595540024 116426:116426 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d3fcb8) = 0 +1822755595546934:1822755595687625 116426:116426 hsa_amd_memory_pool_allocate(, , , 0x7fff0b6ee908) = 0 +1822755595689915:1822755595789026 116426:116426 hsa_amd_agents_allow_access(, 0x1d3fbf0, 0, 0x7f1624500000) = 0 +1822755595798136:1822755595798566 116426:116426 hsa_agent_get_info(, 8, 0x1d3fd14) = 0 +1822755595799036:1822755595799366 116426:116426 hsa_agent_get_info(, 7, 0x1d3fd18) = 0 +1822755595799806:1822755595800136 116426:116426 hsa_agent_get_info(, 4, 0x7fff0b6eed70) = 0 +1822755595803086:1822755595803486 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee6cc) = 0 +1822755595804196:1822755595804526 116426:116426 hsa_amd_memory_pool_get_info(, 1, 0x7fff0b6ee6c8) = 0 +1822755595805066:1822755595805406 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee6cc) = 0 +1822755595805886:1822755595806206 116426:116426 hsa_amd_memory_pool_get_info(, 1, 0x7fff0b6ee6c8) = 0 +1822755595805886:1822755595806726 116426:116426 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fff0b6ee900) = 0 +1822755595807576:1822755595807926 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6ee6f4) = 0 +1822755595808406:1822755595808746 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6ee6f4) = 0 +1822755595808406:1822755595809256 116426:116426 hsa_iterate_agents(1, 0x7fff0b6ee860) = 0 +1822755595809916:1822755596784722 116426:116426 hsa_amd_memory_pool_allocate(, , , 0x1d40140) = 0 +1822755596786072:1822755596928003 116426:116426 hsa_amd_agents_allow_access(, 0x1d40220, 0, 0x7f1608a00000) = 0 +1822755596931973:1822755596936723 116426:116426 hsa_signal_create(0, , 0, 0x1d40160) = 0 +1822755596937143:1822755596938223 116426:116426 hsa_signal_create(0, , 0, 0x1d40180) = 0 +1822755596938973:1822755597869129 116426:116426 hsa_amd_memory_pool_allocate(, , , 0x1d40148) = 0 +1822755597870399:1822755598010980 116426:116426 hsa_amd_agents_allow_access(, 0x1d40220, 0, 0x7f1608400000) = 0 +1822755598012150:1822755598014460 116426:116426 hsa_signal_create(0, , 0, 0x1d40168) = 0 +1822755598014850:1822755598015820 116426:116426 hsa_signal_create(0, , 0, 0x1d40188) = 0 +1822755598017670:1822755598018440 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee6cc) = 0 +1822755598018880:1822755598019160 116426:116426 hsa_amd_memory_pool_get_info(, 1, 0x7fff0b6ee6c8) = 0 +1822755598019620:1822755598019900 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee6cc) = 0 +1822755598020320:1822755598020600 116426:116426 hsa_amd_memory_pool_get_info(, 1, 0x7fff0b6ee6c8) = 0 +1822755598020320:1822755598021040 116426:116426 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fff0b6ee900) = 0 +1822755598022570:1822755598023250 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6ee6f4) = 0 +1822755598023760:1822755598024160 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6ee6f4) = 0 +1822755598023760:1822755598029930 116426:116426 hsa_iterate_agents(1, 0x7fff0b6ee860) = 0 +1822755598030980:1822755598958895 116426:116426 hsa_amd_memory_pool_allocate(, , , 0x1d40790) = 0 +1822755598959835:1822755599113766 116426:116426 hsa_amd_agents_allow_access(, 0x1d40340, 0, 0x7f15f7a00000) = 0 +1822755599114776:1822755599117096 116426:116426 hsa_signal_create(0, , 0, 0x1d407b0) = 0 +1822755599117496:1822755599118236 116426:116426 hsa_signal_create(0, , 0, 0x1d407d0) = 0 +1822755599118676:1822755600101853 116426:116426 hsa_amd_memory_pool_allocate(, , , 0x1d40798) = 0 +1822755600102873:1822755600244073 116426:116426 hsa_amd_agents_allow_access(, 0x1d40340, 0, 0x7f15f7400000) = 0 +1822755600245353:1822755600247673 116426:116426 hsa_signal_create(0, , 0, 0x1d407b8) = 0 +1822755600248073:1822755600248843 116426:116426 hsa_signal_create(0, , 0, 0x1d407d8) = 0 +1822755600266134:1822755600334494 116426:116426 hsa_amd_memory_lock(0x7f1623a5c6f0, , 0x1d271f0, 1, 0x7f1623a5c6f8) = 0 +1822755600350804:1822755600351444 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6ef1a4) = 0 +1822755600350804:1822755600351864 116426:116426 hsa_iterate_agents(1, 0x7f1622e24f08) = 1 +1822755600354564:1822755600355144 116426:116426 hsa_agent_get_info(, 40962, 0x1d40ed8) = 0 +1822755600356884:1822755600357174 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6eefbc) = 0 +1822755600357664:1822755600357964 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6eefbc) = 0 +1822755600357664:1822755600358464 116426:116426 hsa_iterate_agents(1, 0x7fff0b6ef10c) = 0 +1822755600358854:1822755600359204 116426:116426 hsa_agent_get_info(, 40969, 0x1d40ee0) = 0 +1822755600359594:1822755600373324 116426:116426 hsa_agent_get_info(, 0, 0x7fff0b6ef180) = 0 +1822755600375894:1822755600376204 116426:116426 hsa_agent_get_info(, 16, 0x7fff0b6ef13c) = 0 +1822755600376594:1822755600376894 116426:116426 hsa_agent_get_info(, 6, 0x1d40ff4) = 0 +1822755600377274:1822755600377574 116426:116426 hsa_agent_get_info(, 8, 0x1d40ff8) = 0 +1822755600377964:1822755600378254 116426:116426 hsa_agent_get_info(, 7, 0x7fff0b6ef0fe) = 0 +1822755600378644:1822755600378934 116426:116426 hsa_agent_get_info(, 9, 0x7fff0b6ef120) = 0 +1822755600379314:1822755600379614 116426:116426 hsa_agent_get_info(, 40963, 0x1d41014) = 0 +1822755600381494:1822755600381794 116426:116426 hsa_system_get_info(3, 0x7fff0b6ef130) = 0 +1822755600382184:1822755600382484 116426:116426 hsa_agent_get_info(, 40966, 0x7fff0b6ef0fc) = 0 +1822755600382874:1822755600383174 116426:116426 hsa_agent_get_info(, 40975, 0x1d4104c) = 0 +1822755600383564:1822755600383864 116426:116426 hsa_agent_get_info(, 40962, 0x1d41030) = 0 +1822755600384254:1822755600384554 116426:116426 hsa_agent_get_info(, 18, 0x7fff0b6ef170) = 0 +1822755600387574:1822755600387884 116426:116426 hsa_agent_get_info(, 40970, 0x7fff0b6ef108) = 0 +1822755600391664:1822755600392454 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6eef7c) = 0 +1822755600395074:1822755600395384 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6eef7c) = 0 +1822755600396414:1822755600396724 116426:116426 hsa_amd_memory_pool_get_info(, 2, 0x1d40fe8) = 0 +1822755600396414:1822755600397134 116426:116426 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d40ee0) = 0 +1822755600428375:1822755600429865 116426:116426 hsa_signal_create(1, , 0x7fff0b6eee38, 0x1d441e8) = 0 +1822755600441295:1822755600442045 116426:116426 hsa_region_get_info(, 2, 0x1d40fe0) = 0 +1822755600442465:1822755600442845 116426:116426 hsa_region_get_info(, 40963, 0x1d41018) = 0 +1822755600443235:1822755600443525 116426:116426 hsa_region_get_info(, 40962, 0x1d4101c) = 0 +1822755600443925:1822755600444225 116426:116426 hsa_agent_get_info(, 4, 0x7fff0b6ef104) = 0 +1822755600444615:1822755600510135 116426:116426 hsa_agent_get_info(, 12288, 0x1d41078) = 0 +1822755600510585:1822755600510975 116426:116426 hsa_agent_get_info(, 12291, 0x1d4107c) = 0 +1822755600511375:1822755600511855 116426:116426 hsa_agent_get_info(, 12295, 0x1d41084) = 0 +1822755600512255:1822755600512565 116426:116426 hsa_agent_get_info(, 40974, 0x7fff0b6ef160) = 0 +1822755600512955:1822755600513255 116426:116426 hsa_agent_get_info(, 19, 0x7fff0b6ef118) = 0 +1822755600515525:1822755600548945 116426:116426 hsa_isa_get_info_alt(, 0, 0x7fff0b6ef110) = 0 +1822755600552385:1822755600556655 116426:116426 hsa_isa_get_info_alt(, 1, 0x1d3fff0) = 0 +1822755600579446:1822755600579736 116426:116426 hsa_system_get_info(3, 0x7fff0b6ef540) = 0 +1822755600580306:1822755600580846 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef540) = 0 +1822755600585306:1822755600585846 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef540) = 0 +1822755603136252:1822755603136832 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef540) = 0 +1822755603151762:1822755603255863 116426:116426 hsa_amd_memory_pool_allocate(, , , 0x7fff0b6ef298) = 0 +1822755603260423:1822755603260963 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef540) = 0 +1822755603262153:1822755603262683 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef540) = 0 +1822755603263623:1822755603318863 116426:116426 hsa_amd_memory_pool_allocate(, , , 0x7fff0b6ef298) = 0 +1822755603319973:1822755603320513 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef540) = 0 +1822755603330993:1822755603331533 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822755603351473:1822755603352003 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822755603354383:1822755603354913 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822755603360623:1822755603361493 116426:116426 hsa_signal_store_screlease(, 0) = void +1822755603361913:1822755603362363 116426:116426 hsa_signal_store_screlease(, 0) = void +1822755603364343:1822755603365234 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822755603887397:1822755603887807 116426:116426 hsa_signal_store_screlease(, 1) = void +1822755603994958:1822755603995478 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6ee92c) = 0 +1822755603996628:1822755603997578 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee7c8) = 0 +1822755603998028:1822755603998368 116426:116426 hsa_amd_memory_pool_get_info(, 1, 0x7fff0b6ee7cc) = 0 +1822755603998828:1822755603999148 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee7c8) = 0 +1822755603999578:1822755603999908 116426:116426 hsa_amd_memory_pool_get_info(, 1, 0x7fff0b6ee7cc) = 0 +1822755603999578:1822755604039948 116426:116426 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d23670) = 1 +1822755604040958:1822755604041288 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee7c8) = 0 +1822755604041738:1822755604042068 116426:116426 hsa_amd_memory_pool_get_info(, 1, 0x7fff0b6ee7cc) = 0 +1822755604041738:1822755604042508 116426:116426 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d23680) = 1 +1822755604043308:1822755604044238 116426:116426 hsa_agent_get_info(, 17, 0x7fff0b6ee92c) = 0 +1822755604044768:1822755604047898 116426:116426 hsa_agent_get_info(, 0, 0x1d23764) = 0 +1822755604050938:1822755604051288 116426:116426 hsa_agent_get_info(, 6, 0x1d237a4) = 0 +1822755604051758:1822755604052108 116426:116426 hsa_agent_get_info(, 14, 0x1d237a8) = 0 +1822755604052568:1822755604052898 116426:116426 hsa_agent_get_info(, 4, 0x1d237ac) = 0 +1822755604053348:1822755604053698 116426:116426 hsa_agent_get_info(, 40962, 0x1d237c8) = 0 +1822755604054138:1822755604054468 116426:116426 hsa_agent_get_info(, 40970, 0x1d237cc) = 0 +1822755604054908:1822755604055248 116426:116426 hsa_agent_get_info(, 40971, 0x1d237d0) = 0 +1822755604055698:1822755604056028 116426:116426 hsa_agent_get_info(, 40972, 0x1d237d4) = 0 +1822755604056478:1822755604056808 116426:116426 hsa_agent_get_info(, 40973, 0x1d237d8) = 0 +1822755604057898:1822755604058228 116426:116426 hsa_amd_memory_pool_get_info(, 0, 0x7fff0b6ee7b8) = 0 +1822755604058668:1822755604058998 116426:116426 hsa_amd_memory_pool_get_info(, 1, 0x7fff0b6ee7bc) = 0 +1822755604058668:1822755604059448 116426:116426 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d237b8) = 1 +1822755604058668:1822755604060328 116426:116426 hsa_iterate_agents(1, 0x1d234a0) = 0 +1822755604061138:1822755604216809 116426:116426 hsa_system_get_major_extension_table(, , , 0x1d23538) = 0 +1822755604219099:1822755604219499 116426:116426 hsa_system_get_major_extension_table(, , , 0x1d23588) = 0 +1822755604220039:1822755604220359 116426:116426 hsa_system_get_info(3, 0x7fff0b6eeaf8) = 0 +1822755604221009:1822755604221619 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822755604222179:1822755604225589 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16050) = 0 +1822755604226269:1822755604232079 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16010) = 0 +1822755604232729:1822755610722731 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822755612460802:1822755612469442 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822755612473262:1822755612474302 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822755612475552:1822755612476712 116426:116430 hsa_signal_load_relaxed() = 1 +1822755610726841:1822755612479372 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822755612477602:1822755612480402 116426:116430 hsa_signal_store_screlease(, 0) = void +1822755612480902:1822755612481532 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822755612482272:1822755612483442 116426:116430 hsa_signal_destroy() = 0 +1822755612491192:1822755612491812 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822755769460962:1822755769463222 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755769691583:1822755769692163 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755773380166:1822755773381976 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755773385896:1822755773386876 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755773388946:1822755773389586 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755773391656:1822755773392496 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755773451617:1822755773452147 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755773453917:1822755773454387 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755773456337:1822755773456867 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755773458627:1822755773459227 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755773517217:1822755773517667 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755773520197:1822755773520717 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755773523267:1822755773523717 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755773526307:1822755773526957 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755773591938:1822755773592458 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755773594388:1822755773594898 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755773596958:1822755773597468 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755773599218:1822755773599738 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755773656528:1822755773657378 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755773659798:1822755773660248 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755773663058:1822755773663578 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755773665958:1822755773666408 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755773723538:1822755773724058 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755773726038:1822755773726558 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755773728928:1822755773729448 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755773731288:1822755773731818 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755773788459:1822755773788979 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755773791399:1822755773791849 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755773793919:1822755773794509 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755773796379:1822755773796919 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755773854079:1822755773854529 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755773856679:1822755773857279 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755773859379:1822755773859849 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755773861759:1822755773862219 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755773918750:1822755773919270 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755773921640:1822755773922160 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755773924800:1822755773925320 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755773927600:1822755773928290 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755774109351:1822755774109931 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755774113151:1822755774113661 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755774116961:1822755774117571 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755774121221:1822755774121771 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755774180341:1822755774180801 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755774183991:1822755774184461 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755774186361:1822755774186821 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755774188481:1822755774188991 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755774246022:1822755774246712 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755774248632:1822755774249082 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755774251092:1822755774251612 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755774253622:1822755774254222 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755774349252:1822755774349782 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755774352082:1822755774352602 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755774354782:1822755774355242 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755774357492:1822755774357992 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755774413483:1822755774414003 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755774415713:1822755774416223 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755774418393:1822755774419063 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755774420853:1822755774421303 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755774497853:1822755774498363 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755774500483:1822755774500993 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755774503083:1822755774503593 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755774505773:1822755774506223 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755774599154:1822755774599684 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755774601594:1822755774602044 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755774604404:1822755774605004 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755774606914:1822755774607424 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755774699285:1822755774699745 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755774702195:1822755774702635 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755774705165:1822755774705685 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755774708625:1822755774709145 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755774801965:1822755774802435 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755774806985:1822755774807505 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755774809575:1822755774810105 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755774812415:1822755774812925 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755774902276:1822755774902886 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755774904616:1822755774905226 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755774907186:1822755774907726 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755774909546:1822755774910006 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755774998947:1822755774999417 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff0b6ef400) = 0 +1822755775001497:1822755775002097 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff0b6ef400) = 0 +1822755775003847:1822755775004307 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff0b6ef400) = 0 +1822755775006097:1822755775006617 116426:116426 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff0b6ef400) = 0 +1822755867532726:1822755867545746 116426:116426 hsa_executable_create_alt(1, 0, +1822756011608523:1822756011612443 116426:116426 hsa_code_object_reader_create_from_memory(0x34e0180, , 0x7282e70) = 0 +1822756011615253:1822756011999356 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756012024696:1822756012085186 116426:116426 hsa_executable_freeze(, +1822756012095196:1822756012096916 116426:116426 hsa_executable_create_alt(1, 0, +1822756012109906:1822756012110286 116426:116426 hsa_code_object_reader_create_from_memory(0x34e16f0, , 0x729ab40) = 0 +1822756012110716:1822756012245367 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756012246217:1822756012289787 116426:116426 hsa_executable_freeze(, +1822756012295908:1822756012296758 116426:116426 hsa_executable_create_alt(1, 0, +1822756012307408:1822756012307748 116426:116426 hsa_code_object_reader_create_from_memory(0x34e2c60, , 0x72adf10) = 0 +1822756012308178:1822756012428938 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756012429708:1822756012469819 116426:116426 hsa_executable_freeze(, +1822756012475549:1822756012476309 116426:116426 hsa_executable_create_alt(1, 0, +1822756012486749:1822756012487079 116426:116426 hsa_code_object_reader_create_from_memory(0x34e4640, , 0x72c9030) = 0 +1822756012487529:1822756012607010 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756012607830:1822756012647650 116426:116426 hsa_executable_freeze(, +1822756012653160:1822756012653830 116426:116426 hsa_executable_create_alt(1, 0, +1822756012666390:1822756012666770 116426:116426 hsa_code_object_reader_create_from_memory(0x34e5fa0, , 0x72e4550) = 0 +1822756012667220:1822756012785021 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756012785861:1822756012826071 116426:116426 hsa_executable_freeze(, +1822756012831871:1822756012832661 116426:116426 hsa_executable_create_alt(1, 0, +1822756012843171:1822756012843521 116426:116426 hsa_code_object_reader_create_from_memory(0x3497810, , 0x72fc550) = 0 +1822756012843971:1822756012965772 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756012966522:1822756013005422 116426:116426 hsa_executable_freeze(, +1822756013011112:1822756013011902 116426:116426 hsa_executable_create_alt(1, 0, +1822756013021982:1822756013022342 116426:116426 hsa_code_object_reader_create_from_memory(0x3498d80, , 0x7310230) = 0 +1822756013022782:1822756013141913 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756013142733:1822756013182403 116426:116426 hsa_executable_freeze(, +1822756013187983:1822756013188743 116426:116426 hsa_executable_create_alt(1, 0, +1822756013198493:1822756013198923 116426:116426 hsa_code_object_reader_create_from_memory(0x349a2f0, , 0x7321870) = 0 +1822756013199363:1822756013318164 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756013318904:1822756013358204 116426:116426 hsa_executable_freeze(, +1822756013363584:1822756013364464 116426:116426 hsa_executable_create_alt(1, 0, +1822756013374654:1822756013375004 116426:116426 hsa_code_object_reader_create_from_memory(0x349b860, , 0x73365c0) = 0 +1822756013375444:1822756013492385 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756013493145:1822756013532365 116426:116426 hsa_executable_freeze(, +1822756013538175:1822756013538775 116426:116426 hsa_executable_create_alt(1, 0, +1822756013553436:1822756013553826 116426:116426 hsa_code_object_reader_create_from_memory(0x34ac500, , 0x7349310) = 0 +1822756013554286:1822756013689616 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756013690356:1822756013732407 116426:116426 hsa_executable_freeze(, +1822756013738327:1822756013739097 116426:116426 hsa_executable_create_alt(1, 0, +1822756013749957:1822756013750297 116426:116426 hsa_code_object_reader_create_from_memory(0x349e340, , 0x735cb10) = 0 +1822756013750727:1822756013866888 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756013867628:1822756013908168 116426:116426 hsa_executable_freeze(, +1822756013913698:1822756013914568 116426:116426 hsa_executable_create_alt(1, 0, +1822756013924528:1822756013924928 116426:116426 hsa_code_object_reader_create_from_memory(0x349f8b0, , 0x736c6d0) = 0 +1822756013927188:1822756014043729 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756014044489:1822756014085129 116426:116426 hsa_executable_freeze(, +1822756014090889:1822756014091659 116426:116426 hsa_executable_create_alt(1, 0, +1822756014103259:1822756014103619 116426:116426 hsa_code_object_reader_create_from_memory(0x34a5960, , 0x737e270) = 0 +1822756014104069:1822756014223310 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756014224030:1822756014263040 116426:116426 hsa_executable_freeze(, +1822756014268780:1822756014269620 116426:116426 hsa_executable_create_alt(1, 0, +1822756014280020:1822756014280370 116426:116426 hsa_code_object_reader_create_from_memory(0x34a9470, , 0x7399d50) = 0 +1822756014280820:1822756014397001 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756014397731:1822756014437811 116426:116426 hsa_executable_freeze(, +1822756014443391:1822756014444161 116426:116426 hsa_executable_create_alt(1, 0, +1822756014454551:1822756014454911 116426:116426 hsa_code_object_reader_create_from_memory(0x34aa9e0, , 0x73b4690) = 0 +1822756014455341:1822756014570932 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756014571692:1822756014611562 116426:116426 hsa_executable_freeze(, +1822756014617052:1822756014617812 116426:116426 hsa_executable_create_alt(1, 0, +1822756014628382:1822756014628723 116426:116426 hsa_code_object_reader_create_from_memory(0x34a0e20, , 0x7393f30) = 0 +1822756014629153:1822756014743763 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756014744503:1822756014783613 116426:116426 hsa_executable_freeze(, +1822756014789004:1822756014789914 116426:116426 hsa_executable_create_alt(1, 0, +1822756014800234:1822756014800674 116426:116426 hsa_code_object_reader_create_from_memory(0x34a2390, , 0x73df1b0) = 0 +1822756014801094:1822756014916484 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756014917224:1822756014956405 116426:116426 hsa_executable_freeze(, +1822756014962095:1822756014962665 116426:116426 hsa_executable_create_alt(1, 0, +1822756014972385:1822756014972735 116426:116426 hsa_code_object_reader_create_from_memory(0x34a3900, , 0x73f7790) = 0 +1822756014973175:1822756015089265 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756015090005:1822756015129646 116426:116426 hsa_executable_freeze(, +1822756015135086:1822756015135826 116426:116426 hsa_executable_create_alt(1, 0, +1822756015145686:1822756015146086 116426:116426 hsa_code_object_reader_create_from_memory(0x34b1870, , 0x74151f0) = 0 +1822756015148146:1822756015263277 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756015264017:1822756015303057 116426:116426 hsa_executable_freeze(, +1822756015308617:1822756015309197 116426:116426 hsa_executable_create_alt(1, 0, +1822756015319207:1822756015319547 116426:116426 hsa_code_object_reader_create_from_memory(0x34b32b0, , 0x741db30) = 0 +1822756015319987:1822756015435658 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756015436388:1822756015474858 116426:116426 hsa_executable_freeze(, +1822756015530228:1822756015530938 116426:116426 hsa_executable_create_alt(1, 0, +1822756015556988:1822756015557328 116426:116426 hsa_code_object_reader_create_from_memory(0x3076370, , 0x74485a0) = 0 +1822756015557768:1822756015685469 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756015686189:1822756015724860 116426:116426 hsa_executable_freeze(, +1822756015731700:1822756015732780 116426:116426 hsa_executable_create_alt(1, 0, +1822756015752030:1822756015752420 116426:116426 hsa_code_object_reader_create_from_memory(0x3080cd0, , 0x74613c0) = 0 +1822756015752860:1822756015874891 116426:116426 hsa_executable_load_agent_code_object(, , , +1822756015875601:1822756015914241 116426:116426 hsa_executable_freeze(, +1822756015875601:1822756015922881 116426:116426 hsa_agent_iterate_isas(, 1, 0x7fff0b6ef348) = 0 +1822756015925641:1822756015926411 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015926841:1822756015927161 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015927561:1822756015927861 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015928251:1822756015928551 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015928931:1822756015929241 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015929621:1822756015929941 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015930321:1822756015930631 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015931021:1822756015931321 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015931701:1822756015932011 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015933861:1822756015934501 116426:116426 hsa_executable_symbol_get_info(, 0, 0x7fff0b6ef268) = 0 +1822756015934951:1822756015935251 116426:116426 hsa_executable_symbol_get_info(, 1, 0x7fff0b6ef264) = 0 +1822756015935991:1822756015936331 116426:116426 hsa_executable_symbol_get_info(, 2, 0x6c819c0) = 0 +1822756015937231:1822756015937541 116426:116426 hsa_executable_symbol_get_info(, 0, 0x7fff0b6ef268) = 0 +1822756015937931:1822756015938221 116426:116426 hsa_executable_symbol_get_info(, 1, 0x7fff0b6ef264) = 0 +1822756015940341:1822756015940661 116426:116426 hsa_executable_symbol_get_info(, 2, 0x349d130) = 0 +1822756015941251:1822756015941551 116426:116426 hsa_executable_symbol_get_info(, 0, 0x7fff0b6ef268) = 0 +1822756015941941:1822756015942231 116426:116426 hsa_executable_symbol_get_info(, 1, 0x7fff0b6ef264) = 0 +1822756015942671:1822756015942991 116426:116426 hsa_executable_symbol_get_info(, 2, 0x755d040) = 0 +1822756015943611:1822756015943911 116426:116426 hsa_executable_symbol_get_info(, 0, 0x7fff0b6ef268) = 0 +1822756015944301:1822756015944591 116426:116426 hsa_executable_symbol_get_info(, 1, 0x7fff0b6ef264) = 0 +1822756015945051:1822756015945361 116426:116426 hsa_executable_symbol_get_info(, 2, 0x7568bf0) = 0 +1822756015945971:1822756015946271 116426:116426 hsa_executable_symbol_get_info(, 0, 0x7fff0b6ef268) = 0 +1822756015946661:1822756015946951 116426:116426 hsa_executable_symbol_get_info(, 1, 0x7fff0b6ef264) = 0 +1822756015947411:1822756015947721 116426:116426 hsa_executable_symbol_get_info(, 2, 0x7565b60) = 0 +1822756015948511:1822756015948811 116426:116426 hsa_executable_symbol_get_info(, 0, 0x7fff0b6ef268) = 0 +1822756015949201:1822756015949491 116426:116426 hsa_executable_symbol_get_info(, 1, 0x7fff0b6ef264) = 0 +1822756015949931:1822756015950231 116426:116426 hsa_executable_symbol_get_info(, 2, 0x73e4350) = 0 +1822756015949931:1822756015950811 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015951221:1822756015951541 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015951931:1822756015952231 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015952941:1822756015953241 116426:116426 hsa_executable_symbol_get_info(, 0, 0x7fff0b6ef268) = 0 +1822756015953631:1822756015953921 116426:116426 hsa_executable_symbol_get_info(, 1, 0x7fff0b6ef264) = 0 +1822756015954361:1822756015954671 116426:116426 hsa_executable_symbol_get_info(, 2, 0x6d16c30) = 0 +1822756015954361:1822756015955261 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015955651:1822756015955961 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015956341:1822756015956651 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015957031:1822756015957341 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015957721:1822756015958031 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015958411:1822756015958721 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015959101:1822756015959411 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015959791:1822756015960101 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015960811:1822756015961101 116426:116426 hsa_executable_symbol_get_info(, 0, 0x7fff0b6ef268) = 0 +1822756015962351:1822756015962651 116426:116426 hsa_executable_symbol_get_info(, 1, 0x7fff0b6ef264) = 0 +1822756015963101:1822756015963421 116426:116426 hsa_executable_symbol_get_info(, 2, 0x349d990) = 0 +1822756015963101:1822756015964271 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756015965001:1822756015965291 116426:116426 hsa_executable_symbol_get_info(, 0, 0x7fff0b6ef268) = 0 +1822756015965691:1822756015965981 116426:116426 hsa_executable_symbol_get_info(, 1, 0x7fff0b6ef264) = 0 +1822756015966411:1822756015966721 116426:116426 hsa_executable_symbol_get_info(, 2, 0x7568c40) = 0 +1822756015966411:1822756015967341 116426:116426 hsa_executable_iterate_agent_symbols(, , 1, 0x1d25b80) = 0 +1822756051341716:1822756051343396 116426:116426 hsa_executable_symbol_get_info(, 22, 0x7fff0b6ef4e0) = 0 +1822756051351036:1822756051351526 116426:116426 hsa_system_major_extension_supported(, , , ) = 0 +1822756051353446:1822756051353796 116426:116426 hsa_system_get_major_extension_table(, , , 0x7fff0b6ef470) = 0 +1822756051431217:1822756051431517 116426:116426 hsa_executable_symbol_get_info(, 22, 0x7fff0b6ef4e0) = 0 +1822756051432037:1822756051432317 116426:116426 hsa_system_major_extension_supported(, , , ) = 0 +1822756051432717:1822756051433017 116426:116426 hsa_system_get_major_extension_table(, , , 0x7fff0b6ef470) = 0 +1822756051442837:1822756051443287 116426:116426 hsa_executable_symbol_get_info(, 22, 0x7fff0b6ef4e0) = 0 +1822756051443797:1822756051444077 116426:116426 hsa_system_major_extension_supported(, , , ) = 0 +1822756051444477:1822756051444777 116426:116426 hsa_system_get_major_extension_table(, , , 0x7fff0b6ef470) = 0 +1822756051446287:1822756051446657 116426:116426 hsa_executable_symbol_get_info(, 22, 0x7fff0b6ef4e0) = 0 +1822756051447127:1822756051447407 116426:116426 hsa_system_major_extension_supported(, , , ) = 0 +1822756051447807:1822756051448097 116426:116426 hsa_system_get_major_extension_table(, , , 0x7fff0b6ef470) = 0 +1822756051450297:1822756051450577 116426:116426 hsa_executable_symbol_get_info(, 22, 0x7fff0b6ef4e0) = 0 +1822756051451057:1822756051451337 116426:116426 hsa_system_major_extension_supported(, , , ) = 0 +1822756051451727:1822756051452017 116426:116426 hsa_system_get_major_extension_table(, , , 0x7fff0b6ef470) = 0 +1822756051453757:1822756051454047 116426:116426 hsa_executable_symbol_get_info(, 22, 0x7fff0b6ef4e0) = 0 +1822756051454657:1822756051454937 116426:116426 hsa_system_major_extension_supported(, , , ) = 0 +1822756051455337:1822756051455617 116426:116426 hsa_system_get_major_extension_table(, , , 0x7fff0b6ef470) = 0 +1822756051998390:1822756051998710 116426:116426 hsa_executable_symbol_get_info(, 22, 0x7fff0b6ef4e0) = 0 +1822756051999230:1822756051999510 116426:116426 hsa_system_major_extension_supported(, , , ) = 0 +1822756052009550:1822756052010000 116426:116426 hsa_system_get_major_extension_table(, , , 0x7fff0b6ef470) = 0 +1822756052011870:1822756052012230 116426:116426 hsa_executable_symbol_get_info(, 22, 0x7fff0b6ef4e0) = 0 +1822756052021070:1822756052021350 116426:116426 hsa_system_major_extension_supported(, , , ) = 0 +1822756052021740:1822756052022030 116426:116426 hsa_system_get_major_extension_table(, , , 0x7fff0b6ef470) = 0 +1822756052238542:1822756052238842 116426:116426 hsa_executable_symbol_get_info(, 22, 0x7fff0b6ef4e0) = 0 +1822756052239342:1822756052239622 116426:116426 hsa_system_major_extension_supported(, , , ) = 0 +1822756052240012:1822756052240302 116426:116426 hsa_system_get_major_extension_table(, , , 0x7fff0b6ef470) = 0 +1822756052241272:1822756052241562 116426:116426 hsa_executable_symbol_get_info(, 22, 0x7fff0b6ef4e0) = 0 +1822756052242042:1822756052242322 116426:116426 hsa_system_major_extension_supported(, , , ) = 0 +1822756052242712:1822756052242992 116426:116426 hsa_system_get_major_extension_table(, , , 0x7fff0b6ef470) = 0 +1822756052839946:1822756052840336 116426:116426 hsa_executable_symbol_get_info(, 22, 0x7fff0b6ef4e0) = 0 +1822756052840896:1822756052841186 116426:116426 hsa_system_major_extension_supported(, , , ) = 0 +1822756052841586:1822756052841876 116426:116426 hsa_system_get_major_extension_table(, , , 0x7fff0b6ef470) = 0 +1822756053163898:1822756053164458 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756053174058:1822756053174598 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756053191548:1822756058266990 116426:116426 hsa_queue_create(, , , 1, 0, , , ) = 0 +1822756058279151:1822756058280421 116426:116426 hsa_amd_profiling_set_profiler_enabled(, 1) = 0 +1822756058291021:1822756058291771 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 0 +1822756058294081:1822756058294471 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 0 +1822756058295951:1822756058298141 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756058300051:1822756058300401 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756058303401:1822756058304031 116426:116426 hsa_signal_store_relaxed(, 0) = void +1822756058320361:1822756058320991 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756058347521:1822756058348121 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756058360551:1822756058361161 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756058363681:1822756058367971 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756058368461:1822756058368781 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 1 +1822756058369251:1822756058369591 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 0 +1822756058370261:1822756058370581 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756058371051:1822756058371541 116426:116426 hsa_signal_store_relaxed(, 1) = void +1822756058383541:1822756059632269 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756059641119:1822756059642409 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756059655459:1822756059657209 116426:116426 hsa_signal_destroy() = 0 +1822756059660989:1822756059662359 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756059663459:1822756059664579 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756059668859:1822756059670269 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756059671089:1822756059671639 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756059672559:1822756059673109 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756059674990:1822756059676060 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756059676930:1822756059678110 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce160b0) = 0 +1822756059679260:1822756059684020 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16070) = 0 +1822756059685310:1822756059689010 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756062126685:1822756062131785 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756062133775:1822756062134885 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756062135915:1822756062137085 116426:116430 hsa_signal_load_relaxed() = 1 +1822756059689930:1822756062140075 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756062138185:1822756062140305 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756062141705:1822756062142435 116426:116430 hsa_signal_destroy() = 0 +1822756062838929:1822756062840179 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756075702652:1822756075704062 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756075722832:1822756075723962 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756075725072:1822756075726192 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756075729152:1822756075730452 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756075731262:1822756075732412 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756075733392:1822756075734492 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756076416836:1822756076417956 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756076420166:1822756076421276 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756076422816:1822756076426206 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16110) = 0 +1822756076427446:1822756076434206 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce160d0) = 0 +1822756076446266:1822756076449366 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756078070066:1822756078074827 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756078076837:1822756078077947 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756078078907:1822756078079767 116426:116430 hsa_signal_load_relaxed() = 1 +1822756076450406:1822756078081927 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756078080567:1822756078082677 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756078083287:1822756078083797 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756078084227:1822756078085057 116426:116430 hsa_signal_destroy() = 0 +1822756078086387:1822756078086987 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756078103757:1822756078104657 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756078109047:1822756078109647 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756078115207:1822756078116457 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 2 +1822756078117387:1822756078118227 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 2 +1822756078119137:1822756078120417 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756078121327:1822756078121677 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756078122787:1822756078123617 116426:116426 hsa_signal_store_relaxed(, 2) = void +1822756078126107:1822756078126717 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756078130767:1822756078131367 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756078134337:1822756078134947 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756078135997:1822756078141087 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756078141567:1822756078141887 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 3 +1822756078142337:1822756078142657 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 2 +1822756078143477:1822756078143797 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756078144247:1822756078144737 116426:116426 hsa_signal_store_relaxed(, 3) = void +1822756078146357:1822756079410695 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756079415615:1822756079416275 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756079419195:1822756079420545 116426:116426 hsa_signal_destroy() = 0 +1822756079423975:1822756079424965 116426:116426 hsa_signal_destroy() = 0 +1822756079428905:1822756079429535 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756079430065:1822756079430665 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756079431785:1822756079432315 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756079432775:1822756079433545 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756079434005:1822756079434315 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756079435425:1822756079436035 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756079436535:1822756079437315 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16170) = 0 +1822756079437965:1822756079441555 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16130) = 0 +1822756079442135:1822756079443525 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756081985631:1822756081990261 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756081992501:1822756081993611 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756081994631:1822756081995651 116426:116430 hsa_signal_load_relaxed() = 1 +1822756079444055:1822756081998071 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756081996461:1822756081998471 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756081999921:1822756082000661 116426:116430 hsa_signal_destroy() = 0 +1822756082627275:1822756082627955 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756089167467:1822756089168257 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756089183097:1822756089183637 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756089184237:1822756089184767 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756089188107:1822756089188977 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756089189587:1822756089190457 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756089191037:1822756089191937 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756089794011:1822756089794661 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756089796731:1822756089797261 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756089798071:1822756089800681 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce161d0) = 0 +1822756089801541:1822756089807401 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16190) = 0 +1822756089807991:1822756089811381 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756091460741:1822756091465681 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756091473471:1822756091474602 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756091475582:1822756091476442 116426:116430 hsa_signal_load_relaxed() = 1 +1822756089811971:1822756091478602 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756091477262:1822756091479362 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756091480352:1822756091481202 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756091480932:1822756091482072 116426:116430 hsa_signal_destroy() = 0 +1822756091483972:1822756091484582 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756091500522:1822756091501132 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756091505362:1822756091505962 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756091512452:1822756091513482 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 4 +1822756091514682:1822756091515172 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 4 +1822756091516282:1822756091517712 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756091518452:1822756091518802 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756091520082:1822756091520922 116426:116426 hsa_signal_store_relaxed(, 4) = void +1822756091523062:1822756091523672 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756091527902:1822756091528512 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756091530952:1822756091531562 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756091532522:1822756091533262 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756091533712:1822756091534042 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 5 +1822756091534482:1822756091534792 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 4 +1822756091535442:1822756091535762 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756091536212:1822756091536702 116426:116426 hsa_signal_store_relaxed(, 5) = void +1822756091538062:1822756092816320 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756092820680:1822756092821200 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756092824540:1822756092825670 116426:116426 hsa_signal_destroy() = 0 +1822756092827330:1822756092827780 116426:116426 hsa_signal_destroy() = 0 +1822756092829100:1822756092829650 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756092830100:1822756092830640 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756092831710:1822756092832180 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756092842170:1822756092843010 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756092843430:1822756092843700 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756092844760:1822756092845300 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756092845780:1822756092846540 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16230) = 0 +1822756092847070:1822756092850420 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce161f0) = 0 +1822756092850920:1822756092852200 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756095458137:1822756095462767 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756095464627:1822756095465737 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756095466757:1822756095467777 116426:116430 hsa_signal_load_relaxed() = 1 +1822756092852660:1822756095470157 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756095468587:1822756095470587 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756095471807:1822756095472547 116426:116430 hsa_signal_destroy() = 0 +1822756096113841:1822756096114511 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756102582553:1822756102583623 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756102598263:1822756102598803 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756102599593:1822756102600133 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756102602493:1822756102603373 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756102604103:1822756102604933 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756102605623:1822756102606503 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756103186457:1822756103186947 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756103188327:1822756103188867 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756103189947:1822756103192697 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16290) = 0 +1822756103193597:1822756103199267 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16250) = 0 +1822756103200407:1822756103203667 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756104834497:1822756104839117 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756104841217:1822756104842337 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756104843427:1822756104844287 116426:116430 hsa_signal_load_relaxed() = 1 +1822756103204267:1822756104846587 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756104845207:1822756104847127 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756104852817:1822756104853577 116426:116430 hsa_signal_destroy() = 0 +1822756104858077:1822756104858537 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756104860197:1822756104860807 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756104876957:1822756104877567 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756104881167:1822756104881767 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756104887667:1822756104888677 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 6 +1822756104889507:1822756104890167 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 6 +1822756104891067:1822756104892397 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756104893117:1822756104893467 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756104894657:1822756104895487 116426:116426 hsa_signal_store_relaxed(, 6) = void +1822756104897527:1822756104898137 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756104902317:1822756104902917 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756104905348:1822756104905958 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756104906888:1822756104907798 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756104908238:1822756104908558 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 7 +1822756104908998:1822756104909318 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 6 +1822756104910148:1822756104910468 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756104910918:1822756104911398 116426:116426 hsa_signal_store_relaxed(, 7) = void +1822756104912848:1822756106178705 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756106183345:1822756106183975 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756106186675:1822756106187805 116426:116426 hsa_signal_destroy() = 0 +1822756106189446:1822756106190116 116426:116426 hsa_signal_destroy() = 0 +1822756106191346:1822756106191906 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756106192356:1822756106192896 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756106193806:1822756106194276 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756106194696:1822756106195116 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756106195526:1822756106195796 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756106196696:1822756106197236 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756106200146:1822756106200856 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce162f0) = 0 +1822756106201386:1822756106204826 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce162b0) = 0 +1822756106205296:1822756106206536 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756108780922:1822756108785522 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756108787702:1822756108788812 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756108789842:1822756108790862 116426:116430 hsa_signal_load_relaxed() = 1 +1822756106207006:1822756108793292 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756108791672:1822756108793672 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756108795502:1822756108796232 116426:116430 hsa_signal_destroy() = 0 +1822756109422086:1822756109422766 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756115847097:1822756115848177 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756115862517:1822756115863057 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756115863657:1822756115864187 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756115866877:1822756115867777 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756115868237:1822756115868877 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756115869427:1822756115870557 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756116471951:1822756116472381 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756116473871:1822756116474471 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756116475471:1822756116478011 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16350) = 0 +1822756116478781:1822756116484711 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16310) = 0 +1822756116485571:1822756116489491 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756118099161:1822756118103751 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756118105991:1822756118107101 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756118108051:1822756118108911 116426:116430 hsa_signal_load_relaxed() = 1 +1822756116490031:1822756118111351 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756118110001:1822756118112131 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756118112651:1822756118113171 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756118113581:1822756118114411 116426:116430 hsa_signal_destroy() = 0 +1822756118115681:1822756118116281 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756118135951:1822756118136561 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756118140621:1822756118141231 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756118147102:1822756118148172 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 8 +1822756118148962:1822756118149622 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 8 +1822756118150442:1822756118151812 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756118152512:1822756118152942 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756118154012:1822756118154852 116426:116426 hsa_signal_store_relaxed(, 8) = void +1822756118157362:1822756118157972 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756118168382:1822756118168982 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756118171352:1822756118171952 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756118172972:1822756118173722 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756118174172:1822756118174582 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 9 +1822756118175032:1822756118175342 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 8 +1822756118176002:1822756118176312 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756118176762:1822756118177252 116426:116426 hsa_signal_store_relaxed(, 9) = void +1822756118179182:1822756119425929 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756119430660:1822756119431510 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756119434300:1822756119435420 116426:116426 hsa_signal_destroy() = 0 +1822756119437330:1822756119437810 116426:116426 hsa_signal_destroy() = 0 +1822756119438990:1822756119439620 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756119440130:1822756119440740 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756119441820:1822756119442340 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756119442970:1822756119443550 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756119444010:1822756119444310 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756119445280:1822756119445880 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756119446390:1822756119447220 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce163b0) = 0 +1822756119447740:1822756119451310 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16370) = 0 +1822756119451830:1822756119453120 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756122001536:1822756122006176 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756122008206:1822756122009316 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756122010336:1822756122011356 116426:116430 hsa_signal_load_relaxed() = 1 +1822756119456260:1822756122013816 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756122012166:1822756122014166 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756122015386:1822756122016136 116426:116430 hsa_signal_destroy() = 0 +1822756122645770:1822756122646460 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756129189812:1822756129191232 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756129206872:1822756129207412 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756129208182:1822756129208722 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756129211552:1822756129212442 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756129213052:1822756129213932 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756129214592:1822756129215512 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756129818886:1822756129819386 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756129820966:1822756129821496 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756129822476:1822756129825176 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16410) = 0 +1822756129826376:1822756129832656 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce163d0) = 0 +1822756129833406:1822756129836836 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756131462557:1822756131467197 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756131469197:1822756131470297 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756131471387:1822756131472247 116426:116430 hsa_signal_load_relaxed() = 1 +1822756129837506:1822756131474627 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756131473287:1822756131475427 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756131476007:1822756131476527 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756131477137:1822756131477877 116426:116430 hsa_signal_destroy() = 0 +1822756131479107:1822756131479707 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756131496027:1822756131496637 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756131500927:1822756131501527 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756131516167:1822756131517257 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 10 +1822756131518207:1822756131518687 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 10 +1822756131519657:1822756131520917 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756131521607:1822756131521967 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756131523177:1822756131524007 116426:116426 hsa_signal_store_relaxed(, 10) = void +1822756131526317:1822756131526927 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756131530777:1822756131531387 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756131533547:1822756131534157 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756131535267:1822756131536017 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756131536467:1822756131536777 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 11 +1822756131537217:1822756131537537 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 10 +1822756131538187:1822756131538497 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756131538937:1822756131539427 116426:116426 hsa_signal_store_relaxed(, 11) = void +1822756131540897:1822756132810665 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756132815245:1822756132815805 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756132818725:1822756132819855 116426:116426 hsa_signal_destroy() = 0 +1822756132821945:1822756132822385 116426:116426 hsa_signal_destroy() = 0 +1822756132823645:1822756132824195 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756132824645:1822756132825185 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756132826125:1822756132826605 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756132827015:1822756132827435 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756132827845:1822756132828115 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756132829185:1822756132829715 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756132830165:1822756132830925 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16470) = 0 +1822756132831465:1822756132834876 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16430) = 0 +1822756132835346:1822756132836566 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756135459942:1822756135464592 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756135466642:1822756135467752 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756135468902:1822756135469902 116426:116430 hsa_signal_load_relaxed() = 1 +1822756132837026:1822756135476042 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756135474462:1822756135476492 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756135477872:1822756135478602 116426:116430 hsa_signal_destroy() = 0 +1822756136131816:1822756136132526 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756142556547:1822756142557817 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756142572607:1822756142573147 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756142573837:1822756142574377 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756142576857:1822756142578057 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756142578447:1822756142579307 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756142579857:1822756142580757 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756143156891:1822756143157411 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756143159261:1822756143159791 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756143160941:1822756143163401 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce164d0) = 0 +1822756143164291:1822756143170031 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16490) = 0 +1822756143170761:1822756143173881 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756144792972:1822756144797592 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756144799782:1822756144800902 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756144801862:1822756144802712 116426:116430 hsa_signal_load_relaxed() = 1 +1822756143174561:1822756144805162 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756144803672:1822756144805612 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756144806902:1822756144807872 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756144807172:1822756144808302 116426:116430 hsa_signal_destroy() = 0 +1822756144809962:1822756144810572 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756144826582:1822756144827192 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756144831902:1822756144832512 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756144838412:1822756144839342 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 12 +1822756144840132:1822756144840772 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 12 +1822756144841612:1822756144842772 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756144853052:1822756144853502 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756144854882:1822756144855732 116426:116426 hsa_signal_store_relaxed(, 12) = void +1822756144858092:1822756144858702 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756144862912:1822756144863512 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756144866032:1822756144866642 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756144867692:1822756144868642 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756144869082:1822756144869402 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 13 +1822756144869842:1822756144870162 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 12 +1822756144870802:1822756144871112 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756144871562:1822756144872042 116426:116426 hsa_signal_store_relaxed(, 13) = void +1822756144873652:1822756146142330 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756146146650:1822756146147290 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756146150090:1822756146151090 116426:116426 hsa_signal_destroy() = 0 +1822756146153140:1822756146153810 116426:116426 hsa_signal_destroy() = 0 +1822756146155020:1822756146155570 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756146156020:1822756146156550 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756146157350:1822756146157830 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756146158240:1822756146158660 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756146159070:1822756146159340 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756146160410:1822756146160940 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756146161390:1822756146162060 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16530) = 0 +1822756146162890:1822756146166260 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce164f0) = 0 +1822756146166720:1822756146167840 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756148751906:1822756148756526 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756148758786:1822756148759896 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756148760926:1822756148761946 116426:116430 hsa_signal_load_relaxed() = 1 +1822756146168310:1822756148764516 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756148762886:1822756148764896 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756148770396:1822756148771156 116426:116430 hsa_signal_destroy() = 0 +1822756149390530:1822756149391210 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756155829762:1822756155831032 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756155845582:1822756155846112 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756155846692:1822756155847222 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756155849552:1822756155850422 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756155850812:1822756155851682 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756155852362:1822756155853072 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756156465696:1822756156466206 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756156467856:1822756156468386 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756156469176:1822756156471506 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16590) = 0 +1822756156472746:1822756156479176 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16550) = 0 +1822756156479926:1822756156483316 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756158109086:1822756158113656 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756158115776:1822756158116886 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756158118046:1822756158118916 116426:116430 hsa_signal_load_relaxed() = 1 +1822756156483886:1822756158121266 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756158119926:1822756158122026 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756158122846:1822756158123356 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756158123756:1822756158124586 116426:116430 hsa_signal_destroy() = 0 +1822756158126646:1822756158127266 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756158143376:1822756158143986 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756158148346:1822756158148946 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756158154956:1822756158155976 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 14 +1822756158157016:1822756158157816 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 14 +1822756158158656:1822756158159876 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756158160696:1822756158161126 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756158162196:1822756158163186 116426:116426 hsa_signal_store_relaxed(, 14) = void +1822756158165346:1822756158165956 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756158179826:1822756158180426 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756158183006:1822756158183606 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756158184596:1822756158185317 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756158185777:1822756158186087 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 15 +1822756158186527:1822756158186847 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 14 +1822756158187497:1822756158187817 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756158188267:1822756158188747 116426:116426 hsa_signal_store_relaxed(, 15) = void +1822756158190467:1822756159450364 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756159455114:1822756159455754 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756159459094:1822756159460294 116426:116426 hsa_signal_destroy() = 0 +1822756159462144:1822756159462624 116426:116426 hsa_signal_destroy() = 0 +1822756159464334:1822756159464954 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756159465464:1822756159466064 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756159466954:1822756159467474 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756159467934:1822756159468494 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756159468954:1822756159469264 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756159470364:1822756159470965 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756159471475:1822756159472285 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce165f0) = 0 +1822756159472775:1822756159476355 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce165b0) = 0 +1822756159476865:1822756159478145 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756162005461:1822756162010051 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756162012241:1822756162013341 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756162014561:1822756162015571 116426:116430 hsa_signal_load_relaxed() = 1 +1822756159478655:1822756162018331 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756162016671:1822756162018671 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756162020231:1822756162020971 116426:116430 hsa_signal_destroy() = 0 +1822756162646455:1822756162647135 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756169128456:1822756169129386 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756169154427:1822756169154967 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756169155537:1822756169156077 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756169158727:1822756169159817 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756169160207:1822756169161077 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756169161617:1822756169162747 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756169757070:1822756169757590 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756169759451:1822756169759981 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756169760841:1822756169763341 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16650) = 0 +1822756169764161:1822756169769921 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16610) = 0 +1822756169770741:1822756169774111 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756171461031:1822756171465631 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756171467921:1822756171469031 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756171469981:1822756171470841 116426:116430 hsa_signal_load_relaxed() = 1 +1822756169774681:1822756171473142 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756171471792:1822756171473912 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756171474382:1822756171475042 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756171475612:1822756171476352 116426:116430 hsa_signal_destroy() = 0 +1822756171477632:1822756171478242 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756171495172:1822756171495832 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756171499722:1822756171500322 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756171506452:1822756171507362 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 16 +1822756171508182:1822756171508832 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 16 +1822756171509722:1822756171510802 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756171511622:1822756171512052 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756171513572:1822756171514382 116426:116426 hsa_signal_store_relaxed(, 16) = void +1822756171516702:1822756171517312 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756171521222:1822756171521832 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756171523912:1822756171524512 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756171525452:1822756171526242 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756171528862:1822756171529272 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 17 +1822756171529712:1822756171530022 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 16 +1822756171530842:1822756171531152 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756171531602:1822756171532092 116426:116426 hsa_signal_store_relaxed(, 17) = void +1822756171533552:1822756172784450 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756172788650:1822756172789220 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756172792640:1822756172793710 116426:116426 hsa_signal_destroy() = 0 +1822756172795280:1822756172795720 116426:116426 hsa_signal_destroy() = 0 +1822756172796800:1822756172797350 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756172797800:1822756172798340 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756172799290:1822756172799760 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756172800170:1822756172800590 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756172801120:1822756172801400 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756172802300:1822756172802830 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756172803290:1822756172804030 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce166b0) = 0 +1822756172804540:1822756172807770 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16670) = 0 +1822756172808240:1822756172809470 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756175460066:1822756175464646 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756175467016:1822756175468126 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756175469146:1822756175470166 116426:116430 hsa_signal_load_relaxed() = 1 +1822756172809930:1822756175472697 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756175471116:1822756175473157 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756175474517:1822756175475247 116426:116430 hsa_signal_destroy() = 0 +1822756176122201:1822756176122931 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756182698163:1822756182699343 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756182715193:1822756182715733 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756182716423:1822756182716963 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756182720033:1822756182720913 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756182731013:1822756182732093 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756182732743:1822756182733953 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756183331637:1822756183332337 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756183334217:1822756183334747 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756183335727:1822756183338457 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16710) = 0 +1822756183339437:1822756183344927 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce166d0) = 0 +1822756183345757:1822756183348667 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756184855337:1822756184859857 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756184862317:1822756184863427 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756184864597:1822756184865457 116426:116430 hsa_signal_load_relaxed() = 1 +1822756183349287:1822756184867937 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756184866557:1822756184868497 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756184869457:1822756184870407 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756184870197:1822756184871347 116426:116430 hsa_signal_destroy() = 0 +1822756184872937:1822756184873547 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756184890477:1822756184891087 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756184895127:1822756184895727 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756184902387:1822756184903317 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 18 +1822756184904467:1822756184904957 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 18 +1822756184905837:1822756184906997 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756184907697:1822756184908047 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756184909357:1822756184910177 116426:116426 hsa_signal_store_relaxed(, 18) = void +1822756184912777:1822756184913377 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756184918027:1822756184918637 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756184920967:1822756184921577 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756184922777:1822756184923577 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756184924017:1822756184924347 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 19 +1822756184924787:1822756184925097 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 18 +1822756184925767:1822756184926077 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756184932187:1822756184932687 116426:116426 hsa_signal_store_relaxed(, 19) = void +1822756184934117:1822756186183495 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756186188975:1822756186189655 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756186192785:1822756186194185 116426:116426 hsa_signal_destroy() = 0 +1822756186196355:1822756186197175 116426:116426 hsa_signal_destroy() = 0 +1822756186198325:1822756186198935 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756186199445:1822756186200045 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756186200975:1822756186201755 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756186202215:1822756186202665 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756186203125:1822756186203435 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756186204395:1822756186204995 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756186205495:1822756186206255 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16770) = 0 +1822756186206895:1822756186210495 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16730) = 0 +1822756186211025:1822756186212365 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756188609880:1822756188614100 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756188616270:1822756188617380 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756188618610:1822756188619620 116426:116430 hsa_signal_load_relaxed() = 1 +1822756186212895:1822756188622360 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756188620720:1822756188622720 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756188624010:1822756188624750 116426:116430 hsa_signal_destroy() = 0 +1822756189251844:1822756189252524 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756195694386:1822756195695846 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756195709846:1822756195710376 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756195711126:1822756195711656 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756195714476:1822756195715376 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756195715766:1822756195716296 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756195716856:1822756195717636 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756196312259:1822756196312609 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756196324290:1822756196324820 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756196325890:1822756196328350 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce167d0) = 0 +1822756196329450:1822756196335220 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16790) = 0 +1822756196335960:1822756196339040 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756197960690:1822756197965300 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756197967460:1822756197968580 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756197969530:1822756197970390 116426:116430 hsa_signal_load_relaxed() = 1 +1822756196339560:1822756197972560 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756197971200:1822756197973140 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756197974370:1822756197975210 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756197975000:1822756197976160 116426:116430 hsa_signal_destroy() = 0 +1822756197978310:1822756197978920 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756197997650:1822756197998250 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756198002480:1822756198003080 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756198009310:1822756198010320 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 20 +1822756198011330:1822756198011980 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 20 +1822756198013060:1822756198014410 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756198015250:1822756198015670 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756198016660:1822756198017430 116426:116426 hsa_signal_store_relaxed(, 20) = void +1822756198019610:1822756198020210 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756198024460:1822756198025070 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756198027611:1822756198028211 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756198029131:1822756198030051 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756198030491:1822756198030811 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 21 +1822756198031241:1822756198031561 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 20 +1822756198032201:1822756198032511 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756198032961:1822756198033441 116426:116426 hsa_signal_store_relaxed(, 21) = void +1822756198034941:1822756199301909 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756199306689:1822756199307269 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756199312899:1822756199313989 116426:116426 hsa_signal_destroy() = 0 +1822756199315629:1822756199316099 116426:116426 hsa_signal_destroy() = 0 +1822756199317289:1822756199317909 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756199318419:1822756199319019 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756199319829:1822756199320359 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756199320819:1822756199321389 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756199321849:1822756199322159 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756199323109:1822756199323709 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756199324229:1822756199325039 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16830) = 0 +1822756199325679:1822756199329289 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce167f0) = 0 +1822756199329819:1822756199331229 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756201845465:1822756201850055 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756201852185:1822756201853295 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756201854315:1822756201855335 116426:116430 hsa_signal_load_relaxed() = 1 +1822756199331759:1822756201857775 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756201856135:1822756201858145 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756201859505:1822756201860245 116426:116430 hsa_signal_destroy() = 0 +1822756202488359:1822756202489049 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756208932050:1822756208933210 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756208948400:1822756208948940 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756208949780:1822756208950320 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756208953150:1822756208954180 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756208954920:1822756208955560 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756208956330:1822756208957240 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756209557914:1822756209558324 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756209560304:1822756209560834 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756209562234:1822756209564714 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16890) = 0 +1822756209565734:1822756209571764 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16850) = 0 +1822756209580124:1822756209583274 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756211217804:1822756211222314 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756211224444:1822756211225555 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756211226505:1822756211227365 116426:116430 hsa_signal_load_relaxed() = 1 +1822756209583944:1822756211229515 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756211228175:1822756211230295 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756211230865:1822756211231375 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756211231885:1822756211232715 116426:116430 hsa_signal_destroy() = 0 +1822756211234115:1822756211234725 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756211251965:1822756211252565 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756211256815:1822756211257415 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756211263195:1822756211264175 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 22 +1822756211265095:1822756211265745 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 22 +1822756211266635:1822756211267705 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756211268525:1822756211268955 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756211269935:1822756211270765 116426:116426 hsa_signal_store_relaxed(, 22) = void +1822756211273215:1822756211273825 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756211277845:1822756211278455 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756211280675:1822756211281275 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756211282375:1822756211283145 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756211283675:1822756211284085 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 23 +1822756211284625:1822756211284985 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 22 +1822756211285845:1822756211286155 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756211286605:1822756211287085 116426:116426 hsa_signal_store_relaxed(, 23) = void +1822756211288545:1822756212695814 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756212700604:1822756212701174 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756212703684:1822756212704814 116426:116426 hsa_signal_destroy() = 0 +1822756212706214:1822756212706644 116426:116426 hsa_signal_destroy() = 0 +1822756212710134:1822756212710684 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756212711144:1822756212711684 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756212712534:1822756212713024 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756212713424:1822756212714144 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756212714554:1822756212714824 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756212715894:1822756212716424 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756212716874:1822756212717714 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce168f0) = 0 +1822756212718304:1822756212721524 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce168b0) = 0 +1822756212721994:1822756212723244 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756215257240:1822756215261760 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756215264080:1822756215265190 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756215266290:1822756215267310 116426:116430 hsa_signal_load_relaxed() = 1 +1822756212723714:1822756215269700 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756215268110:1822756215270120 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756215271440:1822756215272180 116426:116430 hsa_signal_destroy() = 0 +1822756215904034:1822756215904714 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756222568927:1822756222570487 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756222584897:1822756222585437 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756222586337:1822756222586867 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756222589517:1822756222590397 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756222591017:1822756222591657 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756222592297:1822756222593397 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756223180801:1822756223181871 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756223183971:1822756223184501 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756223185691:1822756223188531 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16950) = 0 +1822756223189081:1822756223194961 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16910) = 0 +1822756223195751:1822756223199061 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756224674010:1822756224678170 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756224680000:1822756224681120 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756224685970:1822756224686840 116426:116430 hsa_signal_load_relaxed() = 1 +1822756223199571:1822756224689040 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756224687660:1822756224689570 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756224690740:1822756224691490 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756224691000:1822756224692020 116426:116430 hsa_signal_destroy() = 0 +1822756224694240:1822756224694840 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756224711040:1822756224711650 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756224715700:1822756224716300 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756224722570:1822756224723590 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 24 +1822756224724590:1822756224725240 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 24 +1822756224726060:1822756224727320 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756224728130:1822756224728560 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756224729980:1822756224730800 116426:116426 hsa_signal_store_relaxed(, 24) = void +1822756224733260:1822756224733870 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756224738511:1822756224739111 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756224741501:1822756224742111 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756224743221:1822756224743991 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756224744441:1822756224744761 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 25 +1822756224745201:1822756224745531 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 24 +1822756224746351:1822756224746661 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756224747111:1822756224747601 116426:116426 hsa_signal_store_relaxed(, 25) = void +1822756224749101:1822756226007829 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756226012459:1822756226013039 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756226015779:1822756226016869 116426:116426 hsa_signal_destroy() = 0 +1822756226018909:1822756226019599 116426:116426 hsa_signal_destroy() = 0 +1822756226020669:1822756226021219 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756226021669:1822756226022209 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756226022919:1822756226023399 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756226033659:1822756226034089 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756226034499:1822756226034769 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756226035689:1822756226036229 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756226036679:1822756226037579 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce169b0) = 0 +1822756226038109:1822756226041519 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16970) = 0 +1822756226041989:1822756226043229 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756228602075:1822756228606695 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756228608755:1822756228609865 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756228610885:1822756228611905 116426:116430 hsa_signal_load_relaxed() = 1 +1822756226043709:1822756228614335 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756228612715:1822756228614715 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756228615995:1822756228616735 116426:116430 hsa_signal_destroy() = 0 +1822756229247939:1822756229248619 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756235649410:1822756235650590 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756235664620:1822756235665150 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756235665910:1822756235666440 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756235668940:1822756235669820 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756235670550:1822756235671100 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756235671890:1822756235673030 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756236281304:1822756236281874 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756236283604:1822756236284204 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756236285474:1822756236287724 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16a10) = 0 +1822756236289014:1822756236294984 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce169d0) = 0 +1822756236296004:1822756236299264 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756237925164:1822756237929744 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756237931924:1822756237933034 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756237934124:1822756237934975 116426:116430 hsa_signal_load_relaxed() = 1 +1822756236300204:1822756237937265 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756237935915:1822756237938005 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756237938585:1822756237939105 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756237943225:1822756237943995 116426:116430 hsa_signal_destroy() = 0 +1822756237946615:1822756237947225 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756237963835:1822756237964445 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756237968675:1822756237969285 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756237975495:1822756237976265 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 26 +1822756237977395:1822756237978055 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 26 +1822756237978895:1822756237980075 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756237980805:1822756237981225 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756237982455:1822756237983245 116426:116426 hsa_signal_store_relaxed(, 26) = void +1822756237985945:1822756237986545 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756237990495:1822756237991105 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756237993745:1822756237994355 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756237995395:1822756237996275 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756237996715:1822756237997035 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 27 +1822756237997485:1822756237997795 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 26 +1822756237998635:1822756237998945 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756237999385:1822756237999875 116426:116426 hsa_signal_store_relaxed(, 27) = void +1822756238001435:1822756239258293 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756239263133:1822756239263703 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756239266403:1822756239267803 116426:116426 hsa_signal_destroy() = 0 +1822756239269523:1822756239269963 116426:116426 hsa_signal_destroy() = 0 +1822756239271023:1822756239271573 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756239272023:1822756239272553 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756239273253:1822756239273733 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756239274143:1822756239274673 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756239275073:1822756239275353 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756239276253:1822756239276783 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756239283103:1822756239283863 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16a70) = 0 +1822756239284363:1822756239287943 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16a30) = 0 +1822756239288423:1822756239289573 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756241829189:1822756241833819 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756241835899:1822756241837009 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756241838029:1822756241839049 116426:116430 hsa_signal_load_relaxed() = 1 +1822756239290043:1822756241841489 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756241839859:1822756241841859 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756241843489:1822756241844219 116426:116430 hsa_signal_destroy() = 0 +1822756242473573:1822756242474243 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756248909684:1822756248910794 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756248925624:1822756248926164 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756248926824:1822756248927354 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756248929704:1822756248930814 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756248931204:1822756248932064 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756248932614:1822756248933534 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756249531898:1822756249532678 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756249534388:1822756249534918 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756249536078:1822756249539138 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16ad0) = 0 +1822756249540018:1822756249545588 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16a90) = 0 +1822756249546558:1822756249549948 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756251173949:1822756251178499 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756251180629:1822756251181739 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756251182699:1822756251183559 116426:116430 hsa_signal_load_relaxed() = 1 +1822756249550448:1822756251186009 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756251184659:1822756251186779 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756251187629:1822756251188459 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756251188239:1822756251189369 116426:116430 hsa_signal_destroy() = 0 +1822756251190989:1822756251191599 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756251215459:1822756251216269 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756251220009:1822756251220609 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756251227079:1822756251228249 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 28 +1822756251229059:1822756251229699 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 28 +1822756251230569:1822756251231769 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756251232609:1822756251233039 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756251234069:1822756251234899 116426:116426 hsa_signal_store_relaxed(, 28) = void +1822756251237359:1822756251237969 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756251242149:1822756251242749 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756251244739:1822756251245349 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756251246669:1822756251247509 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756251247959:1822756251248289 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 29 +1822756251248739:1822756251249049 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 28 +1822756251249709:1822756251250029 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756251250469:1822756251250959 116426:116426 hsa_signal_store_relaxed(, 29) = void +1822756251252589:1822756252501467 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756252506687:1822756252507317 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756252510297:1822756252511427 116426:116426 hsa_signal_destroy() = 0 +1822756252513217:1822756252513697 116426:116426 hsa_signal_destroy() = 0 +1822756252514957:1822756252515567 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756252516077:1822756252516677 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756252517657:1822756252518177 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756252518637:1822756252519097 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756252519557:1822756252519867 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756252520847:1822756252521447 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756252521957:1822756252522777 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16b30) = 0 +1822756252523397:1822756252526997 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16af0) = 0 +1822756252527537:1822756252528807 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756255057714:1822756255062294 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756255064444:1822756255065544 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756255066574:1822756255067584 116426:116430 hsa_signal_load_relaxed() = 1 +1822756252532057:1822756255069964 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756255068394:1822756255070384 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756255071624:1822756255072364 116426:116430 hsa_signal_destroy() = 0 +1822756255697488:1822756255698168 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756262252889:1822756262254149 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756262269609:1822756262270149 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756262270919:1822756262271459 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756262273489:1822756262274359 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756262274959:1822756262275829 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756262276599:1822756262277399 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756262883313:1822756262883883 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756262885723:1822756262886263 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756262887523:1822756262890293 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16b90) = 0 +1822756262891433:1822756262897523 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16b50) = 0 +1822756262898263:1822756262901123 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756264529704:1822756264534154 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756264535954:1822756264537064 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756264538144:1822756264539004 116426:116430 hsa_signal_load_relaxed() = 1 +1822756262901803:1822756264541484 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756264540014:1822756264541944 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756264542864:1822756264543384 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756264543784:1822756264544614 116426:116430 hsa_signal_destroy() = 0 +1822756264546414:1822756264547024 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756264564174:1822756264564784 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756264568614:1822756264569214 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756264575734:1822756264576604 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 30 +1822756264586194:1822756264587184 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 30 +1822756264588014:1822756264589134 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756264589824:1822756264590174 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756264591214:1822756264592064 116426:116426 hsa_signal_store_relaxed(, 30) = void +1822756264594264:1822756264594874 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756264603284:1822756264603884 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756264606214:1822756264606824 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756264607704:1822756264608514 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756264608964:1822756264609274 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 31 +1822756264609714:1822756264610044 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 30 +1822756264610684:1822756264611004 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756264611444:1822756264611934 116426:116426 hsa_signal_store_relaxed(, 31) = void +1822756264613554:1822756265892863 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756265897673:1822756265898283 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756265900783:1822756265902003 116426:116426 hsa_signal_destroy() = 0 +1822756265903943:1822756265904633 116426:116426 hsa_signal_destroy() = 0 +1822756265905833:1822756265906383 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756265906833:1822756265907363 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756265908343:1822756265908823 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756265909233:1822756265909643 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756265910053:1822756265910333 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756265911223:1822756265911753 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756265912203:1822756265912873 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16bf0) = 0 +1822756265913453:1822756265916833 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16bb0) = 0 +1822756265917313:1822756265918773 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756268463839:1822756268468429 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756268470589:1822756268471699 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756268472849:1822756268473869 116426:116430 hsa_signal_load_relaxed() = 1 +1822756265919233:1822756268480409 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756268478749:1822756268480779 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756268481839:1822756268482569 116426:116430 hsa_signal_destroy() = 0 +1822756269110513:1822756269111193 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756275607554:1822756275608204 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756275624804:1822756275625334 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756275625924:1822756275626454 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756275628984:1822756275630174 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756275630574:1822756275631434 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756275631974:1822756275632874 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756276235428:1822756276235948 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756276237538:1822756276238068 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756276238938:1822756276241358 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16c50) = 0 +1822756276242228:1822756276248348 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16c10) = 0 +1822756276249088:1822756276252468 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756277876319:1822756277880889 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756277883139:1822756277884249 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756277885209:1822756277886069 116426:116430 hsa_signal_load_relaxed() = 1 +1822756276253008:1822756277888229 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756277886879:1822756277889009 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756277889789:1822756277890669 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756277890469:1822756277891609 116426:116430 hsa_signal_destroy() = 0 +1822756277893229:1822756277893839 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756277910479:1822756277911089 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756277915759:1822756277916369 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756277922889:1822756277923669 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 32 +1822756277924609:1822756277925269 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 32 +1822756277926269:1822756277927619 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756277938419:1822756277938869 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756277939959:1822756277940819 116426:116426 hsa_signal_store_relaxed(, 32) = void +1822756277943109:1822756277943719 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756277947769:1822756277948379 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756277950709:1822756277951319 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756277952329:1822756277953149 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756277953589:1822756277953899 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 33 +1822756277954349:1822756277954669 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 32 +1822756277955299:1822756277955609 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756277956059:1822756277956539 116426:116426 hsa_signal_store_relaxed(, 33) = void +1822756277957949:1822756279225997 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756279230477:1822756279231067 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756279234047:1822756279235197 116426:116426 hsa_signal_destroy() = 0 +1822756279236647:1822756279237087 116426:116426 hsa_signal_destroy() = 0 +1822756279238237:1822756279238787 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756279239237:1822756279239767 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756279240517:1822756279240997 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756279241397:1822756279241927 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756279242327:1822756279242607 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756279243667:1822756279244197 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756279244647:1822756279245398 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16cb0) = 0 +1822756279246138:1822756279249348 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16c70) = 0 +1822756279249808:1822756279250968 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756281773664:1822756281778294 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756281780454:1822756281781554 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756281782584:1822756281783594 116426:116430 hsa_signal_load_relaxed() = 1 +1822756279251438:1822756281786034 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756281784404:1822756281786414 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756281787624:1822756281788354 116426:116430 hsa_signal_destroy() = 0 +1822756282412728:1822756282413418 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756288848298:1822756288850038 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756288864098:1822756288864638 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756288865229:1822756288865759 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756288868489:1822756288869379 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756288869769:1822756288870639 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756288871279:1822756288872189 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756289457682:1822756289458032 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756289459622:1822756289460152 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756289461262:1822756289463962 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16d10) = 0 +1822756289464822:1822756289470782 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16cd0) = 0 +1822756289471532:1822756289474812 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756291101543:1822756291106103 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756291108183:1822756291109533 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756291110623:1822756291111483 116426:116430 hsa_signal_load_relaxed() = 1 +1822756289475482:1822756291113943 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756291112603:1822756291114723 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756291115363:1822756291115923 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756291116453:1822756291117273 116426:116430 hsa_signal_destroy() = 0 +1822756291118673:1822756291119283 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756291148233:1822756291148843 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756291153273:1822756291153883 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756291159793:1822756291160803 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 34 +1822756291161813:1822756291162463 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 34 +1822756291163343:1822756291164443 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756291165103:1822756291165443 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756291166523:1822756291167373 116426:116426 hsa_signal_store_relaxed(, 34) = void +1822756291169583:1822756291170193 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756291179163:1822756291179763 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756291182123:1822756291182723 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756291183783:1822756291184533 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756291184983:1822756291185303 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 35 +1822756291185733:1822756291186063 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 34 +1822756291186703:1822756291187013 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756291187463:1822756291187953 116426:116426 hsa_signal_store_relaxed(, 35) = void +1822756291189463:1822756292448332 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756292453302:1822756292453972 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756292456812:1822756292458212 116426:116426 hsa_signal_destroy() = 0 +1822756292460142:1822756292460632 116426:116426 hsa_signal_destroy() = 0 +1822756292462052:1822756292462672 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756292463182:1822756292463792 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756292464652:1822756292465182 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756292465642:1822756292466092 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756292466682:1822756292466992 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756292468102:1822756292468702 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756292469212:1822756292470182 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16d70) = 0 +1822756292470702:1822756292474302 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16d30) = 0 +1822756292474842:1822756292476332 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756295004188:1822756295008858 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756295011148:1822756295012258 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756295013478:1822756295014498 116426:116430 hsa_signal_load_relaxed() = 1 +1822756292476852:1822756295017188 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756295015608:1822756295017618 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756295019098:1822756295019828 116426:116430 hsa_signal_destroy() = 0 +1822756295643012:1822756295643682 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756302168333:1822756302169693 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756302184583:1822756302185133 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756302195943:1822756302196483 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756302198803:1822756302199653 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756302200053:1822756302200993 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756302201553:1822756302202443 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756302807107:1822756302807517 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756302809367:1822756302809897 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756302810867:1822756302813307 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16dd0) = 0 +1822756302814057:1822756302820017 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16d90) = 0 +1822756302820877:1822756302824177 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756304459028:1822756304463638 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756304465998:1822756304467108 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756304468068:1822756304468918 116426:116430 hsa_signal_load_relaxed() = 1 +1822756302824677:1822756304471248 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756304469868:1822756304471798 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756304472618:1822756304473268 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756304473398:1822756304474218 116426:116430 hsa_signal_destroy() = 0 +1822756304475658:1822756304476258 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756304492858:1822756304493468 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756304497458:1822756304498058 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756304504638:1822756304505688 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 36 +1822756304506618:1822756304507108 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 36 +1822756304508008:1822756304509098 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756304509798:1822756304510228 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756304511328:1822756304512238 116426:116426 hsa_signal_store_relaxed(, 36) = void +1822756304514658:1822756304515268 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756304519858:1822756304520458 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756304522798:1822756304523398 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756304524588:1822756304525338 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756304528538:1822756304528868 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 37 +1822756304529328:1822756304529648 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 36 +1822756304530298:1822756304530628 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756304531068:1822756304531558 116426:116426 hsa_signal_store_relaxed(, 37) = void +1822756304533388:1822756305800267 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756305804497:1822756305805007 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756305807697:1822756305809007 116426:116426 hsa_signal_destroy() = 0 +1822756305810787:1822756305811477 116426:116426 hsa_signal_destroy() = 0 +1822756305812517:1822756305813077 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756305813527:1822756305814057 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756305815057:1822756305815547 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756305815957:1822756305816367 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756305816777:1822756305817047 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756305818097:1822756305818627 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756305819077:1822756305819777 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16e30) = 0 +1822756305820357:1822756305823757 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16df0) = 0 +1822756305824227:1822756305825357 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756308461164:1822756308465754 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756308467914:1822756308469014 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756308470044:1822756308471064 116426:116430 hsa_signal_load_relaxed() = 1 +1822756305825817:1822756308473644 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756308472014:1822756308474024 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756308475374:1822756308476104 116426:116430 hsa_signal_destroy() = 0 +1822756309105648:1822756309106338 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756315563309:1822756315564549 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756315578249:1822756315578789 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756315579409:1822756315579939 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756315582279:1822756315583489 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756315584089:1822756315584729 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756315597089:1822756315598359 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756316213533:1822756316214043 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756316215563:1822756316216093 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756316217123:1822756316219623 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16e90) = 0 +1822756316220633:1822756316226453 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16e50) = 0 +1822756316227193:1822756316230983 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756317853733:1822756317858313 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756317860603:1822756317861723 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756317862883:1822756317863733 116426:116430 hsa_signal_load_relaxed() = 1 +1822756316231503:1822756317866083 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756317864733:1822756317866883 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756317867523:1822756317868023 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756317868483:1822756317869323 116426:116430 hsa_signal_destroy() = 0 +1822756317871013:1822756317871623 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756317888563:1822756317889173 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756317893843:1822756317894443 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756317900393:1822756317901403 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 38 +1822756317902423:1822756317903073 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 38 +1822756317903953:1822756317905143 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756317905953:1822756317906293 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756317907383:1822756317908213 116426:116426 hsa_signal_store_relaxed(, 38) = void +1822756317910534:1822756317911134 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756317915144:1822756317915744 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756317918724:1822756317919324 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756317920454:1822756317921194 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756317921644:1822756317921964 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 39 +1822756317922394:1822756317922724 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 38 +1822756317923354:1822756317923664 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756317926764:1822756317927264 116426:116426 hsa_signal_store_relaxed(, 39) = void +1822756317928944:1822756319186242 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756319190502:1822756319191082 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756319193992:1822756319195002 116426:116426 hsa_signal_destroy() = 0 +1822756319196632:1822756319197072 116426:116426 hsa_signal_destroy() = 0 +1822756319198282:1822756319198822 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756319199282:1822756319199822 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756319200972:1822756319201452 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756319201852:1822756319202272 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756319202672:1822756319202942 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756319203862:1822756319204392 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756319204832:1822756319205582 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16ef0) = 0 +1822756319206032:1822756319209612 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16eb0) = 0 +1822756319210072:1822756319211422 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756321790538:1822756321795168 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756321797448:1822756321798558 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756321799788:1822756321800809 116426:116430 hsa_signal_load_relaxed() = 1 +1822756319211872:1822756321803489 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756321801899:1822756321803919 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756321805239:1822756321805979 116426:116430 hsa_signal_destroy() = 0 +1822756322436933:1822756322437623 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756328908263:1822756328909283 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756328923633:1822756328924173 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756328924913:1822756328925453 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756328928593:1822756328929493 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756328930164:1822756328931024 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756328931644:1822756328932514 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756329534627:1822756329535157 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756329536947:1822756329537477 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756329548667:1822756329551407 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16f50) = 0 +1822756329552377:1822756329558058 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16f10) = 0 +1822756329558968:1822756329562398 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756331196558:1822756331201058 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756331203238:1822756331204448 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756331205408:1822756331206268 116426:116430 hsa_signal_load_relaxed() = 1 +1822756329562908:1822756331208428 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756331207078:1822756331209208 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756331210218:1822756331211088 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756331210768:1822756331211918 116426:116430 hsa_signal_destroy() = 0 +1822756331213528:1822756331214138 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756331230678:1822756331231288 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756331235188:1822756331235798 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756331242128:1822756331243018 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 40 +1822756331244028:1822756331244678 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 40 +1822756331245858:1822756331246998 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756331247778:1822756331248208 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756331249288:1822756331250128 116426:116426 hsa_signal_store_relaxed(, 40) = void +1822756331252328:1822756331252928 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756331256788:1822756331257388 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756331259568:1822756331260168 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756331261298:1822756331262038 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756331262488:1822756331262818 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 41 +1822756331263258:1822756331263568 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 40 +1822756331264208:1822756331264518 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756331264959:1822756331265449 116426:116426 hsa_signal_store_relaxed(, 41) = void +1822756331266919:1822756332530667 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756332535547:1822756332536187 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756332541657:1822756332542787 116426:116426 hsa_signal_destroy() = 0 +1822756332544447:1822756332544937 116426:116426 hsa_signal_destroy() = 0 +1822756332546257:1822756332546877 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756332547387:1822756332547997 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756332548987:1822756332549517 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756332549977:1822756332550427 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756332550897:1822756332551197 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756332552157:1822756332552757 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756332553267:1822756332554087 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce16fb0) = 0 +1822756332554687:1822756332558237 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16f70) = 0 +1822756332558787:1822756332560287 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756335111233:1822756335115813 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756335118003:1822756335119103 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756335120133:1822756335121143 116426:116430 hsa_signal_load_relaxed() = 1 +1822756332560827:1822756335123523 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756335121943:1822756335123943 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756335125333:1822756335126073 116426:116430 hsa_signal_destroy() = 0 +1822756335751297:1822756335751977 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756342386799:1822756342388719 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756342404030:1822756342404560 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756342405230:1822756342405760 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756342408230:1822756342409260 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756342410010:1822756342410930 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756342411890:1822756342412660 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756343018233:1822756343018853 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756343030733:1822756343031293 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756343032233:1822756343035274 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17010) = 0 +1822756343036264:1822756343041924 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce16fd0) = 0 +1822756343044534:1822756343047224 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756344839685:1822756344844345 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756344846355:1822756344847455 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756344848415:1822756344849275 116426:116430 hsa_signal_load_relaxed() = 1 +1822756343047724:1822756344851465 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756344850085:1822756344852015 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756344852845:1822756344853545 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756344853675:1822756344854515 116426:116430 hsa_signal_destroy() = 0 +1822756344856185:1822756344856785 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756344873535:1822756344874145 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756344878265:1822756344878865 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756344885325:1822756344886095 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 42 +1822756344886885:1822756344887545 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 42 +1822756344888365:1822756344889465 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756344890185:1822756344890535 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756344891605:1822756344892435 116426:116426 hsa_signal_store_relaxed(, 42) = void +1822756344894745:1822756344895355 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756344899885:1822756344900485 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756344902835:1822756344903445 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756344904475:1822756344905275 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756344905725:1822756344906035 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 43 +1822756344906485:1822756344906815 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 42 +1822756344907465:1822756344907775 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756344908225:1822756344908705 116426:116426 hsa_signal_store_relaxed(, 43) = void +1822756344910255:1822756346168673 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756346173423:1822756346173943 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756346176704:1822756346177914 116426:116426 hsa_signal_destroy() = 0 +1822756346179684:1822756346180374 116426:116426 hsa_signal_destroy() = 0 +1822756346181454:1822756346181994 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756346185224:1822756346185764 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756346186694:1822756346187184 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756346187594:1822756346188004 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756346188414:1822756346188684 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756346189764:1822756346190294 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756346190744:1822756346191414 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17070) = 0 +1822756346191944:1822756346195344 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17030) = 0 +1822756346195824:1822756346197184 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756348757620:1822756348762230 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756348764340:1822756348765440 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756348766460:1822756348767490 116426:116430 hsa_signal_load_relaxed() = 1 +1822756346197634:1822756348769940 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756348768290:1822756348770310 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756348771720:1822756348772460 116426:116430 hsa_signal_destroy() = 0 +1822756349399344:1822756349400034 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756355857885:1822756355858855 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756355873775:1822756355874305 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756355875085:1822756355875615 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756355877975:1822756355878855 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756355879455:1822756355880105 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756355880745:1822756355881625 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756356499239:1822756356499759 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756356501859:1822756356502459 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756356503579:1822756356505809 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce170d0) = 0 +1822756356506659:1822756356512969 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17090) = 0 +1822756356514029:1822756356517109 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756358127119:1822756358131720 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756358133740:1822756358134850 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756358139560:1822756358140440 116426:116430 hsa_signal_load_relaxed() = 1 +1822756356517659:1822756358142630 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756358141280:1822756358143410 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756358144480:1822756358144920 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756358145400:1822756358146230 116426:116430 hsa_signal_destroy() = 0 +1822756358147380:1822756358147980 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756358164340:1822756358164950 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756358169200:1822756358169810 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756358176030:1822756358176880 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 44 +1822756358177830:1822756358178320 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 44 +1822756358179580:1822756358180770 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756358181430:1822756358181780 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756358182880:1822756358183690 116426:116426 hsa_signal_store_relaxed(, 44) = void +1822756358186130:1822756358186740 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756358190650:1822756358191250 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756358193620:1822756358194230 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756358195190:1822756358196010 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756358196450:1822756358196770 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 45 +1822756358197210:1822756358197530 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 44 +1822756358198160:1822756358198480 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756358198920:1822756358199410 116426:116426 hsa_signal_store_relaxed(, 45) = void +1822756358201240:1822756359467758 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756359472678:1822756359473308 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756359476008:1822756359477528 116426:116426 hsa_signal_destroy() = 0 +1822756359479598:1822756359480068 116426:116426 hsa_signal_destroy() = 0 +1822756359481278:1822756359481898 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756359482408:1822756359483008 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756359483928:1822756359484448 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756359484908:1822756359485358 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756359494888:1822756359495208 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756359496328:1822756359496938 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756359497438:1822756359498268 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17130) = 0 +1822756359498858:1822756359502368 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce170f0) = 0 +1822756359502898:1822756359504178 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756362005454:1822756362010054 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756362012144:1822756362013254 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756362014274:1822756362015294 116426:116430 hsa_signal_load_relaxed() = 1 +1822756359504708:1822756362017734 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756362016104:1822756362018114 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756362019474:1822756362020224 116426:116430 hsa_signal_destroy() = 0 +1822756362646989:1822756362647669 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756369149300:1822756369150970 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756369165060:1822756369165600 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756369166440:1822756369166970 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756369169420:1822756369170320 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756369170710:1822756369171940 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756369172490:1822756369173700 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756369756064:1822756369756394 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756369758214:1822756369758744 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756369759744:1822756369762374 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17190) = 0 +1822756369763374:1822756369769154 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17150) = 0 +1822756369769914:1822756369773104 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756371466644:1822756371471235 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756371473455:1822756371474615 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756371475705:1822756371476565 116426:116430 hsa_signal_load_relaxed() = 1 +1822756369773704:1822756371478845 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756371477505:1822756371479605 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756371480175:1822756371480695 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756371484755:1822756371485505 116426:116430 hsa_signal_destroy() = 0 +1822756371492675:1822756371493275 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756371509415:1822756371510075 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756371513605:1822756371514205 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756371519665:1822756371520525 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 46 +1822756371521345:1822756371521995 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 46 +1822756371522835:1822756371523915 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756371524625:1822756371525055 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756371526085:1822756371526995 116426:116426 hsa_signal_store_relaxed(, 46) = void +1822756371529375:1822756371529975 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756371533615:1822756371534225 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756371536375:1822756371536985 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756371538055:1822756371538755 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756371539205:1822756371539525 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 47 +1822756371539965:1822756371540275 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 46 +1822756371540925:1822756371541245 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756371541685:1822756371542175 116426:116426 hsa_signal_store_relaxed(, 47) = void +1822756371543975:1822756372819853 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756372824473:1822756372825133 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756372827643:1822756372828973 116426:116426 hsa_signal_destroy() = 0 +1822756372830603:1822756372831043 116426:116426 hsa_signal_destroy() = 0 +1822756372832143:1822756372832693 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756372833143:1822756372833683 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756372834503:1822756372834993 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756372835493:1822756372835903 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756372836313:1822756372836583 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756372837653:1822756372838183 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756372838653:1822756372839413 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce171f0) = 0 +1822756372842663:1822756372845943 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce171b0) = 0 +1822756372846413:1822756372847563 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756375464660:1822756375469260 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756375471390:1822756375472490 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756375473510:1822756375474530 116426:116430 hsa_signal_load_relaxed() = 1 +1822756372848033:1822756375476910 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756375475340:1822756375477340 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756375478810:1822756375479550 116426:116430 hsa_signal_destroy() = 0 +1822756376131174:1822756376131914 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756382609966:1822756382611346 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756382625626:1822756382626156 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756382626766:1822756382627296 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756382629816:1822756382630546 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756382630936:1822756382631836 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756382632496:1822756382633396 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756383217890:1822756383218400 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756383219880:1822756383220410 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756383221390:1822756383224060 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17250) = 0 +1822756383224840:1822756383230660 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17210) = 0 +1822756383231480:1822756383234680 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756384853770:1822756384858390 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756384860360:1822756384861470 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756384862430:1822756384863290 116426:116430 hsa_signal_load_relaxed() = 1 +1822756383235240:1822756384865850 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756384864370:1822756384866310 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756384867600:1822756384868580 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756384867870:1822756384869010 116426:116430 hsa_signal_destroy() = 0 +1822756384870760:1822756384871360 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756384895300:1822756384895920 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756384899750:1822756384900360 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756384906240:1822756384907120 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 48 +1822756384907950:1822756384908600 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 48 +1822756384909500:1822756384910590 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756384911270:1822756384911620 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756384912660:1822756384913510 116426:116426 hsa_signal_store_relaxed(, 48) = void +1822756384915930:1822756384916540 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756384920480:1822756384921090 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756384923481:1822756384924091 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756384925011:1822756384925771 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756384926221:1822756384926551 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 49 +1822756384926991:1822756384927311 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 48 +1822756384927961:1822756384928271 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756384928721:1822756384929201 116426:116426 hsa_signal_store_relaxed(, 49) = void +1822756384930901:1822756386200168 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756386204778:1822756386205348 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756386208008:1822756386209049 116426:116426 hsa_signal_destroy() = 0 +1822756386210699:1822756386211379 116426:116426 hsa_signal_destroy() = 0 +1822756386212419:1822756386212969 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756386213419:1822756386213949 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756386214879:1822756386215349 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756386215759:1822756386216169 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756386216579:1822756386216849 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756386217759:1822756386218289 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756386218729:1822756386219399 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce172b0) = 0 +1822756386219899:1822756386223309 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17270) = 0 +1822756386223769:1822756386224889 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756388771885:1822756388776485 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756388782935:1822756388784045 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756388785065:1822756388786085 116426:116430 hsa_signal_load_relaxed() = 1 +1822756386225349:1822756388788545 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756388786895:1822756388788915 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756388790365:1822756388791105 116426:116430 hsa_signal_destroy() = 0 +1822756389414899:1822756389415579 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756395867020:1822756395868360 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756395883290:1822756395883820 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756395884710:1822756395885250 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756395887650:1822756395888510 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756395888910:1822756395889540 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756395890330:1822756395891140 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756396502764:1822756396503544 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756396505054:1822756396505594 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756396506604:1822756396509234 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17310) = 0 +1822756396510544:1822756396516634 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce172d0) = 0 +1822756396517374:1822756396520904 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756398142585:1822756398147165 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756398149325:1822756398150485 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756398151565:1822756398152425 116426:116430 hsa_signal_load_relaxed() = 1 +1822756396521594:1822756398154725 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756398153375:1822756398155525 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756398156045:1822756398156555 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756398157275:1822756398157995 116426:116430 hsa_signal_destroy() = 0 +1822756398159015:1822756398159625 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756398176525:1822756398177135 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756398181185:1822756398181785 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756398187795:1822756398188575 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 50 +1822756398203815:1822756398204315 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 50 +1822756398205215:1822756398206615 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756398207345:1822756398207695 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756398208725:1822756398209555 116426:116426 hsa_signal_store_relaxed(, 50) = void +1822756398212055:1822756398212665 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756398216695:1822756398217305 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756398220045:1822756398220655 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756398221815:1822756398222555 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756398223005:1822756398223325 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 51 +1822756398223765:1822756398224085 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 50 +1822756398224725:1822756398225045 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756398225485:1822756398225975 116426:116426 hsa_signal_store_relaxed(, 51) = void +1822756398227755:1822756399495114 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756399499774:1822756399500454 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756399503324:1822756399504784 116426:116426 hsa_signal_destroy() = 0 +1822756399506744:1822756399507234 116426:116426 hsa_signal_destroy() = 0 +1822756399508394:1822756399509014 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756399509524:1822756399510124 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756399510924:1822756399511454 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756399511914:1822756399512514 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756399512974:1822756399513284 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756399514234:1822756399514834 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756399515354:1822756399516184 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17370) = 0 +1822756399516784:1822756399520314 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17330) = 0 +1822756399520834:1822756399522084 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756402036219:1822756402040859 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756402042889:1822756402043999 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756402045149:1822756402046169 116426:116430 hsa_signal_load_relaxed() = 1 +1822756399522604:1822756402054410 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756402052760:1822756402054790 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756402056010:1822756402056740 116426:116430 hsa_signal_destroy() = 0 +1822756402683063:1822756402683743 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756409201595:1822756409202345 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756409216645:1822756409217185 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756409217765:1822756409218295 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756409220905:1822756409221795 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756409222185:1822756409223055 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756409223595:1822756409224495 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756409806429:1822756409807079 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756409808789:1822756409809319 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756409810269:1822756409812739 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce173d0) = 0 +1822756409813649:1822756409819329 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17390) = 0 +1822756409819899:1822756409823259 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756411463670:1822756411468250 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756411470530:1822756411471640 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756411472590:1822756411473450 116426:116430 hsa_signal_load_relaxed() = 1 +1822756409823829:1822756411475820 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756411474470:1822756411476620 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756411477090:1822756411477770 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756411478240:1822756411479080 116426:116430 hsa_signal_destroy() = 0 +1822756411480400:1822756411481010 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756411508230:1822756411508840 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756411512960:1822756411513570 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756411519340:1822756411520400 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 52 +1822756411521190:1822756411521840 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 52 +1822756411522740:1822756411524190 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756411524880:1822756411525230 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756411528230:1822756411529070 116426:116426 hsa_signal_store_relaxed(, 52) = void +1822756411531220:1822756411531820 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756411536310:1822756411536920 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756411539480:1822756411540080 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756411541200:1822756411542030 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756411542470:1822756411542780 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 53 +1822756411543220:1822756411543530 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 52 +1822756411544180:1822756411544500 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756411544940:1822756411545420 116426:116426 hsa_signal_store_relaxed(, 53) = void +1822756411546860:1822756412816318 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756412820658:1822756412821168 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756412823928:1822756412824938 116426:116426 hsa_signal_destroy() = 0 +1822756412826508:1822756412826948 116426:116426 hsa_signal_destroy() = 0 +1822756412828048:1822756412828598 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756412829048:1822756412829578 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756412830428:1822756412830918 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756412831318:1822756412831738 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756412832278:1822756412832548 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756412833708:1822756412834238 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756412834698:1822756412835438 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17430) = 0 +1822756412835888:1822756412839318 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce173f0) = 0 +1822756412839778:1822756412840988 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756415463065:1822756415467665 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756415470015:1822756415471115 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756415472145:1822756415473175 116426:116430 hsa_signal_load_relaxed() = 1 +1822756412841448:1822756415475715 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756415474135:1822756415476145 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756415477345:1822756415478085 116426:116430 hsa_signal_destroy() = 0 +1822756416120109:1822756416120839 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756422620081:1822756422621361 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756422635791:1822756422636331 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756422636901:1822756422637431 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756422639641:1822756422640511 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756422641011:1822756422641881 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756422642601:1822756422643481 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756423242725:1822756423243125 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756423244565:1822756423245095 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756423245785:1822756423248175 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17490) = 0 +1822756423249145:1822756423255145 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17450) = 0 +1822756423255835:1822756423258935 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756424885185:1822756424889805 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756424891705:1822756424892815 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756424893895:1822756424894755 116426:116430 hsa_signal_load_relaxed() = 1 +1822756423259495:1822756424896935 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756424895565:1822756424897505 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756424898615:1822756424899135 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756424899555:1822756424900385 116426:116430 hsa_signal_destroy() = 0 +1822756424901275:1822756424901885 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756424918565:1822756424919175 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756424923075:1822756424923685 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756424930055:1822756424930975 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 54 +1822756424931975:1822756424932635 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 54 +1822756424933515:1822756424934805 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756424935715:1822756424936145 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756424937755:1822756424938685 116426:116426 hsa_signal_store_relaxed(, 54) = void +1822756424940865:1822756424941475 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756424945335:1822756424945945 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756424958905:1822756424959515 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756424960705:1822756424961505 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756424961955:1822756424962275 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 55 +1822756424962715:1822756424963035 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 54 +1822756424963895:1822756424964205 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756424964645:1822756424965135 116426:116426 hsa_signal_store_relaxed(, 55) = void +1822756424966596:1822756426201633 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756426206343:1822756426206933 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756426209723:1822756426211103 116426:116426 hsa_signal_destroy() = 0 +1822756426212663:1822756426213353 116426:116426 hsa_signal_destroy() = 0 +1822756426214583:1822756426215133 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756426215583:1822756426216113 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756426216753:1822756426217233 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756426217633:1822756426218043 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756426218453:1822756426218723 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756426219793:1822756426220323 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756426220793:1822756426221613 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce174f0) = 0 +1822756426222093:1822756426225503 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce174b0) = 0 +1822756426226043:1822756426227273 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756428759799:1822756428764439 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756428766459:1822756428767569 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756428768719:1822756428769739 116426:116430 hsa_signal_load_relaxed() = 1 +1822756426227723:1822756428772549 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756428770849:1822756428772879 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756428774579:1822756428775319 116426:116430 hsa_signal_destroy() = 0 +1822756429404043:1822756429404713 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756435803005:1822756435804415 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756435818365:1822756435818895 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756435830865:1822756435831405 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756435833675:1822756435834555 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756435834945:1822756435835585 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756435836125:1822756435837375 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756436434389:1822756436434889 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756436436619:1822756436437149 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756436438459:1822756436440859 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17550) = 0 +1822756436441789:1822756436447589 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17510) = 0 +1822756436448259:1822756436451569 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756438074719:1822756438079319 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756438081529:1822756438082639 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756438083599:1822756438084459 116426:116430 hsa_signal_load_relaxed() = 1 +1822756436452079:1822756438086769 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756438085429:1822756438087519 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756438088209:1822756438088879 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756438088999:1822756438089829 116426:116430 hsa_signal_destroy() = 0 +1822756438091189:1822756438091799 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756438108159:1822756438108769 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756438112639:1822756438113249 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756438119379:1822756438120559 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 56 +1822756438121349:1822756438121999 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 56 +1822756438122819:1822756438124109 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756438124799:1822756438125229 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756438126239:1822756438127009 116426:116426 hsa_signal_store_relaxed(, 56) = void +1822756438129489:1822756438130089 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756438133879:1822756438134490 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756438136820:1822756438137420 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756438138710:1822756438139440 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756438139890:1822756438140200 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 57 +1822756438143150:1822756438143470 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 56 +1822756438144130:1822756438144460 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756438144900:1822756438145390 116426:116426 hsa_signal_store_relaxed(, 57) = void +1822756438146840:1822756439415178 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756439419738:1822756439420408 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756439423428:1822756439424778 116426:116426 hsa_signal_destroy() = 0 +1822756439426858:1822756439427348 116426:116426 hsa_signal_destroy() = 0 +1822756439428938:1822756439429558 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756439430058:1822756439430658 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756439431708:1822756439432288 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756439432738:1822756439433308 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756439433768:1822756439434078 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756439435188:1822756439435788 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756439436318:1822756439437128 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce175b0) = 0 +1822756439437748:1822756439441288 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17570) = 0 +1822756439441818:1822756439443138 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756441963924:1822756441968594 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756441970784:1822756441971894 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756441972914:1822756441973934 116426:116430 hsa_signal_load_relaxed() = 1 +1822756439443668:1822756441976504 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756441974894:1822756441976894 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756441978174:1822756441978914 116426:116430 hsa_signal_destroy() = 0 +1822756442602578:1822756442603258 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756449040879:1822756449041969 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756449057869:1822756449058409 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756449059099:1822756449059629 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756449062629:1822756449063509 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756449064109:1822756449064979 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756449075339:1822756449076229 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756449675453:1822756449675943 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756449677793:1822756449678333 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756449679203:1822756449681913 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17610) = 0 +1822756449682953:1822756449689203 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce175d0) = 0 +1822756449689933:1822756449692973 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756451461874:1822756451466454 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756451468644:1822756451469754 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756451470924:1822756451471784 116426:116430 hsa_signal_load_relaxed() = 1 +1822756449693613:1822756451474244 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756451472904:1822756451475004 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756451475834:1822756451476534 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756451476654:1822756451477484 116426:116430 hsa_signal_destroy() = 0 +1822756451479154:1822756451479764 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756451495445:1822756451496055 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756451500285:1822756451500885 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756451506895:1822756451508055 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 58 +1822756451509205:1822756451509695 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 58 +1822756451510515:1822756451511665 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756451512655:1822756451513075 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756451514135:1822756451514915 116426:116426 hsa_signal_store_relaxed(, 58) = void +1822756451517095:1822756451517705 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756451521655:1822756451522255 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756451524505:1822756451525115 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756451526185:1822756451526925 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756451527365:1822756451527685 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 59 +1822756451528135:1822756451528445 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 58 +1822756451529095:1822756451529405 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756451529855:1822756451530335 116426:116426 hsa_signal_store_relaxed(, 59) = void +1822756451534675:1822756452801943 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756452807493:1822756452808063 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756452811443:1822756452812863 116426:116426 hsa_signal_destroy() = 0 +1822756452814283:1822756452814723 116426:116426 hsa_signal_destroy() = 0 +1822756452815783:1822756452816343 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756452816793:1822756452817323 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756452818063:1822756452818543 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756452818953:1822756452819363 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756452819773:1822756452820043 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756452820943:1822756452821483 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756452821923:1822756452822683 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17670) = 0 +1822756452823133:1822756452826643 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17630) = 0 +1822756452827123:1822756452828413 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756455463779:1822756455468369 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756455470609:1822756455471719 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756455472939:1822756455473949 116426:116430 hsa_signal_load_relaxed() = 1 +1822756452828873:1822756455476619 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756455475039:1822756455477039 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756455478349:1822756455479089 116426:116430 hsa_signal_destroy() = 0 +1822756456116823:1822756456117483 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756462613095:1822756462614455 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756462628255:1822756462628795 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756462629555:1822756462630085 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756462632565:1822756462633455 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756462633845:1822756462634485 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756462635045:1822756462635935 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756463214449:1822756463214959 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756463216739:1822756463217269 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756463227509:1822756463230229 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce176d0) = 0 +1822756463231049:1822756463236839 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17690) = 0 +1822756463237579:1822756463240969 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756464917130:1822756464921790 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756464923690:1822756464924800 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756464925750:1822756464926610 116426:116430 hsa_signal_load_relaxed() = 1 +1822756463241509:1822756464928800 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756464927420:1822756464929350 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756464930470:1822756464931310 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756464931030:1822756464932160 116426:116430 hsa_signal_destroy() = 0 +1822756464933730:1822756464934340 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756464951110:1822756464951720 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756464955630:1822756464956230 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756464962600:1822756464963460 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 60 +1822756464964260:1822756464964920 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 60 +1822756464966000:1822756464967360 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756464968050:1822756464968480 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756464969460:1822756464970240 116426:116426 hsa_signal_store_relaxed(, 60) = void +1822756464972420:1822756464973030 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756464977270:1822756464977880 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756464980190:1822756464980800 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756464981840:1822756464982600 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756464983040:1822756464983370 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 61 +1822756464983820:1822756464984140 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 60 +1822756464984960:1822756464985270 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756464985720:1822756464986210 116426:116426 hsa_signal_store_relaxed(, 61) = void +1822756464987820:1822756466247199 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756466251549:1822756466252139 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756466257199:1822756466258229 116426:116426 hsa_signal_destroy() = 0 +1822756466260039:1822756466260729 116426:116426 hsa_signal_destroy() = 0 +1822756466261859:1822756466262479 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756466262939:1822756466263469 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756466264619:1822756466265109 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756466265519:1822756466265939 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756466266349:1822756466266619 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756466267529:1822756466268059 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756466268519:1822756466269199 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17730) = 0 +1822756466269729:1822756466273329 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce176f0) = 0 +1822756466273799:1822756466275029 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756468839505:1822756468844105 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756468846215:1822756468847325 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756468848345:1822756468849365 116426:116430 hsa_signal_load_relaxed() = 1 +1822756466275499:1822756468851805 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756468850175:1822756468852175 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756468853545:1822756468854275 116426:116430 hsa_signal_destroy() = 0 +1822756469479689:1822756469480369 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756475914030:1822756475915310 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756475930580:1822756475931110 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756475931780:1822756475932310 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756475934760:1822756475935640 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756475936390:1822756475937300 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756475938140:1822756475939410 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756476553474:1822756476553914 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756476555684:1822756476556284 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756476557464:1822756476559804 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17790) = 0 +1822756476560914:1822756476566794 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17750) = 0 +1822756476567604:1822756476571444 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756478197164:1822756478201665 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756478203915:1822756478205065 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756478206025:1822756478206885 116426:116430 hsa_signal_load_relaxed() = 1 +1822756476580704:1822756478209055 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756478207685:1822756478209625 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756478210425:1822756478210935 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756478211295:1822756478212135 116426:116430 hsa_signal_destroy() = 0 +1822756478213345:1822756478213945 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756478230745:1822756478231555 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756478235775:1822756478236385 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756478242365:1822756478243235 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 62 +1822756478244315:1822756478244965 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 62 +1822756478245785:1822756478247205 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756478248155:1822756478248585 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756478249825:1822756478250595 116426:116426 hsa_signal_store_relaxed(, 62) = void +1822756478252995:1822756478253595 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756478259665:1822756478260275 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756478262835:1822756478263435 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756478264355:1822756478265095 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756478265545:1822756478265865 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 63 +1822756478266305:1822756478266635 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 62 +1822756478267275:1822756478267585 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756478268035:1822756478268525 116426:116426 hsa_signal_store_relaxed(, 63) = void +1822756478270365:1822756479527383 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756479532113:1822756479532753 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756479535313:1822756479536393 116426:116426 hsa_signal_destroy() = 0 +1822756479538343:1822756479538823 116426:116426 hsa_signal_destroy() = 0 +1822756479540073:1822756479540693 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756479543903:1822756479544513 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756479545263:1822756479545793 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756479546263:1822756479547193 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756479547653:1822756479547963 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756479548903:1822756479549503 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756479550003:1822756479550833 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce177f0) = 0 +1822756479551333:1822756479554883 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce177b0) = 0 +1822756479555483:1822756479556713 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756482075999:1822756482080619 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756482082589:1822756482083699 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756482084729:1822756482085749 116426:116430 hsa_signal_load_relaxed() = 1 +1822756479557243:1822756482088179 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756482086559:1822756482088569 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756482089989:1822756482090729 116426:116430 hsa_signal_destroy() = 0 +1822756482715913:1822756482716593 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756489221565:1822756489222725 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756489237335:1822756489237875 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756489238655:1822756489239185 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756489242275:1822756489243025 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756489243415:1822756489244285 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756489244935:1822756489245815 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756489828988:1822756489829508 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756489831628:1822756489832158 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756489833038:1822756489835538 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17850) = 0 +1822756489836198:1822756489841788 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17810) = 0 +1822756489842589:1822756489845829 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756491474349:1822756491478939 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756491481039:1822756491482149 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756491483099:1822756491483959 116426:116430 hsa_signal_load_relaxed() = 1 +1822756489846399:1822756491489979 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756491488619:1822756491490729 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756491491439:1822756491491889 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756491492679:1822756491493419 116426:116430 hsa_signal_destroy() = 0 +1822756491494579:1822756491495179 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756491511969:1822756491512579 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756491516689:1822756491517289 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756491522899:1822756491523869 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 64 +1822756491524859:1822756491525779 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 64 +1822756491526869:1822756491528099 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756491528949:1822756491529379 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756491530429:1822756491531529 116426:116426 hsa_signal_store_relaxed(, 64) = void +1822756491533819:1822756491534429 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756491538269:1822756491538869 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756491540929:1822756491541529 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756491542469:1822756491543159 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756491543599:1822756491543919 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 65 +1822756491544349:1822756491544679 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 64 +1822756491545319:1822756491545639 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756491546079:1822756491546569 116426:116426 hsa_signal_store_relaxed(, 65) = void +1822756491548069:1822756492841178 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756492845718:1822756492846328 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756492848748:1822756492850108 116426:116426 hsa_signal_destroy() = 0 +1822756492852068:1822756492852508 116426:116426 hsa_signal_destroy() = 0 +1822756492854008:1822756492854558 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756492855008:1822756492855548 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756492856348:1822756492856828 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756492857318:1822756492857728 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756492867748:1822756492868028 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756492869108:1822756492869638 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756492870088:1822756492870848 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce178b0) = 0 +1822756492871428:1822756492874808 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17870) = 0 +1822756492875268:1822756492876408 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756495465125:1822756495469705 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756495471815:1822756495472915 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756495473945:1822756495474955 116426:116430 hsa_signal_load_relaxed() = 1 +1822756492876878:1822756495477345 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756495475765:1822756495477775 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756495479265:1822756495480005 116426:116430 hsa_signal_destroy() = 0 +1822756496131059:1822756496131789 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756502614420:1822756502616020 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756502630690:1822756502631220 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756502631940:1822756502632470 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756502635130:1822756502636020 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756502636760:1822756502637300 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756502638110:1822756502639110 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756503221334:1822756503221684 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756503223544:1822756503224074 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756503225164:1822756503227664 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17910) = 0 +1822756503228714:1822756503234424 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce178d0) = 0 +1822756503235154:1822756503238144 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756504933065:1822756504937545 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756504939505:1822756504940615 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756504941695:1822756504942555 116426:116430 hsa_signal_load_relaxed() = 1 +1822756503238644:1822756504944895 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756504943525:1822756504945465 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756504946225:1822756504946735 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756504947115:1822756504947955 116426:116430 hsa_signal_destroy() = 0 +1822756504959095:1822756504959705 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756504975715:1822756504976325 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756504979915:1822756504980515 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756504985995:1822756504986865 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 66 +1822756504987685:1822756504988345 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 66 +1822756504989275:1822756504990375 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756504991085:1822756504991435 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756504992445:1822756504993135 116426:116426 hsa_signal_store_relaxed(, 66) = void +1822756504995255:1822756504995865 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756504999665:1822756505000275 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756505002765:1822756505003375 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756505004515:1822756505005315 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756505005755:1822756505006075 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 67 +1822756505006515:1822756505006835 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 66 +1822756505007485:1822756505007805 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756505008245:1822756505008745 116426:116426 hsa_signal_store_relaxed(, 67) = void +1822756505010205:1822756506275643 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756506280873:1822756506281383 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756506283903:1822756506284913 116426:116426 hsa_signal_destroy() = 0 +1822756506286683:1822756506287373 116426:116426 hsa_signal_destroy() = 0 +1822756506288643:1822756506289193 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756506289643:1822756506290173 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756506291333:1822756506291813 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756506292223:1822756506292643 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756506293053:1822756506293333 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756506294393:1822756506294923 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756506295373:1822756506296003 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17970) = 0 +1822756506302673:1822756506305913 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17930) = 0 +1822756506306463:1822756506307663 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756508845000:1822756508849620 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756508851640:1822756508852750 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756508853770:1822756508854790 116426:116430 hsa_signal_load_relaxed() = 1 +1822756506308133:1822756508857250 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756508855600:1822756508857600 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756508859110:1822756508859840 116426:116430 hsa_signal_destroy() = 0 +1822756509484644:1822756509485364 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756515921174:1822756515922604 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756515938035:1822756515938565 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756515939215:1822756515939745 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756515942515:1822756515943385 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756515943975:1822756515944845 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756515945475:1822756515946115 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756516558589:1822756516559119 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756516561179:1822756516561709 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756516563259:1822756516565689 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce179d0) = 0 +1822756516566699:1822756516572879 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17990) = 0 +1822756516573599:1822756516577129 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756518208409:1822756518212929 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756518214899:1822756518216009 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756518216959:1822756518217819 116426:116430 hsa_signal_load_relaxed() = 1 +1822756516577789:1822756518220269 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756518218919:1822756518220849 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756518221789:1822756518222669 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756518222459:1822756518223619 116426:116430 hsa_signal_destroy() = 0 +1822756518225029:1822756518225629 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756518250909:1822756518251519 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756518257419:1822756518258019 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756518263599:1822756518264470 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 68 +1822756518265400:1822756518266050 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 68 +1822756518266970:1822756518268420 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756518269140:1822756518269560 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756518270630:1822756518271320 116426:116426 hsa_signal_store_relaxed(, 68) = void +1822756518273830:1822756518274440 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756518278520:1822756518279130 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756518281500:1822756518282100 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756518283150:1822756518283960 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756518284400:1822756518284720 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 69 +1822756518285160:1822756518285480 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 68 +1822756518286130:1822756518286440 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756518286890:1822756518287370 116426:116426 hsa_signal_store_relaxed(, 69) = void +1822756518289080:1822756519552298 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756519556968:1822756519557588 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756519560608:1822756519561708 116426:116426 hsa_signal_destroy() = 0 +1822756519563648:1822756519564128 116426:116426 hsa_signal_destroy() = 0 +1822756519565338:1822756519565958 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756519566468:1822756519567068 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756519567958:1822756519568478 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756519568938:1822756519569388 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756519569848:1822756519570158 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756519571268:1822756519571868 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756519572398:1822756519573208 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17a30) = 0 +1822756519573758:1822756519577338 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce179f0) = 0 +1822756519577858:1822756519579158 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756522132064:1822756522136674 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756522142344:1822756522143464 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756522144494:1822756522145504 116426:116430 hsa_signal_load_relaxed() = 1 +1822756519579668:1822756522147944 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756522146314:1822756522148324 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756522149814:1822756522150544 116426:116430 hsa_signal_destroy() = 0 +1822756522773498:1822756522774178 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756529294160:1822756529295000 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756529310610:1822756529311140 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756529311720:1822756529312260 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756529314970:1822756529315870 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756529316260:1822756529316620 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756529317170:1822756529318050 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756529919754:1822756529920094 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756529921814:1822756529922344 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756529923034:1822756529925724 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17a90) = 0 +1822756529926614:1822756529932034 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17a50) = 0 +1822756529932644:1822756529936014 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756531603514:1822756531608114 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756531610264:1822756531611374 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756531612454:1822756531613324 116426:116430 hsa_signal_load_relaxed() = 1 +1822756529936884:1822756531615594 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756531614244:1822756531616374 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756531617114:1822756531617634 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756531618114:1822756531618944 116426:116430 hsa_signal_destroy() = 0 +1822756531620685:1822756531621295 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756531639365:1822756531639975 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756531643755:1822756531644355 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756531650555:1822756531651435 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 70 +1822756531661765:1822756531662565 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 70 +1822756531663455:1822756531664715 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756531665445:1822756531665795 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756531667055:1822756531667745 116426:116426 hsa_signal_store_relaxed(, 70) = void +1822756531669905:1822756531670515 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756531674865:1822756531675465 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756531677505:1822756531678105 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756531679095:1822756531679765 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756531680205:1822756531680525 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 71 +1822756531680965:1822756531681295 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 70 +1822756531681935:1822756531682255 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756531682695:1822756531683185 116426:116426 hsa_signal_store_relaxed(, 71) = void +1822756531684575:1822756532936873 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756532941263:1822756532941843 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756532945053:1822756532946373 116426:116426 hsa_signal_destroy() = 0 +1822756532948013:1822756532948453 116426:116426 hsa_signal_destroy() = 0 +1822756532949643:1822756532950193 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756532950643:1822756532951173 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756532952003:1822756532952483 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756532952893:1822756532953413 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756532953943:1822756532954213 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756532955113:1822756532955643 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756532956083:1822756532956823 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17af0) = 0 +1822756532957263:1822756532960753 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17ab0) = 0 +1822756532961243:1822756532962613 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756535505099:1822756535509699 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756535511930:1822756535513040 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756535514190:1822756535515210 116426:116430 hsa_signal_load_relaxed() = 1 +1822756532963073:1822756535517750 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756535516170:1822756535518180 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756535523980:1822756535524740 116426:116430 hsa_signal_destroy() = 0 +1822756536169604:1822756536170324 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756542621584:1822756542623274 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756542637954:1822756542638494 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756542639204:1822756542639745 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756542642225:1822756542643105 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756542643785:1822756542644415 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756542645055:1822756542645955 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756543220998:1822756543221658 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756543223338:1822756543223868 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756543224808:1822756543227188 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17b50) = 0 +1822756543228218:1822756543234278 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17b10) = 0 +1822756543234968:1822756543238208 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756544864819:1822756544869449 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756544871509:1822756544872629 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756544873579:1822756544874439 116426:116430 hsa_signal_load_relaxed() = 1 +1822756543238828:1822756544876899 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756544875529:1822756544877459 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756544878389:1822756544879219 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756544879019:1822756544880169 116426:116430 hsa_signal_destroy() = 0 +1822756544881359:1822756544881959 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756544899139:1822756544899959 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756544904189:1822756544904789 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756544910669:1822756544911529 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 72 +1822756544912339:1822756544912989 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 72 +1822756544913819:1822756544914909 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756544915609:1822756544915959 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756544925349:1822756544926149 116426:116426 hsa_signal_store_relaxed(, 72) = void +1822756544928339:1822756544928949 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756544932969:1822756544933569 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756544935649:1822756544936249 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756544937239:1822756544937999 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756544938439:1822756544938759 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 73 +1822756544939199:1822756544939519 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 72 +1822756544940169:1822756544940479 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756544940929:1822756544941419 116426:116426 hsa_signal_store_relaxed(, 73) = void +1822756544943209:1822756546207507 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756546212127:1822756546212637 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756546215117:1822756546216417 116426:116426 hsa_signal_destroy() = 0 +1822756546218337:1822756546218927 116426:116426 hsa_signal_destroy() = 0 +1822756546220048:1822756546220598 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756546221048:1822756546221578 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756546222418:1822756546223228 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756546223638:1822756546224048 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756546224448:1822756546224728 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756546225618:1822756546226148 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756546226598:1822756546227288 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17bb0) = 0 +1822756546227818:1822756546231298 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17b70) = 0 +1822756546231758:1822756546233058 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756548761644:1822756548766274 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756548768494:1822756548769604 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756548770624:1822756548771644 116426:116430 hsa_signal_load_relaxed() = 1 +1822756546233518:1822756548774314 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756548772664:1822756548774674 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756548775884:1822756548776624 116426:116430 hsa_signal_destroy() = 0 +1822756549400638:1822756549401328 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756555848429:1822756555849919 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756555864639:1822756555865179 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756555865719:1822756555866249 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756555868689:1822756555869549 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756555869939:1822756555870469 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756555871109:1822756555871899 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756556489893:1822756556490573 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756556492573:1822756556493173 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756556494103:1822756556496553 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17c10) = 0 +1822756556497623:1822756556504083 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17bd0) = 0 +1822756556504853:1822756556508263 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756558127463:1822756558132053 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756558134193:1822756558135303 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756558136383:1822756558137243 116426:116430 hsa_signal_load_relaxed() = 1 +1822756556508813:1822756558139633 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756558138283:1822756558140403 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756558141023:1822756558141523 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756558142123:1822756558142853 116426:116430 hsa_signal_destroy() = 0 +1822756558144383:1822756558144983 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756558168353:1822756558168963 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756558173423:1822756558174024 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756558180484:1822756558181424 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 74 +1822756558182584:1822756558183074 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 74 +1822756558183894:1822756558185184 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756558186034:1822756558186454 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756558187554:1822756558188384 116426:116426 hsa_signal_store_relaxed(, 74) = void +1822756558190924:1822756558191534 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756558195734:1822756558196334 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756558200404:1822756558201014 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756558202204:1822756558202864 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756558203314:1822756558203634 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 75 +1822756558204074:1822756558204384 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 74 +1822756558205034:1822756558205354 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756558205794:1822756558206284 116426:116426 hsa_signal_store_relaxed(, 75) = void +1822756558208404:1822756559462322 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756559467032:1822756559467702 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756559470782:1822756559472132 116426:116426 hsa_signal_destroy() = 0 +1822756559473912:1822756559474402 116426:116426 hsa_signal_destroy() = 0 +1822756559475712:1822756559476332 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756559476852:1822756559477452 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756559478152:1822756559478682 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756559479162:1822756559479602 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756559480072:1822756559480372 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756559481502:1822756559482112 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756559482632:1822756559483442 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17c70) = 0 +1822756559483992:1822756559487562 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17c30) = 0 +1822756559488092:1822756559489412 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756561996078:1822756562000678 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756562002908:1822756562004018 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756562005158:1822756562006178 116426:116430 hsa_signal_load_relaxed() = 1 +1822756559489932:1822756562008918 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756562007288:1822756562009288 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756562010938:1822756562011678 116426:116430 hsa_signal_destroy() = 0 +1822756562634952:1822756562635632 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756569142783:1822756569143863 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756569158623:1822756569159163 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756569159753:1822756569160293 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756569172693:1822756569173583 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756569173973:1822756569174853 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756569175423:1822756569176563 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756569764227:1822756569764707 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756569766317:1822756569766847 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756569767757:1822756569770397 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17cd0) = 0 +1822756569771467:1822756569776817 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17c90) = 0 +1822756569777557:1822756569781327 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756571468368:1822756571472968 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756571475158:1822756571476258 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756571477218:1822756571478078 116426:116430 hsa_signal_load_relaxed() = 1 +1822756569781887:1822756571480388 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756571479038:1822756571481138 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756571481638:1822756571482268 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756571482758:1822756571483588 116426:116430 hsa_signal_destroy() = 0 +1822756571484868:1822756571485478 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756571502678:1822756571503338 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756571507848:1822756571508458 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756571514318:1822756571515258 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 76 +1822756571516068:1822756571516718 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 76 +1822756571517678:1822756571518908 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756571519648:1822756571520078 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756571521348:1822756571522218 116426:116426 hsa_signal_store_relaxed(, 76) = void +1822756571524498:1822756571525098 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756571529249:1822756571529859 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756571532009:1822756571532609 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756571533589:1822756571534269 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756571534709:1822756571535079 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 77 +1822756571538689:1822756571539009 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 76 +1822756571539689:1822756571539999 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756571540439:1822756571540929 116426:116426 hsa_signal_store_relaxed(, 77) = void +1822756571542589:1822756572790887 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756572795237:1822756572795847 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756572798727:1822756572799737 116426:116426 hsa_signal_destroy() = 0 +1822756572801807:1822756572802247 116426:116426 hsa_signal_destroy() = 0 +1822756572803307:1822756572803857 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756572804317:1822756572804847 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756572806087:1822756572806847 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756572807257:1822756572807667 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756572808077:1822756572808347 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756572809417:1822756572809947 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756572810407:1822756572811147 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17d30) = 0 +1822756572811727:1822756572815097 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17cf0) = 0 +1822756572815567:1822756572816737 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756575465874:1822756575470454 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756575472904:1822756575474024 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756575475054:1822756575476064 116426:116430 hsa_signal_load_relaxed() = 1 +1822756572817207:1822756575478604 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756575477024:1822756575479024 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756575480314:1822756575481054 116426:116430 hsa_signal_destroy() = 0 +1822756576126478:1822756576127188 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756582613139:1822756582614489 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756582630019:1822756582630559 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756582631349:1822756582631879 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756582634329:1822756582635209 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756582635599:1822756582636359 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756582637019:1822756582637669 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756583256113:1822756583256613 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756583258503:1822756583259033 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756583260393:1822756583263063 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17d90) = 0 +1822756583264063:1822756583269843 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17d50) = 0 +1822756583270583:1822756583273763 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756584919624:1822756584924244 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756584926284:1822756584927384 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756584928534:1822756584929384 116426:116430 hsa_signal_load_relaxed() = 1 +1822756583274253:1822756584931764 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756584930394:1822756584932324 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756584933344:1822756584933864 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756584934254:1822756584935084 116426:116430 hsa_signal_destroy() = 0 +1822756584936484:1822756584937094 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756584954534:1822756584955344 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756584959644:1822756584960254 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756584966794:1822756584967904 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 78 +1822756584968894:1822756584969814 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 78 +1822756584970634:1822756584971744 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756584972524:1822756584973264 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756584974494:1822756584975344 116426:116426 hsa_signal_store_relaxed(, 78) = void +1822756584978004:1822756584978614 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756584982554:1822756584983154 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756584986134:1822756584986744 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756584987974:1822756584988784 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756584989234:1822756584989554 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 79 +1822756584989994:1822756584990314 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 78 +1822756584991114:1822756584991434 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756584991874:1822756584992364 116426:116426 hsa_signal_store_relaxed(, 79) = void +1822756584996324:1822756586253202 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756586257702:1822756586258312 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756586261112:1822756586262522 116426:116426 hsa_signal_destroy() = 0 +1822756586264412:1822756586265002 116426:116426 hsa_signal_destroy() = 0 +1822756586266062:1822756586266612 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756586267072:1822756586267602 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756586268532:1822756586269012 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756586269422:1822756586269832 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756586270372:1822756586270652 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756586271712:1822756586272242 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756586272692:1822756586273382 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17df0) = 0 +1822756586273972:1822756586277362 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17db0) = 0 +1822756586277822:1822756586279022 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756588825239:1822756588829869 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756588831989:1822756588833109 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756588834329:1822756588835349 116426:116430 hsa_signal_load_relaxed() = 1 +1822756586279492:1822756588838099 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756588836459:1822756588838469 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756588839959:1822756588840689 116426:116430 hsa_signal_destroy() = 0 +1822756589470713:1822756589471423 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756595917144:1822756595918534 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756595932674:1822756595933214 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756595933964:1822756595934504 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756595936884:1822756595937814 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756595938204:1822756595939064 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756595939724:1822756595940804 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756596561058:1822756596561678 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756596563388:1822756596563988 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756596574828:1822756596577428 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17e50) = 0 +1822756596578278:1822756596584718 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17e10) = 0 +1822756596585448:1822756596588988 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756598216088:1822756598220608 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756598222768:1822756598223878 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756598224838:1822756598225698 116426:116430 hsa_signal_load_relaxed() = 1 +1822756596589568:1822756598227868 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756598226508:1822756598228438 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756598229378:1822756598230318 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756598230118:1822756598231248 116426:116430 hsa_signal_destroy() = 0 +1822756598233578:1822756598234188 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756598251249:1822756598251849 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756598255629:1822756598256229 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756598262229:1822756598263119 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 80 +1822756598264079:1822756598264569 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 80 +1822756598265469:1822756598266729 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756598267419:1822756598267759 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756598268759:1822756598269579 116426:116426 hsa_signal_store_relaxed(, 80) = void +1822756598272019:1822756598272619 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756598276659:1822756598277269 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756598279549:1822756598280159 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756598280999:1822756598281759 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756598282209:1822756598282519 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 81 +1822756598282959:1822756598283279 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 80 +1822756598283919:1822756598284239 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756598284679:1822756598285159 116426:116426 hsa_signal_store_relaxed(, 81) = void +1822756598286709:1822756599558467 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756599563207:1822756599564177 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756599567037:1822756599568237 116426:116426 hsa_signal_destroy() = 0 +1822756599575647:1822756599576137 116426:116426 hsa_signal_destroy() = 0 +1822756599577347:1822756599577967 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756599578477:1822756599579077 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756599579797:1822756599580327 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756599580787:1822756599581357 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756599581807:1822756599582117 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756599583097:1822756599583707 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756599584207:1822756599585027 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17eb0) = 0 +1822756599585657:1822756599589207 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17e70) = 0 +1822756599589747:1822756599591057 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756602122783:1822756602127373 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756602129484:1822756602130594 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756602131614:1822756602132634 116426:116430 hsa_signal_load_relaxed() = 1 +1822756599591587:1822756602135064 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756602133444:1822756602135434 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756602136814:1822756602137544 116426:116430 hsa_signal_destroy() = 0 +1822756602767928:1822756602768598 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756609296249:1822756609297649 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756609312239:1822756609312779 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756609313469:1822756609314009 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756609316239:1822756609317129 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756609317539:1822756609318629 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756609319409:1822756609320019 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756609924703:1822756609925263 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756609927153:1822756609927753 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756609928743:1822756609931373 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17f10) = 0 +1822756609932163:1822756609937923 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17ed0) = 0 +1822756609938773:1822756609942173 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756611447553:1822756611451963 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756611453823:1822756611454923 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756611455893:1822756611456753 116426:116430 hsa_signal_load_relaxed() = 1 +1822756609951243:1822756611458903 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756611457563:1822756611459393 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756611460373:1822756611461023 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756611461153:1822756611461983 116426:116430 hsa_signal_destroy() = 0 +1822756611464243:1822756611464853 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756611481673:1822756611482283 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756611486713:1822756611487323 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756611493703:1822756611494573 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 82 +1822756611495373:1822756611496033 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 82 +1822756611496913:1822756611497993 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756611498703:1822756611499133 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756611500433:1822756611501263 116426:116426 hsa_signal_store_relaxed(, 82) = void +1822756611503453:1822756611504063 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756611508273:1822756611508883 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756611511463:1822756611512083 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756611513123:1822756611513783 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756611514233:1822756611514563 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 83 +1822756611515003:1822756611515323 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 82 +1822756611515963:1822756611516283 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756611516733:1822756611517223 116426:116426 hsa_signal_store_relaxed(, 83) = void +1822756611519023:1822756612774861 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756612779041:1822756612779611 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756612782841:1822756612784141 116426:116426 hsa_signal_destroy() = 0 +1822756612786331:1822756612786771 116426:116426 hsa_signal_destroy() = 0 +1822756612788311:1822756612788871 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756612789321:1822756612789851 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756612793441:1822756612793931 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756612794341:1822756612794761 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756612795171:1822756612795441 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756612796331:1822756612796871 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756612797311:1822756612798301 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17f70) = 0 +1822756612798841:1822756612802451 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17f30) = 0 +1822756612802931:1822756612804181 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756615466748:1822756615471318 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756615473548:1822756615474688 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756615475708:1822756615476728 116426:116430 hsa_signal_load_relaxed() = 1 +1822756612804641:1822756615479118 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756615477538:1822756615479558 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756615480928:1822756615481648 116426:116430 hsa_signal_destroy() = 0 +1822756616129963:1822756616130673 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756622613644:1822756622615194 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756622630134:1822756622630664 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756622631594:1822756622632124 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756622635234:1822756622636104 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756622636704:1822756622637344 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756622637904:1822756622638824 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756623237888:1822756623238658 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756623240178:1822756623240708 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756623241698:1822756623244128 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce17fd0) = 0 +1822756623244908:1822756623250548 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17f90) = 0 +1822756623251318:1822756623254998 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756624871958:1822756624876529 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756624878669:1822756624879779 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756624880739:1822756624881609 116426:116430 hsa_signal_load_relaxed() = 1 +1822756623255568:1822756624888549 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756624887039:1822756624888989 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756624890069:1822756624890529 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756624891069:1822756624891779 116426:116430 hsa_signal_destroy() = 0 +1822756624892909:1822756624893509 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756624909369:1822756624909979 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756624914169:1822756624914779 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756624921069:1822756624921949 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 84 +1822756624923199:1822756624923689 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 84 +1822756624924579:1822756624925649 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756624926359:1822756624926709 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756624927729:1822756624928559 116426:116426 hsa_signal_store_relaxed(, 84) = void +1822756624931039:1822756624931649 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756624944609:1822756624945209 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756624947259:1822756624947869 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756624948859:1822756624949619 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756624950069:1822756624950389 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 85 +1822756624950819:1822756624951139 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 84 +1822756624951969:1822756624952279 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756624952729:1822756624953219 116426:116426 hsa_signal_store_relaxed(, 85) = void +1822756624954819:1822756626203677 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756626207947:1822756626208547 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756626211137:1822756626212137 116426:116426 hsa_signal_destroy() = 0 +1822756626213977:1822756626214667 116426:116426 hsa_signal_destroy() = 0 +1822756626215847:1822756626216397 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756626216837:1822756626217367 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756626218217:1822756626218697 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756626219177:1822756626219677 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756626220147:1822756626220427 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756626226177:1822756626226707 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756626227157:1822756626227847 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18030) = 0 +1822756626228437:1822756626231777 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce17ff0) = 0 +1822756626232257:1822756626233507 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756628763723:1822756628768283 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756628770473:1822756628771603 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756628772623:1822756628773663 116426:116430 hsa_signal_load_relaxed() = 1 +1822756626233967:1822756628776103 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756628774463:1822756628776473 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756628777853:1822756628778583 116426:116430 hsa_signal_destroy() = 0 +1822756629404627:1822756629405297 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756635845378:1822756635846588 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756635860748:1822756635861288 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756635861948:1822756635862478 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756635864798:1822756635865688 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756635866439:1822756635867079 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756635868029:1822756635868759 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756636466262:1822756636466872 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756636468942:1822756636469472 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756636471042:1822756636473432 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18090) = 0 +1822756636474592:1822756636480612 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18050) = 0 +1822756636481152:1822756636484632 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756638109513:1822756638114073 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756638116493:1822756638117633 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756638118783:1822756638119653 116426:116430 hsa_signal_load_relaxed() = 1 +1822756636485182:1822756638121973 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756638120613:1822756638122553 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756638123273:1822756638123823 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756638124183:1822756638125003 116426:116430 hsa_signal_destroy() = 0 +1822756638136173:1822756638136783 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756638153193:1822756638154003 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756638157443:1822756638158053 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756638163823:1822756638164753 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 86 +1822756638165393:1822756638166043 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 86 +1822756638166933:1822756638168153 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756638168823:1822756638169253 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756638170653:1822756638171483 116426:116426 hsa_signal_store_relaxed(, 86) = void +1822756638173993:1822756638174603 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756638178603:1822756638179203 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756638182023:1822756638182623 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756638183913:1822756638184573 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756638185013:1822756638185333 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 87 +1822756638185773:1822756638186093 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 86 +1822756638186933:1822756638187263 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756638187703:1822756638188183 116426:116426 hsa_signal_store_relaxed(, 87) = void +1822756638189683:1822756639455002 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756639460042:1822756639460702 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756639463342:1822756639464712 116426:116426 hsa_signal_destroy() = 0 +1822756639466502:1822756639466992 116426:116426 hsa_signal_destroy() = 0 +1822756639468332:1822756639468962 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756639469462:1822756639470072 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756639470892:1822756639471422 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756639472062:1822756639472632 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756639473092:1822756639473402 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756639474552:1822756639475152 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756639475652:1822756639476462 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce180f0) = 0 +1822756639477052:1822756639480562 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce180b0) = 0 +1822756639483692:1822756639484972 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756642021538:1822756642026138 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756642028368:1822756642029478 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756642030498:1822756642031538 116426:116430 hsa_signal_load_relaxed() = 1 +1822756639485492:1822756642033998 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756642032348:1822756642034358 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756642035758:1822756642036478 116426:116430 hsa_signal_destroy() = 0 +1822756642663272:1822756642663952 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756649184143:1822756649184803 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756649198853:1822756649199393 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756649200403:1822756649200943 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756649203443:1822756649204353 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756649204963:1822756649205823 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756649206373:1822756649207403 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756649790257:1822756649790787 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756649792807:1822756649793337 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756649794287:1822756649796797 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18150) = 0 +1822756649797837:1822756649803587 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18110) = 0 +1822756649804317:1822756649807617 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756651471038:1822756651475578 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756651477738:1822756651479068 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756651480038:1822756651480898 116426:116430 hsa_signal_load_relaxed() = 1 +1822756649808187:1822756651483358 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756651482008:1822756651483938 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756651485098:1822756651485968 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756651485608:1822756651486738 116426:116430 hsa_signal_destroy() = 0 +1822756651488808:1822756651489408 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756651505528:1822756651506138 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756651518338:1822756651518948 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756651524938:1822756651525948 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 88 +1822756651526778:1822756651527428 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 88 +1822756651528258:1822756651529568 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756651530278:1822756651530708 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756651531898:1822756651532718 116426:116426 hsa_signal_store_relaxed(, 88) = void +1822756651535188:1822756651535798 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756651539998:1822756651540608 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756651542688:1822756651543298 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756651544188:1822756651544858 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756651545298:1822756651545618 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 89 +1822756651546068:1822756651546378 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 88 +1822756651547028:1822756651547338 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756651547788:1822756651548268 116426:116426 hsa_signal_store_relaxed(, 89) = void +1822756651549708:1822756652808727 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756652813527:1822756652814147 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756652816767:1822756652817907 116426:116426 hsa_signal_destroy() = 0 +1822756652820027:1822756652820467 116426:116426 hsa_signal_destroy() = 0 +1822756652821727:1822756652822277 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756652822727:1822756652823267 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756652824207:1822756652824687 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756652825097:1822756652825657 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756652826197:1822756652826467 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756652827527:1822756652828057 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756652828517:1822756652829307 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce181b0) = 0 +1822756652829777:1822756652833107 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18170) = 0 +1822756652833587:1822756652835047 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756655472343:1822756655476913 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756655482773:1822756655483893 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756655485023:1822756655486043 116426:116430 hsa_signal_load_relaxed() = 1 +1822756652835517:1822756655488433 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756655486853:1822756655488853 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756655490453:1822756655491173 116426:116430 hsa_signal_destroy() = 0 +1822756656135017:1822756656135747 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756662623309:1822756662624509 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756662639649:1822756662640189 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756662640839:1822756662641369 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756662644169:1822756662645049 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756662645439:1822756662645789 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756662646409:1822756662647299 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756663244763:1822756663245263 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756663246913:1822756663247443 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756663248123:1822756663250903 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18210) = 0 +1822756663252053:1822756663257903 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce181d0) = 0 +1822756663258813:1822756663262493 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756664890623:1822756664895253 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756664897283:1822756664898383 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756664899463:1822756664900323 116426:116430 hsa_signal_load_relaxed() = 1 +1822756663263163:1822756664902613 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756664901133:1822756664903073 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756664903973:1822756664904483 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756664904833:1822756664905653 116426:116430 hsa_signal_destroy() = 0 +1822756664906813:1822756664907423 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756664923904:1822756664924514 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756664928424:1822756664929024 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756664935224:1822756664936414 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 90 +1822756664937334:1822756664938294 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 90 +1822756664949004:1822756664950394 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756664951084:1822756664951434 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756664952634:1822756664953404 116426:116426 hsa_signal_store_relaxed(, 90) = void +1822756664955454:1822756664956064 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756664960164:1822756664960774 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756664963124:1822756664963734 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756664964854:1822756664965654 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756664966104:1822756664966424 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 91 +1822756664966864:1822756664967184 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 90 +1822756664967814:1822756664968134 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756664968584:1822756664969074 116426:116426 hsa_signal_store_relaxed(, 91) = void +1822756664970744:1822756666234222 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756666238432:1822756666239002 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756666242172:1822756666243542 116426:116426 hsa_signal_destroy() = 0 +1822756666245372:1822756666246302 116426:116426 hsa_signal_destroy() = 0 +1822756666247712:1822756666248282 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756666248732:1822756666249262 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756666250002:1822756666250482 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756666250882:1822756666251412 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756666251812:1822756666252092 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756666253012:1822756666253542 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756666253992:1822756666254682 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18270) = 0 +1822756666255252:1822756666258592 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18230) = 0 +1822756666259072:1822756666260332 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756668767758:1822756668772368 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756668774558:1822756668775668 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756668776818:1822756668777848 116426:116430 hsa_signal_load_relaxed() = 1 +1822756666260792:1822756668780448 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756668778808:1822756668780808 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756668786228:1822756668786968 116426:116430 hsa_signal_destroy() = 0 +1822756669412832:1822756669413512 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756675856353:1822756675857433 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756675872483:1822756675873023 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756675873683:1822756675874213 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756675877033:1822756675878043 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756675878723:1822756675879593 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756675880143:1822756675880923 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756676489437:1822756676489847 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756676491547:1822756676492077 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756676493087:1822756676495497 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce182d0) = 0 +1822756676496547:1822756676502347 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18290) = 0 +1822756676503067:1822756676506277 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756678123437:1822756678127977 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756678130307:1822756678131427 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756678132387:1822756678133257 116426:116430 hsa_signal_load_relaxed() = 1 +1822756676506857:1822756678135707 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756678134357:1822756678136277 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756678137077:1822756678137707 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756678137847:1822756678138677 116426:116430 hsa_signal_destroy() = 0 +1822756678140537:1822756678141147 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756678158398:1822756678159208 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756678163668:1822756678164268 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756678169838:1822756678170848 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 92 +1822756678171848:1822756678172498 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 92 +1822756678173848:1822756678175118 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756678176088:1822756678176518 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756678177638:1822756678178458 116426:116426 hsa_signal_store_relaxed(, 92) = void +1822756678188448:1822756678189058 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756678193588:1822756678194198 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756678196628:1822756678197228 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756678198208:1822756678198928 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756678199388:1822756678199698 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 93 +1822756678200148:1822756678200458 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 92 +1822756678201108:1822756678201418 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756678201858:1822756678202348 116426:116426 hsa_signal_store_relaxed(, 93) = void +1822756678203928:1822756679460006 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756679465116:1822756679465736 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756679468286:1822756679469676 116426:116426 hsa_signal_destroy() = 0 +1822756679471596:1822756679472076 116426:116426 hsa_signal_destroy() = 0 +1822756679473416:1822756679474036 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756679474536:1822756679475146 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756679476016:1822756679476546 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756679477006:1822756679477776 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756679478236:1822756679478546 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756679479516:1822756679480126 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756679480636:1822756679481446 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18330) = 0 +1822756679482086:1822756679485616 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce182f0) = 0 +1822756679486156:1822756679487466 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756682062192:1822756682066802 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756682069172:1822756682070272 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756682071292:1822756682072332 116426:116430 hsa_signal_load_relaxed() = 1 +1822756679487976:1822756682075052 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756682073422:1822756682075432 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756682076632:1822756682077362 116426:116430 hsa_signal_destroy() = 0 +1822756682704566:1822756682705236 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756689227868:1822756689228998 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756689244548:1822756689245088 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756689245568:1822756689246098 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756689248648:1822756689249558 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756689249948:1822756689250478 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756689251118:1822756689252018 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756689836552:1822756689836962 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756689838482:1822756689839022 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756689839642:1822756689842282 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18390) = 0 +1822756689843182:1822756689849032 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18350) = 0 +1822756689849842:1822756689852872 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756691486513:1822756691491063 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756691493323:1822756691494483 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756691495573:1822756691496443 116426:116430 hsa_signal_load_relaxed() = 1 +1822756689853362:1822756691498823 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756691497473:1822756691499393 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756691500213:1822756691500713 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756691501213:1822756691502043 116426:116430 hsa_signal_destroy() = 0 +1822756691503903:1822756691504513 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756691521633:1822756691522243 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756691526083:1822756691526683 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756691533393:1822756691534423 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 94 +1822756691535443:1822756691536093 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 94 +1822756691536923:1822756691538583 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756691539623:1822756691539973 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756691541333:1822756691542083 116426:116426 hsa_signal_store_relaxed(, 94) = void +1822756691544353:1822756691544963 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756691549423:1822756691550033 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756691552663:1822756691553273 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756691562853:1822756691563613 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756691564063:1822756691564383 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 95 +1822756691564813:1822756691565143 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 94 +1822756691565773:1822756691566093 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756691566533:1822756691567023 116426:116426 hsa_signal_store_relaxed(, 95) = void +1822756691568443:1822756692826671 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756692831181:1822756692831701 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756692834371:1822756692835721 116426:116426 hsa_signal_destroy() = 0 +1822756692838051:1822756692838491 116426:116426 hsa_signal_destroy() = 0 +1822756692839601:1822756692840151 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756692840601:1822756692841131 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756692842111:1822756692842591 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756692842991:1822756692843411 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756692843951:1822756692844221 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756692845111:1822756692845641 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756692846131:1822756692846891 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce183f0) = 0 +1822756692847471:1822756692850821 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce183b0) = 0 +1822756692851291:1822756692852671 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756695468348:1822756695472908 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756695475148:1822756695476308 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756695477448:1822756695478478 116426:116430 hsa_signal_load_relaxed() = 1 +1822756692853121:1822756695481078 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756695479508:1822756695481508 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756695483088:1822756695483818 116426:116430 hsa_signal_destroy() = 0 +1822756696118602:1822756696119272 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756702627074:1822756702628574 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756702644384:1822756702644914 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756702645804:1822756702646334 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756702659664:1822756702660534 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756702660944:1822756702661814 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756702662374:1822756702663414 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756703261298:1822756703261668 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756703263328:1822756703263858 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756703264478:1822756703267578 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18450) = 0 +1822756703268508:1822756703274348 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18410) = 0 +1822756703275408:1822756703278718 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756704924908:1822756704929558 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756704931858:1822756704932968 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756704933928:1822756704934798 116426:116430 hsa_signal_load_relaxed() = 1 +1822756703279208:1822756704937158 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756704935768:1822756704937708 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756704938438:1822756704939118 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756704939248:1822756704940078 116426:116430 hsa_signal_destroy() = 0 +1822756704941528:1822756704942138 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756704959298:1822756704959918 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756704964418:1822756704965028 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756704971338:1822756704972258 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 96 +1822756704973188:1822756704973838 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 96 +1822756704974858:1822756704975948 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756704976798:1822756704977218 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756704978398:1822756704979218 116426:116426 hsa_signal_store_relaxed(, 96) = void +1822756704981848:1822756704982459 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756704987219:1822756704987819 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756704990409:1822756704991019 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756704992079:1822756704992839 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756704993289:1822756704993609 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 97 +1822756704994049:1822756704994369 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 96 +1822756704997379:1822756704997689 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756704998139:1822756704998629 116426:116426 hsa_signal_store_relaxed(, 97) = void +1822756705000569:1822756706256606 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756706261086:1822756706261826 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756706264346:1822756706265506 116426:116426 hsa_signal_destroy() = 0 +1822756706267346:1822756706268037 116426:116426 hsa_signal_destroy() = 0 +1822756706269067:1822756706269627 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756706270077:1822756706270607 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756706271747:1822756706272227 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756706272637:1822756706273047 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756706273457:1822756706273727 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756706274797:1822756706275327 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756706275767:1822756706276457 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce184b0) = 0 +1822756706276937:1822756706280277 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18470) = 0 +1822756706280747:1822756706281957 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756708795572:1822756708800172 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756708802442:1822756708803552 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756708804562:1822756708805592 116426:116430 hsa_signal_load_relaxed() = 1 +1822756706282427:1822756708808202 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756708806552:1822756708808562 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756708809752:1822756708810472 116426:116430 hsa_signal_destroy() = 0 +1822756709438637:1822756709439307 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756715890698:1822756715891998 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756715906908:1822756715907438 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756715908188:1822756715908728 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756715911148:1822756715912028 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756715912628:1822756715913268 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756715913998:1822756715914878 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756716541782:1822756716542312 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756716544532:1822756716545132 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756716546412:1822756716548952 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18510) = 0 +1822756716549902:1822756716555902 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce184d0) = 0 +1822756716556732:1822756716559652 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756718188233:1822756718192713 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756718194923:1822756718196143 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756718197093:1822756718197963 116426:116430 hsa_signal_load_relaxed() = 1 +1822756716560212:1822756718200123 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756718198763:1822756718200863 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756718201703:1822756718202213 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756718202623:1822756718203453 116426:116430 hsa_signal_destroy() = 0 +1822756718205093:1822756718205693 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756718222193:1822756718223003 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756718227313:1822756718227913 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756718234363:1822756718235383 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 98 +1822756718236393:1822756718237043 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 98 +1822756718237923:1822756718239213 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756718240273:1822756718240623 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756718241973:1822756718242793 116426:116426 hsa_signal_store_relaxed(, 98) = void +1822756718245213:1822756718245823 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756718250073:1822756718250673 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756718253023:1822756718253633 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756718254513:1822756718255253 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756718255693:1822756718256013 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 99 +1822756718256453:1822756718256773 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 98 +1822756718257413:1822756718257723 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756718258163:1822756718258653 116426:116426 hsa_signal_store_relaxed(, 99) = void +1822756718262963:1822756719536251 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756719540931:1822756719541611 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756719544351:1822756719545551 116426:116426 hsa_signal_destroy() = 0 +1822756719547451:1822756719547931 116426:116426 hsa_signal_destroy() = 0 +1822756719549201:1822756719549821 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756719550341:1822756719550941 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756719551712:1822756719552242 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756719552702:1822756719553152 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756719553612:1822756719553922 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756719555032:1822756719555632 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756719556142:1822756719556952 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18570) = 0 +1822756719557562:1822756719561052 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18530) = 0 +1822756719561572:1822756719562892 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756722098047:1822756722102587 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756722104797:1822756722106067 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756722107287:1822756722108308 116426:116430 hsa_signal_load_relaxed() = 1 +1822756719563412:1822756722111048 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756722109428:1822756722111438 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756722112988:1822756722113708 116426:116430 hsa_signal_destroy() = 0 +1822756722739211:1822756722739901 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756729270593:1822756729271943 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756729286043:1822756729286583 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756729287413:1822756729287943 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756729290593:1822756729291483 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756729292223:1822756729293093 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756729293743:1822756729294973 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756729894577:1822756729895217 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756729897017:1822756729897547 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756729898707:1822756729901247 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce185d0) = 0 +1822756729911387:1822756729917047 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18590) = 0 +1822756729917627:1822756729920777 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756731577798:1822756731582338 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756731584488:1822756731585598 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756731586558:1822756731587438 116426:116430 hsa_signal_load_relaxed() = 1 +1822756729921287:1822756731589618 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756731588248:1822756731590178 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756731590988:1822756731591638 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756731591768:1822756731592598 116426:116430 hsa_signal_destroy() = 0 +1822756731595038:1822756731595638 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756731612308:1822756731612918 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756731616878:1822756731617488 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756731623898:1822756731624918 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 100 +1822756731625968:1822756731626618 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 100 +1822756731627758:1822756731628828 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756731629718:1822756731630068 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756731631108:1822756731631938 116426:116426 hsa_signal_store_relaxed(, 100) = void +1822756731634268:1822756731634868 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756731638988:1822756731639588 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756731641668:1822756731642278 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756731643248:1822756731643988 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756731644438:1822756731644758 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 101 +1822756731645198:1822756731645518 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 100 +1822756731646368:1822756731646678 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756731647118:1822756731647608 116426:116426 hsa_signal_store_relaxed(, 101) = void +1822756731649408:1822756732916646 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756732921316:1822756732921966 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756732924886:1822756732926146 116426:116426 hsa_signal_destroy() = 0 +1822756732930426:1822756732930916 116426:116426 hsa_signal_destroy() = 0 +1822756732932346:1822756732932966 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756732933476:1822756732934076 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756732934896:1822756732935426 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756732935887:1822756732936497 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756732936957:1822756732937267 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756732938387:1822756732938997 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756732939497:1822756732940317 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18630) = 0 +1822756732940907:1822756732944577 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce185f0) = 0 +1822756732945117:1822756732946567 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756735516193:1822756735520773 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756735522993:1822756735524123 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756735525153:1822756735526173 116426:116430 hsa_signal_load_relaxed() = 1 +1822756732947087:1822756735528553 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756735526983:1822756735528993 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756735530383:1822756735531103 116426:116430 hsa_signal_destroy() = 0 +1822756736177447:1822756736178177 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756742644178:1822756742645858 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756742661128:1822756742661658 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756742662368:1822756742662908 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756742665538:1822756742666408 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756742667018:1822756742667878 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756742668638:1822756742669508 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756743267702:1822756743268052 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756743269812:1822756743270342 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756743271522:1822756743274072 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18690) = 0 +1822756743275212:1822756743281102 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18650) = 0 +1822756743281842:1822756743285682 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756744905603:1822756744910173 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756744915613:1822756744916733 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756744917703:1822756744918573 116426:116430 hsa_signal_load_relaxed() = 1 +1822756743286352:1822756744920853 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756744919383:1822756744921293 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756744922293:1822756744922873 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756744922993:1822756744923823 116426:116430 hsa_signal_destroy() = 0 +1822756744924833:1822756744925443 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756744950453:1822756744951063 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756744955303:1822756744955913 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756744961883:1822756744962893 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 102 +1822756744963693:1822756744964353 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 102 +1822756744965253:1822756744966323 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756744967243:1822756744967663 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756744968663:1822756744969483 116426:116426 hsa_signal_store_relaxed(, 102) = void +1822756744971733:1822756744972343 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756744976463:1822756744977073 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756744979063:1822756744979673 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756744980663:1822756744981463 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756744981903:1822756744982223 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 103 +1822756744982663:1822756744982983 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 102 +1822756744983623:1822756744983943 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756744984393:1822756744984873 116426:116426 hsa_signal_store_relaxed(, 103) = void +1822756744986403:1822756746250701 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756746255131:1822756746255741 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756746258431:1822756746259491 116426:116426 hsa_signal_destroy() = 0 +1822756746261402:1822756746262092 116426:116426 hsa_signal_destroy() = 0 +1822756746263202:1822756746263742 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756746264192:1822756746264722 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756746267802:1822756746268292 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756746268702:1822756746269262 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756746269672:1822756746269942 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756746270872:1822756746271402 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756746271842:1822756746272542 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce186f0) = 0 +1822756746273072:1822756746276422 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce186b0) = 0 +1822756746276892:1822756746278152 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756748825658:1822756748830218 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756748832348:1822756748833658 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756748834678:1822756748835708 116426:116430 hsa_signal_load_relaxed() = 1 +1822756746278602:1822756748838148 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756748836508:1822756748838528 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756748839898:1822756748840608 116426:116430 hsa_signal_destroy() = 0 +1822756749463172:1822756749463862 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756755863102:1822756755864492 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756755878952:1822756755879492 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756755880242:1822756755880782 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756755883523:1822756755884543 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756755884933:1822756755885793 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756755886333:1822756755887063 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756756477826:1822756756478466 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756756480246:1822756756480776 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756756481806:1822756756484226 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18750) = 0 +1822756756485226:1822756756490976 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18710) = 0 +1822756756491716:1822756756494766 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756758117817:1822756758122387 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756758124497:1822756758125717 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756758126677:1822756758127567 116426:116430 hsa_signal_load_relaxed() = 1 +1822756756495346:1822756758129877 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756758128517:1822756758130477 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756758135317:1822756758136077 116426:116430 hsa_signal_destroy() = 0 +1822756758141187:1822756758141757 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756758144167:1822756758144777 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756758160707:1822756758161517 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756758165927:1822756758166527 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756758172957:1822756758173977 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 104 +1822756758174767:1822756758175677 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 104 +1822756758176527:1822756758177967 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756758178747:1822756758179097 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756758180097:1822756758180907 116426:116426 hsa_signal_store_relaxed(, 104) = void +1822756758183027:1822756758183637 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756758187927:1822756758188527 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756758190587:1822756758191197 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756758192317:1822756758193077 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756758193697:1822756758194017 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 105 +1822756758194457:1822756758194777 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 104 +1822756758195587:1822756758195907 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756758196357:1822756758196847 116426:116426 hsa_signal_store_relaxed(, 105) = void +1822756758198667:1822756759466046 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756759470986:1822756759471626 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756759474286:1822756759475766 116426:116426 hsa_signal_destroy() = 0 +1822756759477296:1822756759477776 116426:116426 hsa_signal_destroy() = 0 +1822756759478946:1822756759479556 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756759480066:1822756759480676 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756759481656:1822756759482186 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756759482646:1822756759483106 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756759483696:1822756759484006 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756759487506:1822756759488116 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756759488616:1822756759489446 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce187b0) = 0 +1822756759490026:1822756759493686 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18770) = 0 +1822756759494226:1822756759495686 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756762067402:1822756762071942 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756762074162:1822756762075322 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756762076342:1822756762077372 116426:116430 hsa_signal_load_relaxed() = 1 +1822756759496206:1822756762079802 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756762078172:1822756762080182 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756762081542:1822756762082262 116426:116430 hsa_signal_destroy() = 0 +1822756762708716:1822756762709396 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756769236898:1822756769237718 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756769252068:1822756769252608 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756769253218:1822756769253748 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756769256348:1822756769257568 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756769258308:1822756769259218 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756769259968:1822756769261118 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756769841941:1822756769842341 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756769843821:1822756769844351 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756769845711:1822756769848231 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18810) = 0 +1822756769849261:1822756769854821 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce187d0) = 0 +1822756769855551:1822756769859132 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756771493572:1822756771498132 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756771500502:1822756771501602 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756771502762:1822756771503632 116426:116430 hsa_signal_load_relaxed() = 1 +1822756769859702:1822756771505982 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756771504632:1822756771506762 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756771507332:1822756771507852 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756771508312:1822756771509142 116426:116430 hsa_signal_destroy() = 0 +1822756771510562:1822756771511172 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756771535822:1822756771536432 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756771540052:1822756771540662 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756771546772:1822756771548122 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 106 +1822756771548902:1822756771549912 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 106 +1822756771550732:1822756771551802 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756771552462:1822756771552812 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756771553922:1822756771554752 116426:116426 hsa_signal_store_relaxed(, 106) = void +1822756771557242:1822756771557852 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756771562132:1822756771562732 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756771565612:1822756771566222 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756771567162:1822756771567912 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756771568362:1822756771568682 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 107 +1822756771569122:1822756771569442 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 106 +1822756771570092:1822756771570412 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756771570853:1822756771571343 116426:116426 hsa_signal_store_relaxed(, 107) = void +1822756771572773:1822756772831161 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756772835751:1822756772836271 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756772838921:1822756772840261 116426:116426 hsa_signal_destroy() = 0 +1822756772842041:1822756772842491 116426:116426 hsa_signal_destroy() = 0 +1822756772843591:1822756772844141 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756772844601:1822756772845131 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756772846071:1822756772846561 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756772846971:1822756772847391 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756772847791:1822756772848071 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756772849131:1822756772849661 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756772850111:1822756772850861 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18870) = 0 +1822756772851401:1822756772854721 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18830) = 0 +1822756772857441:1822756772858631 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756775474928:1822756775479488 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756775481658:1822756775482978 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756775483998:1822756775485028 116426:116430 hsa_signal_load_relaxed() = 1 +1822756772859111:1822756775487408 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756775485838:1822756775487848 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756775489148:1822756775489868 116426:116430 hsa_signal_destroy() = 0 +1822756776136072:1822756776136792 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756782620173:1822756782621553 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756782636473:1822756782637013 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756782637773:1822756782638303 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756782641053:1822756782641913 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756782642313:1822756782643283 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756782643913:1822756782644783 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756783244147:1822756783244827 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756783246657:1822756783247187 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756783248127:1822756783250527 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce188d0) = 0 +1822756783251647:1822756783257547 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18890) = 0 +1822756783258287:1822756783261747 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756784887477:1822756784892077 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756784894247:1822756784895497 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756784896467:1822756784897327 116426:116430 hsa_signal_load_relaxed() = 1 +1822756783262317:1822756784899737 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756784898227:1822756784900167 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756784901527:1822756784902497 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756784901797:1822756784902927 116426:116430 hsa_signal_destroy() = 0 +1822756784905217:1822756784905817 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756784922667:1822756784923277 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756784935668:1822756784936268 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756784941928:1822756784942928 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 108 +1822756784943728:1822756784944388 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 108 +1822756784945208:1822756784946298 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756784946948:1822756784947368 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756784948408:1822756784949418 116426:116426 hsa_signal_store_relaxed(, 108) = void +1822756784951768:1822756784952378 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756784956568:1822756784957168 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756784959598:1822756784960208 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756784961438:1822756784962178 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756784962618:1822756784962938 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 109 +1822756784963378:1822756784963688 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 108 +1822756784964338:1822756784964648 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756784965098:1822756784965588 116426:116426 hsa_signal_store_relaxed(, 109) = void +1822756784967078:1822756786214266 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756786218996:1822756786219606 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756786222196:1822756786223206 116426:116426 hsa_signal_destroy() = 0 +1822756786225036:1822756786225726 116426:116426 hsa_signal_destroy() = 0 +1822756786226816:1822756786227356 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756786227806:1822756786228336 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756786229276:1822756786229966 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756786230386:1822756786230946 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756786231356:1822756786231626 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756786232696:1822756786233226 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756786233676:1822756786234316 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18930) = 0 +1822756786234856:1822756786238196 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce188f0) = 0 +1822756786238656:1822756786239806 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756788782702:1822756788787262 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756788789542:1822756788790652 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756788795412:1822756788796462 116426:116430 hsa_signal_load_relaxed() = 1 +1822756786240266:1822756788798922 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756788797292:1822756788799292 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756788800882:1822756788801602 116426:116430 hsa_signal_destroy() = 0 +1822756789424296:1822756789424976 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756795867047:1822756795868457 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756795882487:1822756795883017 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756795883567:1822756795884097 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756795886377:1822756795887287 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756795887677:1822756795888317 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756795888857:1822756795889687 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756796478721:1822756796479261 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756796480811:1822756796481341 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756796482361:1822756796485091 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18990) = 0 +1822756796486081:1822756796492051 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18950) = 0 +1822756796492611:1822756796495891 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756798119601:1822756798124151 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756798126642:1822756798127752 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756798128832:1822756798129702 116426:116430 hsa_signal_load_relaxed() = 1 +1822756796496421:1822756798131992 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756798130632:1822756798132772 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756798133352:1822756798133902 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756798134352:1822756798135172 116426:116430 hsa_signal_destroy() = 0 +1822756798137642:1822756798138252 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756798154722:1822756798155542 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756798159342:1822756798159952 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756798165972:1822756798166912 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 110 +1822756798167842:1822756798168502 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 110 +1822756798180072:1822756798181442 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756798182192:1822756798182632 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756798183692:1822756798184542 116426:116426 hsa_signal_store_relaxed(, 110) = void +1822756798186862:1822756798187472 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756798191772:1822756798192382 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756798194972:1822756798195582 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756798196942:1822756798197692 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756798198132:1822756798198452 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 111 +1822756798198892:1822756798199212 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 110 +1822756798200032:1822756798200352 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756798200792:1822756798201292 116426:116426 hsa_signal_store_relaxed(, 111) = void +1822756798202772:1822756799461730 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756799466490:1822756799467130 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756799469790:1822756799471210 116426:116426 hsa_signal_destroy() = 0 +1822756799472890:1822756799473360 116426:116426 hsa_signal_destroy() = 0 +1822756799474550:1822756799475180 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756799475700:1822756799476300 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756799477330:1822756799477850 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756799478310:1822756799478880 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756799479330:1822756799479640 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756799480770:1822756799481370 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756799481890:1822756799482700 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce189f0) = 0 +1822756799483290:1822756799486830 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce189b0) = 0 +1822756799487370:1822756799488640 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756802022307:1822756802026897 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756802029347:1822756802030447 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756802031607:1822756802032647 116426:116430 hsa_signal_load_relaxed() = 1 +1822756799489150:1822756802035227 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756802033607:1822756802035617 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756802040387:1822756802041127 116426:116430 hsa_signal_destroy() = 0 +1822756802662191:1822756802662871 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756809170472:1822756809171442 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756809185532:1822756809186072 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756809186662:1822756809187202 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756809189682:1822756809190582 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756809190972:1822756809191882 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756809192442:1822756809193482 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756809776856:1822756809777216 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756809778756:1822756809779286 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756809780056:1822756809782496 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18a50) = 0 +1822756809783546:1822756809788966 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18a10) = 0 +1822756809789776:1822756809793916 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756811475616:1822756811480186 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756811482377:1822756811483567 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756811484537:1822756811485407 116426:116430 hsa_signal_load_relaxed() = 1 +1822756809794536:1822756811487847 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756811486487:1822756811488407 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756811489617:1822756811490447 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756811489977:1822756811490987 116426:116430 hsa_signal_destroy() = 0 +1822756811493407:1822756811494017 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756811511097:1822756811511907 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756811516047:1822756811516647 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756811522557:1822756811523577 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 112 +1822756811524597:1822756811525257 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 112 +1822756811526507:1822756811527707 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756811528547:1822756811528967 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756811530217:1822756811531047 116426:116426 hsa_signal_store_relaxed(, 112) = void +1822756811542757:1822756811543367 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756811547427:1822756811548027 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756811550417:1822756811551017 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756811551997:1822756811552897 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756811553347:1822756811553677 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 113 +1822756811554117:1822756811554437 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 112 +1822756811555067:1822756811555377 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756811555827:1822756811556317 116426:116426 hsa_signal_store_relaxed(, 113) = void +1822756811558017:1822756812811075 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756812815655:1822756812816385 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756812819025:1822756812819975 116426:116426 hsa_signal_destroy() = 0 +1822756812821785:1822756812822225 116426:116426 hsa_signal_destroy() = 0 +1822756812823295:1822756812823845 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756812824305:1822756812824845 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756812825765:1822756812826335 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756812826745:1822756812827315 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756812827725:1822756812827995 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756812828905:1822756812829435 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756812829895:1822756812830645 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18ab0) = 0 +1822756812831195:1822756812834735 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18a70) = 0 +1822756812835205:1822756812836575 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756815472282:1822756815476822 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756815479232:1822756815480382 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756815481402:1822756815482432 116426:116430 hsa_signal_load_relaxed() = 1 +1822756812837035:1822756815485102 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756815483522:1822756815485532 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756815486732:1822756815487452 116426:116430 hsa_signal_destroy() = 0 +1822756816121586:1822756816122246 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756822784839:1822756822786139 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756822815429:1822756822815959 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756822816719:1822756822817259 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756822819689:1822756822820549 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756822820939:1822756822821829 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756822822749:1822756822823959 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756823421573:1822756823422223 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756823423663:1822756823424193 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756823425323:1822756823427803 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18b10) = 0 +1822756823428843:1822756823434523 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18ad0) = 0 +1822756823435263:1822756823437933 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756825048533:1822756825053103 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756825055363:1822756825056463 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756825057533:1822756825058413 116426:116430 hsa_signal_load_relaxed() = 1 +1822756823438543:1822756825060753 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756825059363:1822756825061313 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756825062073:1822756825062583 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756825063143:1822756825063863 116426:116430 hsa_signal_destroy() = 0 +1822756825065233:1822756825065843 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756825082103:1822756825082703 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756825086933:1822756825087543 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756825094513:1822756825095523 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 114 +1822756825096443:1822756825097103 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 114 +1822756825097983:1822756825099093 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756825099993:1822756825100333 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756825101683:1822756825102523 116426:116426 hsa_signal_store_relaxed(, 114) = void +1822756825104923:1822756825105523 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756825109903:1822756825110503 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756825113433:1822756825114043 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756825117643:1822756825118463 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756825118913:1822756825119243 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 115 +1822756825119693:1822756825120013 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 114 +1822756825120843:1822756825121153 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756825121593:1822756825122083 116426:116426 hsa_signal_store_relaxed(, 115) = void +1822756825123863:1822756826377141 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756826382161:1822756826382781 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756826385911:1822756826387101 116426:116426 hsa_signal_destroy() = 0 +1822756826388911:1822756826389651 116426:116426 hsa_signal_destroy() = 0 +1822756826390961:1822756826391582 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756826392092:1822756826392702 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756826393772:1822756826394302 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756826394762:1822756826395212 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756826395682:1822756826395982 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756826396942:1822756826397542 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756826398052:1822756826398822 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18b70) = 0 +1822756826399342:1822756826402862 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18b30) = 0 +1822756826403392:1822756826404742 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756828947498:1822756828952098 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756828954308:1822756828955408 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756828956568:1822756828957598 116426:116430 hsa_signal_load_relaxed() = 1 +1822756826405262:1822756828960268 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756828958628:1822756828960638 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756828962338:1822756828963058 116426:116430 hsa_signal_destroy() = 0 +1822756829592172:1822756829592892 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756836040273:1822756836041863 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756836055853:1822756836056383 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756836056933:1822756836057463 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756836060083:1822756836060823 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756836072223:1822756836072903 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756836073443:1822756836074653 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756836687517:1822756836687957 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756836689547:1822756836690147 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756836691457:1822756836694437 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18bd0) = 0 +1822756836695067:1822756836700937 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18b90) = 0 +1822756836701837:1822756836705087 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756838470328:1822756838474888 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756838477338:1822756838478448 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756838479408:1822756838480278 116426:116430 hsa_signal_load_relaxed() = 1 +1822756836705687:1822756838482648 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756838481298:1822756838483248 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756838483948:1822756838484578 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756838484668:1822756838485498 116426:116430 hsa_signal_destroy() = 0 +1822756838487138:1822756838487748 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756838505109:1822756838505819 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756838510339:1822756838510939 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756838517059:1822756838517979 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 116 +1822756838518909:1822756838519559 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 116 +1822756838520569:1822756838521939 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756838522799:1822756838523149 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756838524219:1822756838525039 116426:116426 hsa_signal_store_relaxed(, 116) = void +1822756838527769:1822756838528379 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756838535089:1822756838535699 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756838538319:1822756838538919 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756838539959:1822756838540719 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756838541169:1822756838541489 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 117 +1822756838541929:1822756838542239 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 116 +1822756838544099:1822756838544409 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756838544859:1822756838545349 116426:116426 hsa_signal_store_relaxed(, 117) = void +1822756838546949:1822756839804987 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756839809757:1822756839810397 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756839813127:1822756839814287 116426:116426 hsa_signal_destroy() = 0 +1822756839816097:1822756839816537 116426:116426 hsa_signal_destroy() = 0 +1822756839817607:1822756839818157 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756839818617:1822756839819147 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756839820117:1822756839820877 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756839821287:1822756839821707 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756839822117:1822756839822387 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756839823277:1822756839823817 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756839824267:1822756839825007 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18c30) = 0 +1822756839825457:1822756839828807 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18bf0) = 0 +1822756839829277:1822756839830737 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756842472894:1822756842477424 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756842479844:1822756842481094 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756842482124:1822756842483144 116426:116430 hsa_signal_load_relaxed() = 1 +1822756839831207:1822756842485724 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756842484094:1822756842486114 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756842487294:1822756842488024 116426:116430 hsa_signal_destroy() = 0 +1822756843115178:1822756843115858 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756849594219:1822756849595979 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756849612090:1822756849612620 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756849613590:1822756849614120 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756849616530:1822756849617240 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756849617840:1822756849618700 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756849619360:1822756849620240 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756850227213:1822756850227563 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756850229383:1822756850229913 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756850230943:1822756850233503 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18c90) = 0 +1822756850234123:1822756850239953 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18c50) = 0 +1822756850240743:1822756850244233 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756851885324:1822756851889904 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756851892164:1822756851893274 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756851894354:1822756851895224 116426:116430 hsa_signal_load_relaxed() = 1 +1822756850244804:1822756851897584 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756851896224:1822756851898154 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756851899184:1822756851899744 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756851900104:1822756851900934 116426:116430 hsa_signal_destroy() = 0 +1822756851902504:1822756851903104 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756851920104:1822756851920914 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756851924704:1822756851925314 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756851931844:1822756851932854 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 118 +1822756851933864:1822756851934514 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 118 +1822756851935424:1822756851936564 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756851937404:1822756851937824 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756851938974:1822756851939814 116426:116426 hsa_signal_store_relaxed(, 118) = void +1822756851942304:1822756851942904 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756851947214:1822756851947824 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756851950204:1822756851950814 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756851952034:1822756851952934 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756851953374:1822756851953694 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 119 +1822756851954134:1822756851954454 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 118 +1822756851955104:1822756851955424 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756851955864:1822756851956344 116426:116426 hsa_signal_store_relaxed(, 119) = void +1822756851957874:1822756853212992 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756853219882:1822756853220492 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756853223342:1822756853224732 116426:116426 hsa_signal_destroy() = 0 +1822756853226752:1822756853227182 116426:116426 hsa_signal_destroy() = 0 +1822756853228362:1822756853228902 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756853229352:1822756853229882 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756853230822:1822756853231782 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756853232182:1822756853232602 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756853233002:1822756853233272 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756853234342:1822756853234872 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756853235362:1822756853236102 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18cf0) = 0 +1822756853236642:1822756853240142 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18cb0) = 0 +1822756853240622:1822756853241972 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756855777029:1822756855781569 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756855783689:1822756855785009 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756855786029:1822756855787059 116426:116430 hsa_signal_load_relaxed() = 1 +1822756853242442:1822756855789439 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756855787859:1822756855789899 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756855791649:1822756855792369 116426:116430 hsa_signal_destroy() = 0 +1822756856430853:1822756856431533 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756862867374:1822756862868504 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756862883544:1822756862884084 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756862884834:1822756862885364 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756862888104:1822756862889004 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756862889744:1822756862890604 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756862891254:1822756862892164 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756863489238:1822756863489588 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756863491478:1822756863492008 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756863493108:1822756863495748 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18d50) = 0 +1822756863503968:1822756863509858 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18d10) = 0 +1822756863510738:1822756863513418 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756865127998:1822756865132568 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756865134738:1822756865135848 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756865136808:1822756865137668 116426:116430 hsa_signal_load_relaxed() = 1 +1822756863514058:1822756865139848 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756865138478:1822756865140408 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756865141348:1822756865142198 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756865141988:1822756865143118 116426:116430 hsa_signal_destroy() = 0 +1822756865144358:1822756865144968 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756865161328:1822756865161938 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756865165608:1822756865166208 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756865172118:1822756865173128 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 120 +1822756865174048:1822756865174698 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 120 +1822756865175678:1822756865176928 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756865177828:1822756865178168 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756865179428:1822756865180288 116426:116426 hsa_signal_store_relaxed(, 120) = void +1822756865182738:1822756865183348 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756865187598:1822756865188208 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756865190438:1822756865191048 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756865191978:1822756865192838 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756865193288:1822756865193598 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 121 +1822756865194048:1822756865194368 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 120 +1822756865195018:1822756865195338 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756865195778:1822756865196268 116426:116426 hsa_signal_store_relaxed(, 121) = void +1822756865197638:1822756866456857 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756866461237:1822756866461857 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756866464897:1822756866466027 116426:116426 hsa_signal_destroy() = 0 +1822756866467807:1822756866468507 116426:116426 hsa_signal_destroy() = 0 +1822756866472577:1822756866473207 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756866473727:1822756866474327 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756866475207:1822756866475727 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756866476187:1822756866476647 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756866477107:1822756866477417 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756866478527:1822756866479127 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756866479647:1822756866480407 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18db0) = 0 +1822756866481057:1822756866484577 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18d70) = 0 +1822756866485117:1822756866486437 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756869071313:1822756869075933 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756869078133:1822756869079243 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756869080263:1822756869081293 116426:116430 hsa_signal_load_relaxed() = 1 +1822756866486967:1822756869083743 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756869082093:1822756869084163 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756869085443:1822756869086163 116426:116430 hsa_signal_destroy() = 0 +1822756869714957:1822756869715637 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756876231509:1822756876232829 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756876247859:1822756876248399 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756876249329:1822756876249869 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756876252449:1822756876253269 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756876253869:1822756876254519 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756876255199:1822756876256119 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756876831153:1822756876831493 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756876833123:1822756876833663 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756876834753:1822756876837553 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18e10) = 0 +1822756876838483:1822756876844133 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18dd0) = 0 +1822756876844943:1822756876848163 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756878479553:1822756878484113 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756878489943:1822756878491063 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756878492013:1822756878492883 116426:116430 hsa_signal_load_relaxed() = 1 +1822756876848833:1822756878495053 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756878493693:1822756878495623 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756878496793:1822756878497553 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756878497163:1822756878498293 116426:116430 hsa_signal_destroy() = 0 +1822756878500323:1822756878500923 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756878517153:1822756878517763 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756878521674:1822756878522274 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756878528924:1822756878529954 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 122 +1822756878530974:1822756878531624 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 122 +1822756878532454:1822756878533764 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756878534454:1822756878534884 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756878536234:1822756878537074 116426:116426 hsa_signal_store_relaxed(, 122) = void +1822756878539394:1822756878540004 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756878544084:1822756878544694 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756878546604:1822756878547204 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756878548254:1822756878549014 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756878549454:1822756878549774 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 123 +1822756878550214:1822756878550534 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 122 +1822756878551174:1822756878551494 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756878551934:1822756878552424 116426:116426 hsa_signal_store_relaxed(, 123) = void +1822756878553974:1822756879827112 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756879831752:1822756879832372 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756879835292:1822756879836362 116426:116426 hsa_signal_destroy() = 0 +1822756879837992:1822756879838432 116426:116426 hsa_signal_destroy() = 0 +1822756879839512:1822756879840062 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756879840512:1822756879841052 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756879841742:1822756879842222 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756879852442:1822756879852862 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756879853272:1822756879853542 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756879854462:1822756879854992 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756879855482:1822756879856232 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18e70) = 0 +1822756879856772:1822756879860162 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18e30) = 0 +1822756879860652:1822756879861932 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756882476469:1822756882481019 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756882483139:1822756882484249 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756882485269:1822756882486309 116426:116430 hsa_signal_load_relaxed() = 1 +1822756879862402:1822756882488729 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756882487109:1822756882489119 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756882490489:1822756882491209 116426:116430 hsa_signal_destroy() = 0 +1822756883113413:1822756883114093 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756889594244:1822756889595834 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756889613674:1822756889614214 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756889615114:1822756889615644 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756889618114:1822756889619014 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756889619404:1822756889620264 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756889620924:1822756889621804 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756890202678:1822756890203198 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756890204638:1822756890205168 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756890206458:1822756890209098 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18ed0) = 0 +1822756890210008:1822756890216018 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18e90) = 0 +1822756890216778:1822756890220038 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756891843078:1822756891847628 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756891849728:1822756891850838 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756891851798:1822756891852658 116426:116430 hsa_signal_load_relaxed() = 1 +1822756890220538:1822756891854968 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756891853608:1822756891855548 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756891860588:1822756891861318 116426:116430 hsa_signal_destroy() = 0 +1822756891866298:1822756891866878 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756891869238:1822756891869838 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756891885688:1822756891886298 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756891890028:1822756891890628 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756891896198:1822756891897218 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 124 +1822756891898178:1822756891898828 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 124 +1822756891899668:1822756891901048 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756891901768:1822756891902198 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756891903228:1822756891904138 116426:116426 hsa_signal_store_relaxed(, 124) = void +1822756891906488:1822756891907088 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756891911178:1822756891911778 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756891914318:1822756891914928 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756891916328:1822756891917068 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756891917518:1822756891917848 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 125 +1822756891918288:1822756891918608 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 124 +1822756891919239:1822756891919559 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756891919999:1822756891920489 116426:116426 hsa_signal_store_relaxed(, 125) = void +1822756891922419:1822756893184347 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756893188877:1822756893189487 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756893192077:1822756893193137 116426:116426 hsa_signal_destroy() = 0 +1822756893194887:1822756893195327 116426:116426 hsa_signal_destroy() = 0 +1822756893196357:1822756893196897 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756893197347:1822756893197877 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756893198827:1822756893199307 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756893199717:1822756893200127 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756893200587:1822756893200867 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756893201777:1822756893202307 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756893205047:1822756893206007 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18f30) = 0 +1822756893206557:1822756893209887 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18ef0) = 0 +1822756893210367:1822756893211507 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756895784493:1822756895789043 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756895791223:1822756895792423 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756895793443:1822756895794463 116426:116430 hsa_signal_load_relaxed() = 1 +1822756893211967:1822756895796843 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756895795273:1822756895797283 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756895798693:1822756895799413 116426:116430 hsa_signal_destroy() = 0 +1822756896437528:1822756896438238 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756903014920:1822756903015720 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756903031480:1822756903032010 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756903032840:1822756903033370 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756903035630:1822756903036500 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756903037250:1822756903038120 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756903038720:1822756903039620 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756903641814:1822756903642304 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756903643734:1822756903644264 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756903644924:1822756903647604 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18f90) = 0 +1822756903648784:1822756903654754 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18f50) = 0 +1822756903655574:1822756903658614 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756905286244:1822756905290744 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756905293184:1822756905294294 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756905295444:1822756905296304 116426:116430 hsa_signal_load_relaxed() = 1 +1822756903659224:1822756905298794 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756905297304:1822756905299244 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756905300154:1822756905301104 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756905300894:1822756905302024 116426:116430 hsa_signal_destroy() = 0 +1822756905303384:1822756905303994 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756905324704:1822756905325514 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756905329284:1822756905329884 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756905335984:1822756905336994 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 126 +1822756905337814:1822756905338464 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 126 +1822756905339334:1822756905340434 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756905341134:1822756905341554 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756905343114:1822756905344054 116426:116426 hsa_signal_store_relaxed(, 126) = void +1822756905346284:1822756905346894 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756905350995:1822756905351605 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756905353465:1822756905354075 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756905355015:1822756905355905 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756905356345:1822756905356675 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 127 +1822756905357115:1822756905357435 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 126 +1822756905358255:1822756905358565 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756905359015:1822756905359495 116426:116426 hsa_signal_store_relaxed(, 127) = void +1822756905360985:1822756906633362 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756906638123:1822756906638693 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756906641613:1822756906642633 116426:116426 hsa_signal_destroy() = 0 +1822756906644313:1822756906644973 116426:116426 hsa_signal_destroy() = 0 +1822756906646133:1822756906646683 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756906647133:1822756906647673 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756906648613:1822756906649093 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756906649523:1822756906650093 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756906650503:1822756906650773 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756906651683:1822756906652213 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756906652673:1822756906653353 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce18ff0) = 0 +1822756906653933:1822756906657283 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce18fb0) = 0 +1822756906663713:1822756906664993 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756909198199:1822756909202699 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756909205019:1822756909206139 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756909207179:1822756909208199 116426:116430 hsa_signal_load_relaxed() = 1 +1822756906665473:1822756909210689 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756909209039:1822756909211049 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756909212479:1822756909213199 116426:116430 hsa_signal_destroy() = 0 +1822756909842563:1822756909843243 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756916321314:1822756916322824 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756916337885:1822756916338425 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756916339185:1822756916339725 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756916342965:1822756916343855 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756916344245:1822756916345115 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756916345685:1822756916346565 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756916937828:1822756916938318 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756916947408:1822756916947948 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756916948838:1822756916951388 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19050) = 0 +1822756916952738:1822756916958328 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19010) = 0 +1822756916959128:1822756916962678 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756918630669:1822756918635239 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756918637409:1822756918638519 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756918639479:1822756918640339 116426:116430 hsa_signal_load_relaxed() = 1 +1822756916963198:1822756918642789 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756918641429:1822756918643369 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756918644389:1822756918645219 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756918645009:1822756918646139 116426:116430 hsa_signal_destroy() = 0 +1822756918647969:1822756918648569 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756918666929:1822756918667539 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756918671529:1822756918672129 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756918682909:1822756918684059 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 128 +1822756918684859:1822756918685509 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 128 +1822756918686389:1822756918687839 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756918688539:1822756918688889 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756918690149:1822756918690969 116426:116426 hsa_signal_store_relaxed(, 128) = void +1822756918693249:1822756918693859 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756918698089:1822756918698689 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756918700989:1822756918701599 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756918702559:1822756918703329 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756918703779:1822756918704109 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 129 +1822756918704549:1822756918704879 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 128 +1822756918705509:1822756918705829 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756918706269:1822756918706759 116426:116426 hsa_signal_store_relaxed(, 129) = void +1822756918708349:1822756919979947 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756919984757:1822756919985357 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756919987977:1822756919989017 116426:116426 hsa_signal_destroy() = 0 +1822756919990857:1822756919991297 116426:116426 hsa_signal_destroy() = 0 +1822756919992377:1822756919992927 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756919993367:1822756919993897 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756919994817:1822756919995467 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756919995877:1822756919996397 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756919996807:1822756919997077 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756919998167:1822756919998697 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756919999137:1822756919999877 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce190b0) = 0 +1822756920010957:1822756920014467 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19070) = 0 +1822756920014947:1822756920016227 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756922568544:1822756922573084 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756922575414:1822756922576564 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756922581454:1822756922582494 116426:116430 hsa_signal_load_relaxed() = 1 +1822756920016697:1822756922585004 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756922583314:1822756922585324 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756922586934:1822756922587644 116426:116430 hsa_signal_destroy() = 0 +1822756923214568:1822756923215258 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756929677889:1822756929679049 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756929694830:1822756929695360 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756929695980:1822756929696510 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756929699120:1822756929699980 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756929700370:1822756929701000 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756929701620:1822756929702500 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756930301633:1822756930302203 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756930303813:1822756930304344 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756930305134:1822756930308124 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19110) = 0 +1822756930308874:1822756930314794 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce190d0) = 0 +1822756930315584:1822756930319054 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756931949414:1822756931953954 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756931956434:1822756931957704 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756931958854:1822756931959714 116426:116430 hsa_signal_load_relaxed() = 1 +1822756930319744:1822756931961984 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756931960634:1822756931962554 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756931963334:1822756931963854 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756931964204:1822756931965034 116426:116430 hsa_signal_destroy() = 0 +1822756931966644:1822756931967254 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756931984594:1822756931985204 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756931989414:1822756931990014 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756931996354:1822756931997674 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 130 +1822756931998614:1822756931999524 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 130 +1822756932013374:1822756932014594 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756932025765:1822756932026215 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756932027505:1822756932028325 116426:116426 hsa_signal_store_relaxed(, 130) = void +1822756932031115:1822756932031725 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756932035965:1822756932036575 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756932039145:1822756932039755 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756932040655:1822756932041405 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756932041865:1822756932042195 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 131 +1822756932042645:1822756932042965 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 130 +1822756932043625:1822756932043935 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756932044385:1822756932044875 116426:116426 hsa_signal_store_relaxed(, 131) = void +1822756932046925:1822756933303193 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756933307743:1822756933308413 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756933311313:1822756933312693 116426:116426 hsa_signal_destroy() = 0 +1822756933315053:1822756933315543 116426:116426 hsa_signal_destroy() = 0 +1822756933316763:1822756933317383 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756933317893:1822756933318493 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756933319543:1822756933320063 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756933320523:1822756933320983 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756933321443:1822756933321753 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756933322873:1822756933323483 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756933323993:1822756933325123 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19170) = 0 +1822756933325713:1822756933329213 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19130) = 0 +1822756933329743:1822756933331293 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756935848418:1822756935852948 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756935855418:1822756935856658 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756935857808:1822756935858828 116426:116430 hsa_signal_load_relaxed() = 1 +1822756933331813:1822756935861368 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756935859798:1822756935861808 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756935866818:1822756935867558 116426:116430 hsa_signal_destroy() = 0 +1822756936511973:1822756936512653 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756942927064:1822756942928454 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756942943134:1822756942943664 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756942944294:1822756942944824 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756942946984:1822756942947774 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756942948164:1822756942948704 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756942949254:1822756942950134 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756943533598:1822756943534118 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756943535688:1822756943536218 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756943537128:1822756943539488 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce191d0) = 0 +1822756943540378:1822756943546038 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19190) = 0 +1822756943546718:1822756943549718 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756945044167:1822756945048767 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756945050837:1822756945051937 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756945052907:1822756945053777 116426:116430 hsa_signal_load_relaxed() = 1 +1822756943550248:1822756945056227 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756945054857:1822756945056787 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756945057857:1822756945058697 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756945058407:1822756945059537 116426:116430 hsa_signal_destroy() = 0 +1822756945061277:1822756945061887 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756945077947:1822756945078557 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756945082957:1822756945083557 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756945089827:1822756945090757 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 132 +1822756945091737:1822756945092387 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 132 +1822756945093477:1822756945094568 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756945095378:1822756945095728 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756945096968:1822756945097728 116426:116426 hsa_signal_store_relaxed(, 132) = void +1822756945099998:1822756945100608 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756945114098:1822756945114708 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756945117238:1822756945117848 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756945118828:1822756945119808 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756945120258:1822756945120578 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 133 +1822756945121028:1822756945121348 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 132 +1822756945122128:1822756945122448 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756945122888:1822756945123378 116426:116426 hsa_signal_store_relaxed(, 133) = void +1822756945125058:1822756946379035 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756946383846:1822756946384476 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756946387686:1822756946389046 116426:116426 hsa_signal_destroy() = 0 +1822756946391206:1822756946391936 116426:116426 hsa_signal_destroy() = 0 +1822756946393326:1822756946393946 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756946394456:1822756946395056 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756946395906:1822756946396436 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756946396896:1822756946397346 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756946397816:1822756946398116 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756946399246:1822756946399846 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756946400346:1822756946401196 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19230) = 0 +1822756946401826:1822756946405356 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce191f0) = 0 +1822756946405896:1822756946407226 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756948945522:1822756948950082 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756948952442:1822756948953662 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756948954692:1822756948955722 116426:116430 hsa_signal_load_relaxed() = 1 +1822756946407756:1822756948958442 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756948956802:1822756948958812 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756948960012:1822756948960732 116426:116430 hsa_signal_destroy() = 0 +1822756949589906:1822756949590586 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756956023397:1822756956024387 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756956049277:1822756956050037 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756956050617:1822756956051147 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756956053747:1822756956054487 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756956054877:1822756956055737 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756956056287:1822756956057137 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756956650301:1822756956650861 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756956652671:1822756956653281 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756956654261:1822756956656991 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19290) = 0 +1822756956657771:1822756956663471 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19250) = 0 +1822756956664371:1822756956667531 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756958285542:1822756958290032 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756958292322:1822756958293432 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756958294392:1822756958295262 116426:116430 hsa_signal_load_relaxed() = 1 +1822756956668101:1822756958297572 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756958296212:1822756958298152 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756958298882:1822756958299402 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756958299982:1822756958300702 116426:116430 hsa_signal_destroy() = 0 +1822756958302452:1822756958303062 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756958319272:1822756958319932 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756958324102:1822756958324712 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756958331022:1822756958331962 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 134 +1822756958332932:1822756958333582 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 134 +1822756958334482:1822756958335692 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756958336812:1822756958337152 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756958338812:1822756958339652 116426:116426 hsa_signal_store_relaxed(, 134) = void +1822756958342222:1822756958342832 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756958346982:1822756958347592 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756958349672:1822756958350282 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756958351402:1822756958352132 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756958355502:1822756958355822 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 135 +1822756958356272:1822756958356582 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 134 +1822756958357242:1822756958357552 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756958358002:1822756958358492 116426:116426 hsa_signal_store_relaxed(, 135) = void +1822756958360262:1822756959617660 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756959621950:1822756959622740 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756959625670:1822756959626680 116426:116426 hsa_signal_destroy() = 0 +1822756959628750:1822756959629190 116426:116426 hsa_signal_destroy() = 0 +1822756959630670:1822756959631230 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756959631670:1822756959632200 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756959633140:1822756959633790 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756959634200:1822756959634910 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756959635310:1822756959635590 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756959636500:1822756959637030 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756959637500:1822756959638250 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce192f0) = 0 +1822756959638750:1822756959642100 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce192b0) = 0 +1822756959642610:1822756959643900 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756962169976:1822756962174526 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756962176816:1822756962178106 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756962179256:1822756962180286 116426:116430 hsa_signal_load_relaxed() = 1 +1822756959644370:1822756962182876 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756962181236:1822756962183246 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756962184816:1822756962185536 116426:116430 hsa_signal_destroy() = 0 +1822756962807550:1822756962808250 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756969307082:1822756969308242 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756969323922:1822756969324462 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756969325162:1822756969325692 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756969328232:1822756969329122 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756969339072:1822756969339772 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756969340592:1822756969341512 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756969928986:1822756969929606 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756969931166:1822756969931706 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756969932566:1822756969935206 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19350) = 0 +1822756969935916:1822756969941696 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19310) = 0 +1822756969942536:1822756969945576 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756971604346:1822756971608886 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756971611386:1822756971612506 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756971613466:1822756971614337 116426:116430 hsa_signal_load_relaxed() = 1 +1822756969946216:1822756971616797 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756971615437:1822756971617367 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756971618097:1822756971618777 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756971618907:1822756971619727 116426:116430 hsa_signal_destroy() = 0 +1822756971621247:1822756971621857 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756971640987:1822756971641797 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756971646057:1822756971646667 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756971652267:1822756971653117 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 136 +1822756971654077:1822756971654727 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 136 +1822756971655707:1822756971656847 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756971657697:1822756971658127 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756971659347:1822756971660177 116426:116426 hsa_signal_store_relaxed(, 136) = void +1822756971662907:1822756971663517 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756971667997:1822756971668597 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756971671217:1822756971671817 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756971672967:1822756971673877 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756971674317:1822756971674637 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 137 +1822756971675077:1822756971675397 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 136 +1822756971677517:1822756971677837 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756971678277:1822756971678767 116426:116426 hsa_signal_store_relaxed(, 137) = void +1822756971680697:1822756972922175 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756972926675:1822756972927275 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756972930135:1822756972931295 116426:116426 hsa_signal_destroy() = 0 +1822756972933245:1822756972933685 116426:116426 hsa_signal_destroy() = 0 +1822756972934975:1822756972935525 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756972935975:1822756972936505 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756972937245:1822756972937995 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756972938405:1822756972938925 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756972939405:1822756972939675 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756972940565:1822756972941095 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756972941565:1822756972942315 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce193b0) = 0 +1822756972942875:1822756972946185 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19370) = 0 +1822756972946655:1822756972947915 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756975496611:1822756975501171 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756975503531:1822756975504641 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756975505661:1822756975506691 116426:116430 hsa_signal_load_relaxed() = 1 +1822756972948365:1822756975509291 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756975507721:1822756975509731 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756975510921:1822756975511651 116426:116430 hsa_signal_destroy() = 0 +1822756976160605:1822756976161335 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756982619967:1822756982621647 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756982635447:1822756982635987 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756982636747:1822756982637287 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756982639667:1822756982640557 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756982641157:1822756982642027 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756982642697:1822756982643567 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756983219380:1822756983219740 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756983230761:1822756983231311 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756983232281:1822756983234441 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19410) = 0 +1822756983235271:1822756983241011 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce193d0) = 0 +1822756983241811:1822756983244591 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756984867631:1822756984872261 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756984874421:1822756984875531 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756984876611:1822756984877471 116426:116430 hsa_signal_load_relaxed() = 1 +1822756983245261:1822756984879671 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756984878281:1822756984880211 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756984881281:1822756984881731 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756984882221:1822756984883051 116426:116430 hsa_signal_destroy() = 0 +1822756984884291:1822756984884901 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756984901961:1822756984902571 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756984906571:1822756984907171 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756984913061:1822756984914071 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 138 +1822756984915091:1822756984915741 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 138 +1822756984916571:1822756984917801 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756984918511:1822756984918861 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756984919861:1822756984920681 116426:116426 hsa_signal_store_relaxed(, 138) = void +1822756984922861:1822756984923471 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756984929971:1822756984930571 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756984932671:1822756984933271 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756984934191:1822756984935241 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756984935681:1822756984936001 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 139 +1822756984936441:1822756984936751 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 138 +1822756984937401:1822756984937711 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756984938161:1822756984938651 116426:116426 hsa_signal_store_relaxed(, 139) = void +1822756984940221:1822756986210309 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756986217149:1822756986217729 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756986220299:1822756986221589 116426:116426 hsa_signal_destroy() = 0 +1822756986223419:1822756986224089 116426:116426 hsa_signal_destroy() = 0 +1822756986225159:1822756986225709 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756986226149:1822756986226679 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756986227609:1822756986228089 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756986228499:1822756986228909 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756986229309:1822756986229589 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756986230649:1822756986231179 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756986231669:1822756986232359 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19470) = 0 +1822756986232949:1822756986236139 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19430) = 0 +1822756986236609:1822756986237919 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822756988772475:1822756988777095 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756988779065:1822756988780165 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756988781205:1822756988782235 116426:116430 hsa_signal_load_relaxed() = 1 +1822756986238379:1822756988784675 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756988783035:1822756988785045 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756988786405:1822756988787125 116426:116430 hsa_signal_destroy() = 0 +1822756989412409:1822756989413089 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756995836601:1822756995838061 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756995852291:1822756995852821 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756995853481:1822756995854021 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756995856631:1822756995857501 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756995858251:1822756995859291 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756995859851:1822756995861001 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756996473055:1822756996473445 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756996475585:1822756996476115 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822756996477025:1822756996479515 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce194d0) = 0 +1822756996480545:1822756996486455 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19490) = 0 +1822756996495095:1822756996498695 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822756998123005:1822756998127575 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822756998130085:1822756998131305 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822756998132255:1822756998133125 116426:116430 hsa_signal_load_relaxed() = 1 +1822756996499265:1822756998135285 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756998133935:1822756998135865 116426:116430 hsa_signal_store_screlease(, 0) = void +1822756998136925:1822756998137775 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822756998137415:1822756998138555 116426:116430 hsa_signal_destroy() = 0 +1822756998141115:1822756998141726 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756998158916:1822756998159726 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756998163636:1822756998164236 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822756998170416:1822756998171436 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 140 +1822756998172536:1822756998173016 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 140 +1822756998173966:1822756998175286 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822756998175936:1822756998176366 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756998177676:1822756998178526 116426:116426 hsa_signal_store_relaxed(, 140) = void +1822756998180656:1822756998181266 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822756998185656:1822756998186256 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822756998188876:1822756998189486 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822756998190466:1822756998191236 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822756998191676:1822756998191996 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 141 +1822756998192436:1822756998192756 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 140 +1822756998193406:1822756998193716 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822756998194166:1822756998194646 116426:116426 hsa_signal_store_relaxed(, 141) = void +1822756998196076:1822756999441854 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822756999446874:1822756999447614 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822756999450404:1822756999451474 116426:116426 hsa_signal_destroy() = 0 +1822756999453794:1822756999454274 116426:116426 hsa_signal_destroy() = 0 +1822756999458154:1822756999458774 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822756999459284:1822756999459884 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822756999460754:1822756999461284 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756999461744:1822756999462314 116426:116426 hsa_signal_store_screlease(, 0) = void +1822756999462774:1822756999463074 116426:116426 hsa_signal_store_screlease(, 1) = void +1822756999464214:1822756999464814 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822756999465324:1822756999466134 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19530) = 0 +1822756999466724:1822756999470244 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce194f0) = 0 +1822756999470774:1822756999472034 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757002008740:1822757002013340 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757002015430:1822757002016530 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757002017550:1822757002018590 116426:116430 hsa_signal_load_relaxed() = 1 +1822756999472554:1822757002021050 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757002019400:1822757002021400 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757002022690:1822757002023410 116426:116430 hsa_signal_destroy() = 0 +1822757002649524:1822757002650504 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757009162276:1822757009163356 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757009177356:1822757009177896 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757009178636:1822757009179176 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757009181916:1822757009182836 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757009183446:1822757009184756 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757009185436:1822757009186606 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757009775559:1822757009776109 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757009777729:1822757009778259 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757009779439:1822757009781849 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19590) = 0 +1822757009783049:1822757009789150 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19550) = 0 +1822757009790310:1822757009793570 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757011479530:1822757011484090 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757011486330:1822757011487530 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757011494290:1822757011495190 116426:116430 hsa_signal_load_relaxed() = 1 +1822757009794140:1822757011497351 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757011496000:1822757011497921 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757011499111:1822757011499861 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757011499461:1822757011500631 116426:116430 hsa_signal_destroy() = 0 +1822757011502801:1822757011503411 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757011519831:1822757011520641 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757011524701:1822757011525301 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757011531171:1822757011532331 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 142 +1822757011533441:1822757011534091 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 142 +1822757011534931:1822757011536071 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757011536751:1822757011537101 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757011538111:1822757011538971 116426:116426 hsa_signal_store_relaxed(, 142) = void +1822757011541511:1822757011542111 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757011546181:1822757011546791 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757011548901:1822757011549511 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757011550421:1822757011551231 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757011551681:1822757011552011 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 143 +1822757011552451:1822757011552771 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 142 +1822757011553411:1822757011553721 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757011554171:1822757011554661 116426:116426 hsa_signal_store_relaxed(, 143) = void +1822757011556231:1822757012820269 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757012824649:1822757012825159 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757012827859:1822757012828919 116426:116426 hsa_signal_destroy() = 0 +1822757012830269:1822757012830709 116426:116426 hsa_signal_destroy() = 0 +1822757012831769:1822757012832319 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757012832769:1822757012833309 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757012834089:1822757012834559 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757012844609:1822757012845029 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757012845459:1822757012845729 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757012846789:1822757012847319 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757012847759:1822757012848519 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce195f0) = 0 +1822757012849209:1822757012852699 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce195b0) = 0 +1822757012853179:1822757012854369 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757015475836:1822757015480376 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757015482596:1822757015483786 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757015484806:1822757015485836 116426:116430 hsa_signal_load_relaxed() = 1 +1822757012854829:1822757015488216 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757015486636:1822757015488656 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757015490286:1822757015490996 116426:116430 hsa_signal_destroy() = 0 +1822757016131020:1822757016131740 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757022592721:1822757022593981 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757022610211:1822757022610741 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757022611531:1822757022612061 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757022614531:1822757022615431 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757022616171:1822757022616811 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757022617431:1822757022618341 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757023200495:1822757023201005 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757023202555:1822757023203095 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757023204285:1822757023207055 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19650) = 0 +1822757023207975:1822757023213865 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19610) = 0 +1822757023214785:1822757023218095 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757024846705:1822757024851315 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757024853515:1822757024854616 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757024855576:1822757024856446 116426:116430 hsa_signal_load_relaxed() = 1 +1822757023218765:1822757024858866 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757024857386:1822757024859326 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757024860336:1822757024860896 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757024864556:1822757024865296 116426:116430 hsa_signal_destroy() = 0 +1822757024866146:1822757024866766 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757024882696:1822757024883306 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757024887376:1822757024887986 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757024893716:1822757024894646 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 144 +1822757024895666:1822757024896316 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 144 +1822757024897206:1822757024898366 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757024899076:1822757024899416 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757024900416:1822757024901286 116426:116426 hsa_signal_store_relaxed(, 144) = void +1822757024903496:1822757024904106 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757024908046:1822757024908656 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757024910876:1822757024911486 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757024912406:1822757024913596 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757024914036:1822757024914456 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 145 +1822757024914886:1822757024915206 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 144 +1822757024915846:1822757024916166 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757024916606:1822757024917096 116426:116426 hsa_signal_store_relaxed(, 145) = void +1822757024918566:1822757026173414 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757026178194:1822757026178704 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757026181574:1822757026182634 116426:116426 hsa_signal_destroy() = 0 +1822757026184584:1822757026185254 116426:116426 hsa_signal_destroy() = 0 +1822757026186394:1822757026186944 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757026187394:1822757026187924 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757026188844:1822757026189324 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757026189734:1822757026190144 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757026190554:1822757026190824 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757026191734:1822757026192264 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757026202874:1822757026203574 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce196b0) = 0 +1822757026204124:1822757026207454 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19670) = 0 +1822757026207934:1822757026209174 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757028772240:1822757028776810 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757028779010:1822757028780170 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757028781190:1822757028782220 116426:116430 hsa_signal_load_relaxed() = 1 +1822757026209644:1822757028784660 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757028783010:1822757028785030 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757028786390:1822757028787120 116426:116430 hsa_signal_destroy() = 0 +1822757029415064:1822757029415754 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757035854736:1822757035856136 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757035870736:1822757035871276 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757035872126:1822757035872656 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757035875116:1822757035876336 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757035877016:1822757035877546 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757035878306:1822757035878936 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757036493590:1822757036494060 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757036495980:1822757036496510 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757036497320:1822757036499830 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19710) = 0 +1822757036500940:1822757036507080 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce196d0) = 0 +1822757036508010:1822757036510690 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757038129380:1822757038133930 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757038136400:1822757038137580 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757038138730:1822757038139600 116426:116430 hsa_signal_load_relaxed() = 1 +1822757036511320:1822757038142050 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757038140700:1822757038142830 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757038143360:1822757038143890 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757038144380:1822757038145200 116426:116430 hsa_signal_destroy() = 0 +1822757038146850:1822757038147460 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757038168590:1822757038169410 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757038173150:1822757038173750 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757038179700:1822757038180630 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 146 +1822757038181810:1822757038182300 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 146 +1822757038183190:1822757038184660 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757038185320:1822757038185750 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757038186910:1822757038187700 116426:116426 hsa_signal_store_relaxed(, 146) = void +1822757038189990:1822757038190600 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757038194560:1822757038195160 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757038197310:1822757038197920 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757038198820:1822757038199580 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757038200020:1822757038200340 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 147 +1822757038200780:1822757038201090 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 146 +1822757038201730:1822757038202060 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757038202500:1822757038202980 116426:116426 hsa_signal_store_relaxed(, 147) = void +1822757038204400:1822757039463118 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757039468208:1822757039468778 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757039471598:1822757039473008 116426:116426 hsa_signal_destroy() = 0 +1822757039474828:1822757039475318 116426:116426 hsa_signal_destroy() = 0 +1822757039476488:1822757039477108 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757039477618:1822757039478218 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757039479168:1822757039479698 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757039480158:1822757039480728 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757039481178:1822757039481488 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757039482458:1822757039483058 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757039483558:1822757039484488 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19770) = 0 +1822757039485078:1822757039488448 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19730) = 0 +1822757039488978:1822757039490528 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757042050305:1822757042054855 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757042057145:1822757042058425 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757042059445:1822757042060475 116426:116430 hsa_signal_load_relaxed() = 1 +1822757039497788:1822757042062925 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757042061285:1822757042063305 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757042064735:1822757042065455 116426:116430 hsa_signal_destroy() = 0 +1822757042689929:1822757042690609 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757049214741:1822757049216071 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757049231671:1822757049232211 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757049232951:1822757049233491 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757049236371:1822757049237271 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757049237881:1822757049239191 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757049239771:1822757049240891 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757049847335:1822757049847735 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757049849435:1822757049849965 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757049850915:1822757049853705 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce197d0) = 0 +1822757049854765:1822757049860715 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19790) = 0 +1822757049861475:1822757049864905 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757051497745:1822757051502285 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757051504425:1822757051505745 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757051506705:1822757051507575 116426:116430 hsa_signal_load_relaxed() = 1 +1822757049865475:1822757051509845 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757051508485:1822757051510425 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757051511595:1822757051512415 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757051512065:1822757051513185 116426:116430 hsa_signal_destroy() = 0 +1822757051514975:1822757051515575 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757051532765:1822757051533385 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757051537606:1822757051538216 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757051551676:1822757051552656 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 148 +1822757051553586:1822757051554526 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 148 +1822757051555426:1822757051556696 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757051557386:1822757051557736 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757051558776:1822757051559636 116426:116426 hsa_signal_store_relaxed(, 148) = void +1822757051561926:1822757051562526 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757051566556:1822757051567166 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757051569196:1822757051569806 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757051570626:1822757051571426 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757051571866:1822757051572276 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 149 +1822757051572726:1822757051573046 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 148 +1822757051573706:1822757051574016 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757051574456:1822757051574946 116426:116426 hsa_signal_store_relaxed(, 149) = void +1822757051576256:1822757052849104 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757052853914:1822757052854484 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757052857034:1822757052858044 116426:116426 hsa_signal_destroy() = 0 +1822757052859764:1822757052860204 116426:116426 hsa_signal_destroy() = 0 +1822757052861234:1822757052861784 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757052862244:1822757052862774 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757052863714:1822757052864304 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757052864714:1822757052865244 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757052865654:1822757052865924 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757052866814:1822757052867344 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757052867834:1822757052868584 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19830) = 0 +1822757052869134:1822757052872614 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce197f0) = 0 +1822757052873084:1822757052874624 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757055474210:1822757055478770 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757055481120:1822757055482330 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757055483360:1822757055484380 116426:116430 hsa_signal_load_relaxed() = 1 +1822757052875094:1822757055490420 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757055488820:1822757055490860 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757055492690:1822757055493400 116426:116430 hsa_signal_destroy() = 0 +1822757056131544:1822757056132284 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757062620326:1822757062621836 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757062636906:1822757062637436 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757062638136:1822757062638666 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757062641636:1822757062642656 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757062643046:1822757062643916 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757062644536:1822757062645586 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757063246500:1822757063246870 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757063248870:1822757063249400 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757063250280:1822757063252550 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19890) = 0 +1822757063253460:1822757063259480 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19850) = 0 +1822757063260290:1822757063263430 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757064930801:1822757064935401 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757064937811:1822757064938911 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757064940061:1822757064940921 116426:116430 hsa_signal_load_relaxed() = 1 +1822757063263990:1822757064943251 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757064941871:1822757064943811 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757064944541:1822757064945091 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757064945461:1822757064946281 116426:116430 hsa_signal_destroy() = 0 +1822757064947111:1822757064947721 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757064964101:1822757064964711 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757064969061:1822757064969671 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757064975951:1822757064976871 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 150 +1822757064977951:1822757064978441 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 150 +1822757064979331:1822757064980431 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757064989271:1822757064989711 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757064991171:1822757064992041 116426:116426 hsa_signal_store_relaxed(, 150) = void +1822757064994181:1822757064994791 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757064998971:1822757064999571 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757065001921:1822757065002531 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757065003561:1822757065004861 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757065005311:1822757065005631 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 151 +1822757065006071:1822757065006391 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 150 +1822757065007031:1822757065007351 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757065007791:1822757065008281 116426:116426 hsa_signal_store_relaxed(, 151) = void +1822757065009831:1822757066270739 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757066275269:1822757066275839 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757066278469:1822757066279479 116426:116426 hsa_signal_destroy() = 0 +1822757066281069:1822757066281749 116426:116426 hsa_signal_destroy() = 0 +1822757066283059:1822757066283619 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757066284069:1822757066284599 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757066285789:1822757066286259 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757066286689:1822757066287099 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757066287509:1822757066287779 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757066288849:1822757066289389 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757066289829:1822757066290499 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce198f0) = 0 +1822757066290959:1822757066294310 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce198b0) = 0 +1822757066294780:1822757066296020 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757068825006:1822757068829606 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757068831976:1822757068833086 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757068834296:1822757068835326 116426:116430 hsa_signal_load_relaxed() = 1 +1822757066296490:1822757068837936 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757068836286:1822757068838296 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757068839586:1822757068840306 116426:116430 hsa_signal_destroy() = 0 +1822757069464000:1822757069464680 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757075874260:1822757075875640 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757075889930:1822757075890470 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757075890940:1822757075891470 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757075893640:1822757075894550 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757075894940:1822757075895810 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757075896340:1822757075897070 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757076494634:1822757076495014 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757076497074:1822757076497674 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757076498664:1822757076501524 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19950) = 0 +1822757076502624:1822757076508894 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19910) = 0 +1822757076509534:1822757076513024 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757078124475:1822757078129035 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757078131225:1822757078132345 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757078133305:1822757078134185 116426:116430 hsa_signal_load_relaxed() = 1 +1822757076513764:1822757078136635 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757078135285:1822757078137235 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757078138185:1822757078138805 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757078138905:1822757078139725 116426:116430 hsa_signal_destroy() = 0 +1822757078141585:1822757078142185 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757078159035:1822757078159845 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757078163945:1822757078164545 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757078170505:1822757078171525 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 152 +1822757078172555:1822757078173205 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 152 +1822757078174395:1822757078175665 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757078176505:1822757078176925 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757078178055:1822757078178895 116426:116426 hsa_signal_store_relaxed(, 152) = void +1822757078181515:1822757078182125 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757078195975:1822757078196575 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757078199695:1822757078200305 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757078201285:1822757078201955 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757078202405:1822757078202725 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 153 +1822757078203165:1822757078203495 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 152 +1822757078204125:1822757078204435 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757078204885:1822757078205375 116426:116426 hsa_signal_store_relaxed(, 153) = void +1822757078206735:1822757079453003 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757079457613:1822757079458513 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757079461333:1822757079462733 116426:116426 hsa_signal_destroy() = 0 +1822757079464733:1822757079465213 116426:116426 hsa_signal_destroy() = 0 +1822757079466453:1822757079467073 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757079467583:1822757079468193 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757079469043:1822757079469573 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757079470033:1822757079470573 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757079471033:1822757079471343 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757079472463:1822757079473063 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757079473563:1822757079474353 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce199b0) = 0 +1822757079474993:1822757079478503 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19970) = 0 +1822757079479033:1822757079480353 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757082001399:1822757082005999 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757082008289:1822757082009399 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757082010419:1822757082011459 116426:116430 hsa_signal_load_relaxed() = 1 +1822757079480873:1822757082014189 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757082012549:1822757082014559 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757082015829:1822757082016549 116426:116430 hsa_signal_destroy() = 0 +1822757082647143:1822757082647823 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757089061924:1822757089062844 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757089077904:1822757089078444 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757089089454:1822757089089994 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757089093114:1822757089094164 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757089094554:1822757089095424 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757089096114:1822757089096904 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757089699128:1822757089699598 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757089701278:1822757089701808 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757089702668:1822757089705628 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19a10) = 0 +1822757089706628:1822757089712098 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce199d0) = 0 +1822757089712738:1822757089716378 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757091476320:1822757091480900 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757091483380:1822757091484480 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757091485570:1822757091486440 116426:116430 hsa_signal_load_relaxed() = 1 +1822757089716938:1822757091488750 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757091487400:1822757091489310 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757091490010:1822757091490530 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757091491050:1822757091491880 116426:116430 hsa_signal_destroy() = 0 +1822757091493240:1822757091493850 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757091510650:1822757091511460 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757091515560:1822757091516160 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757091522020:1822757091523350 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 154 +1822757091524340:1822757091525130 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 154 +1822757091525990:1822757091527060 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757091527780:1822757091528200 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757091529350:1822757091530170 116426:116426 hsa_signal_store_relaxed(, 154) = void +1822757091532400:1822757091533010 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757091536960:1822757091537570 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757091539690:1822757091540300 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757091541190:1822757091542000 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757091545010:1822757091545330 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 155 +1822757091545780:1822757091546100 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 154 +1822757091546750:1822757091547060 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757091547510:1822757091548000 116426:116426 hsa_signal_store_relaxed(, 155) = void +1822757091549500:1822757092812508 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757092817178:1822757092817748 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757092820568:1822757092821868 116426:116426 hsa_signal_destroy() = 0 +1822757092823408:1822757092823858 116426:116426 hsa_signal_destroy() = 0 +1822757092825268:1822757092825818 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757092826268:1822757092826798 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757092827718:1822757092828208 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757092828608:1822757092829028 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757092829438:1822757092829718 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757092830618:1822757092831158 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757092831608:1822757092832358 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19a70) = 0 +1822757092832868:1822757092836338 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19a30) = 0 +1822757092836808:1822757092838218 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757095475145:1822757095479685 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757095482025:1822757095483195 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757095484235:1822757095485265 116426:116430 hsa_signal_load_relaxed() = 1 +1822757092838678:1822757095487805 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757095486225:1822757095488235 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757095489755:1822757095490485 116426:116430 hsa_signal_destroy() = 0 +1822757096137850:1822757096138550 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757102634221:1822757102635461 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757102650921:1822757102651451 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757102652261:1822757102652791 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757102655631:1822757102656521 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757102667931:1822757102668621 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757102669161:1822757102670081 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757103273665:1822757103274025 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757103275525:1822757103276055 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757103277035:1822757103279635 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19ad0) = 0 +1822757103280555:1822757103286405 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19a90) = 0 +1822757103287395:1822757103290555 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757104911985:1822757104916635 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757104918915:1822757104920035 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757104920995:1822757104921855 116426:116430 hsa_signal_load_relaxed() = 1 +1822757103291035:1822757104924425 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757104922945:1822757104924875 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757104925765:1822757104926645 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757104926435:1822757104927565 116426:116430 hsa_signal_destroy() = 0 +1822757104928705:1822757104929325 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757104945725:1822757104946335 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757104950455:1822757104951055 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757104957105:1822757104958016 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 156 +1822757104959016:1822757104959746 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 156 +1822757104960716:1822757104962016 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757104962856:1822757104963276 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757104964326:1822757104965156 116426:116426 hsa_signal_store_relaxed(, 156) = void +1822757104967986:1822757104968596 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757104973766:1822757104974376 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757104976966:1822757104977576 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757104978986:1822757104979926 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757104980376:1822757104980696 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 157 +1822757104981136:1822757104981466 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 156 +1822757104982116:1822757104982436 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757104984966:1822757104985466 116426:116426 hsa_signal_store_relaxed(, 157) = void +1822757104987246:1822757106247164 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757106251624:1822757106252274 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757106254794:1822757106255814 116426:116426 hsa_signal_destroy() = 0 +1822757106257624:1822757106258404 116426:116426 hsa_signal_destroy() = 0 +1822757106259514:1822757106260064 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757106260504:1822757106261034 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757106262034:1822757106262644 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757106263054:1822757106263464 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757106263874:1822757106264144 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757106265054:1822757106265574 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757106266024:1822757106266694 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19b30) = 0 +1822757106267224:1822757106270554 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19af0) = 0 +1822757106271024:1822757106272144 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757108821370:1822757108825930 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757108828560:1822757108829680 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757108830700:1822757108831730 116426:116430 hsa_signal_load_relaxed() = 1 +1822757106272594:1822757108834460 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757108832820:1822757108834840 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757108836040:1822757108836770 116426:116430 hsa_signal_destroy() = 0 +1822757109463364:1822757109464044 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757115892375:1822757115893645 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757115908955:1822757115909485 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757115910285:1822757115910815 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757115913315:1822757115914125 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757115914725:1822757115915355 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757115916085:1822757115916875 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757116524389:1822757116524749 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757116535789:1822757116536329 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757116537349:1822757116540109 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19b90) = 0 +1822757116541169:1822757116547559 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19b50) = 0 +1822757116548289:1822757116551659 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757118179550:1822757118184110 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757118186350:1822757118187490 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757118188580:1822757118189440 116426:116430 hsa_signal_load_relaxed() = 1 +1822757116552309:1822757118191720 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757118190360:1822757118192300 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757118193330:1822757118193830 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757118194270:1822757118195090 116426:116430 hsa_signal_destroy() = 0 +1822757118196830:1822757118197440 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757118213940:1822757118214750 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757118218780:1822757118219380 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757118225750:1822757118226930 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 158 +1822757118227740:1822757118228700 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 158 +1822757118229570:1822757118230880 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757118231600:1822757118231940 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757118233050:1822757118233880 116426:116426 hsa_signal_store_relaxed(, 158) = void +1822757118236090:1822757118236700 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757118240600:1822757118241210 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757118243480:1822757118244080 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757118245130:1822757118245880 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757118246330:1822757118246640 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 159 +1822757118247080:1822757118247400 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 158 +1822757118248030:1822757118248340 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757118248790:1822757118249270 116426:116426 hsa_signal_store_relaxed(, 159) = void +1822757118250680:1822757119514598 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757119519298:1822757119519918 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757119525368:1822757119526448 116426:116426 hsa_signal_destroy() = 0 +1822757119528798:1822757119529288 116426:116426 hsa_signal_destroy() = 0 +1822757119530598:1822757119531218 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757119531718:1822757119532318 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757119533198:1822757119533728 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757119534208:1822757119534668 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757119535258:1822757119535558 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757119536528:1822757119537138 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757119537638:1822757119538728 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19bf0) = 0 +1822757119539318:1822757119542858 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19bb0) = 0 +1822757119543398:1822757119544838 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757122089575:1822757122094135 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757122096315:1822757122097585 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757122098605:1822757122099635 116426:116430 hsa_signal_load_relaxed() = 1 +1822757119545378:1822757122102065 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757122100435:1822757122102445 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757122103795:1822757122104525 116426:116430 hsa_signal_destroy() = 0 +1822757122733549:1822757122734229 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757129248980:1822757129250110 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757129265250:1822757129265790 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757129266500:1822757129267030 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757129269430:1822757129270380 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757129270770:1822757129271310 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757129271930:1822757129272810 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757129854744:1822757129855154 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757129856964:1822757129857494 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757129858484:1822757129860934 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19c50) = 0 +1822757129862244:1822757129867434 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19c10) = 0 +1822757129876014:1822757129879264 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757131515085:1822757131519685 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757131521945:1822757131523055 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757131524015:1822757131524885 116426:116430 hsa_signal_load_relaxed() = 1 +1822757129879774:1822757131527045 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757131525685:1822757131527625 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757131528445:1822757131529075 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757131529165:1822757131529995 116426:116430 hsa_signal_destroy() = 0 +1822757131532065:1822757131532675 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757131550015:1822757131550825 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757131554585:1822757131555185 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757131561145:1822757131562195 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 160 +1822757131563135:1822757131563955 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 160 +1822757131564965:1822757131566025 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757131566795:1822757131567145 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757131568185:1822757131568955 116426:116426 hsa_signal_store_relaxed(, 160) = void +1822757131571305:1822757131571905 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757131576155:1822757131576765 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757131579385:1822757131579995 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757131581045:1822757131581865 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757131582305:1822757131582625 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 161 +1822757131583065:1822757131583395 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 160 +1822757131584055:1822757131584365 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757131584805:1822757131585295 116426:116426 hsa_signal_store_relaxed(, 161) = void +1822757131586685:1822757132843883 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757132848133:1822757132848653 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757132851223:1822757132852523 116426:116426 hsa_signal_destroy() = 0 +1822757132853973:1822757132854423 116426:116426 hsa_signal_destroy() = 0 +1822757132855503:1822757132856053 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757132862103:1822757132862633 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757132863663:1822757132864153 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757132864553:1822757132864973 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757132865453:1822757132865723 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757132866793:1822757132867323 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757132867763:1822757132868543 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19cb0) = 0 +1822757132869123:1822757132872453 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19c70) = 0 +1822757132872933:1822757132874153 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757135475740:1822757135480280 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757135482570:1822757135483690 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757135484710:1822757135485740 116426:116430 hsa_signal_load_relaxed() = 1 +1822757132874623:1822757135488120 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757135486550:1822757135488550 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757135489760:1822757135490490 116426:116430 hsa_signal_destroy() = 0 +1822757136135124:1822757136135874 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757142625635:1822757142627095 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757142642065:1822757142642605 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757142643365:1822757142643905 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757142646205:1822757142647085 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757142647675:1822757142648205 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757142648855:1822757142649935 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757143252549:1822757143252939 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757143254539:1822757143255069 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757143256249:1822757143259049 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19d10) = 0 +1822757143260149:1822757143265829 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19cd0) = 0 +1822757143266559:1822757143270209 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757144923010:1822757144927640 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757144929750:1822757144930850 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757144935810:1822757144936700 116426:116430 hsa_signal_load_relaxed() = 1 +1822757143270879:1822757144939000 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757144937520:1822757144939460 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757144940550:1822757144941350 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757144941140:1822757144942260 116426:116430 hsa_signal_destroy() = 0 +1822757144943540:1822757144944140 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757144960430:1822757144961040 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757144965070:1822757144965680 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757144971390:1822757144972400 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 162 +1822757144973340:1822757144973830 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 162 +1822757144974710:1822757144975950 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757144976610:1822757144977040 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757144978060:1822757144979090 116426:116426 hsa_signal_store_relaxed(, 162) = void +1822757144981470:1822757144982080 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757144986070:1822757144986680 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757144988670:1822757144989280 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757144990100:1822757144991050 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757144991490:1822757144991810 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 163 +1822757144992250:1822757144992570 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 162 +1822757144993210:1822757144993530 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757144993970:1822757144994460 116426:116426 hsa_signal_store_relaxed(, 163) = void +1822757144995970:1822757146248778 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757146253418:1822757146254038 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757146256548:1822757146257858 116426:116426 hsa_signal_destroy() = 0 +1822757146259578:1822757146260338 116426:116426 hsa_signal_destroy() = 0 +1822757146261668:1822757146262208 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757146262658:1822757146263188 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757146263898:1822757146264378 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757146264778:1822757146265198 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757146274979:1822757146275259 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757146276309:1822757146276839 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757146277289:1822757146277979 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19d70) = 0 +1822757146278509:1822757146281879 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19d30) = 0 +1822757146282339:1822757146283519 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757148808635:1822757148813255 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757148815375:1822757148816475 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757148817505:1822757148818525 116426:116430 hsa_signal_load_relaxed() = 1 +1822757146283979:1822757148820985 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757148819335:1822757148821345 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757148822635:1822757148823355 116426:116430 hsa_signal_destroy() = 0 +1822757149449519:1822757149450199 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757155994110:1822757155995440 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757156030800:1822757156031420 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757156031960:1822757156032560 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757156035110:1822757156036050 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757156036500:1822757156037490 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757156038160:1822757156039440 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757156648964:1822757156649614 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757156651404:1822757156651934 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757156652624:1822757156655294 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19dd0) = 0 +1822757156656214:1822757156661834 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19d90) = 0 +1822757156662414:1822757156665785 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757158289225:1822757158293715 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757158296015:1822757158297295 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757158298255:1822757158299115 116426:116430 hsa_signal_load_relaxed() = 1 +1822757156666295:1822757158301425 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757158300075:1822757158302175 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757158302825:1822757158303355 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757158307505:1822757158308255 116426:116430 hsa_signal_destroy() = 0 +1822757158310395:1822757158311005 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757158327645:1822757158328255 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757158332615:1822757158333225 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757158339095:1822757158340105 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 164 +1822757158341045:1822757158341695 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 164 +1822757158342575:1822757158343785 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757158344475:1822757158344895 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757158346135:1822757158346955 116426:116426 hsa_signal_store_relaxed(, 164) = void +1822757158349205:1822757158349815 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757158354145:1822757158354755 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757158357315:1822757158357915 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757158358995:1822757158359755 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757158360205:1822757158360535 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 165 +1822757158360975:1822757158361295 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 164 +1822757158361945:1822757158362265 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757158362705:1822757158363195 116426:116426 hsa_signal_store_relaxed(, 165) = void +1822757158364615:1822757159624994 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757159629334:1822757159629904 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757159632554:1822757159633644 116426:116426 hsa_signal_destroy() = 0 +1822757159635134:1822757159635714 116426:116426 hsa_signal_destroy() = 0 +1822757159636784:1822757159637334 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757159637784:1822757159638324 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757159639194:1822757159639684 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757159640184:1822757159640594 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757159641004:1822757159641284 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757159642344:1822757159642874 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757159649314:1822757159650074 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19e30) = 0 +1822757159650614:1822757159653984 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19df0) = 0 +1822757159654474:1822757159655614 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757162241380:1822757162245850 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757162248120:1822757162249470 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757162250490:1822757162251520 116426:116430 hsa_signal_load_relaxed() = 1 +1822757159656084:1822757162253950 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757162252320:1822757162254340 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757162255700:1822757162256420 116426:116430 hsa_signal_destroy() = 0 +1822757162884344:1822757162885024 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757169382495:1822757169383565 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757169398246:1822757169398786 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757169399606:1822757169400136 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757169402836:1822757169403726 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757169404316:1822757169405146 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757169405906:1822757169406946 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757169990609:1822757169991019 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757169992629:1822757169993159 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757169994339:1822757169997069 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19e90) = 0 +1822757169998099:1822757170003679 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19e50) = 0 +1822757170004619:1822757170008039 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757171674820:1822757171679360 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757171681690:1822757171683070 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757171684230:1822757171685090 116426:116430 hsa_signal_load_relaxed() = 1 +1822757170008669:1822757171687540 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757171686190:1822757171688140 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757171688950:1822757171689660 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757171689780:1822757171690610 116426:116430 hsa_signal_destroy() = 0 +1822757171692380:1822757171692990 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757171716640:1822757171717440 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757171721400:1822757171722010 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757171727760:1822757171728770 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 166 +1822757171729580:1822757171730230 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 166 +1822757171731110:1822757171732180 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757171732871:1822757171733221 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757171734421:1822757171735451 116426:116426 hsa_signal_store_relaxed(, 166) = void +1822757171737731:1822757171738331 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757171742311:1822757171742921 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757171744951:1822757171745551 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757171746711:1822757171747601 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757171748051:1822757171748371 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 167 +1822757171748811:1822757171749121 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 166 +1822757171749761:1822757171750081 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757171750511:1822757171751001 116426:116426 hsa_signal_store_relaxed(, 167) = void +1822757171752541:1822757173010199 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757173015189:1822757173015799 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757173018769:1822757173020449 116426:116426 hsa_signal_destroy() = 0 +1822757173022519:1822757173022999 116426:116426 hsa_signal_destroy() = 0 +1822757173024419:1822757173025049 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757173025559:1822757173026159 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757173027169:1822757173027699 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757173028159:1822757173028609 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757173029079:1822757173029379 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757173030369:1822757173030969 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757173031479:1822757173032289 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19ef0) = 0 +1822757173032809:1822757173036139 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19eb0) = 0 +1822757173036679:1822757173038019 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757175657816:1822757175662366 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757175664626:1822757175666026 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757175667066:1822757175668096 116426:116430 hsa_signal_load_relaxed() = 1 +1822757173041219:1822757175670476 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757175668906:1822757175670946 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757175672316:1822757175673046 116426:116430 hsa_signal_destroy() = 0 +1822757176312910:1822757176313690 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757182720761:1822757182722521 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757182736761:1822757182737291 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757182738221:1822757182738751 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757182741581:1822757182742311 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757182742711:1822757182743571 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757182744141:1822757182745351 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757183325044:1822757183325554 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757183327084:1822757183327614 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757183328584:1822757183331114 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19f50) = 0 +1822757183332064:1822757183337894 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19f10) = 0 +1822757183338624:1822757183341944 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757184938575:1822757184943195 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757184945345:1822757184946455 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757184947485:1822757184948345 116426:116430 hsa_signal_load_relaxed() = 1 +1822757183342434:1822757184950565 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757184949185:1822757184951115 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757184952355:1822757184953185 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757184952765:1822757184953915 116426:116430 hsa_signal_destroy() = 0 +1822757184955805:1822757184956415 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757184973365:1822757184973975 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757184977825:1822757184978425 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757184984705:1822757184985705 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 168 +1822757184996725:1822757184997385 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 168 +1822757184998475:1822757184999675 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757185000325:1822757185000755 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757185001805:1822757185002645 116426:116426 hsa_signal_store_relaxed(, 168) = void +1822757185004885:1822757185005485 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757185009375:1822757185009975 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757185012455:1822757185013065 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757185013995:1822757185014975 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757185015415:1822757185015725 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 169 +1822757185016165:1822757185016485 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 168 +1822757185017165:1822757185017475 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757185017925:1822757185018415 116426:116426 hsa_signal_store_relaxed(, 169) = void +1822757185019945:1822757186290163 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757186294853:1822757186295423 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757186298433:1822757186299443 116426:116426 hsa_signal_destroy() = 0 +1822757186301363:1822757186302043 116426:116426 hsa_signal_destroy() = 0 +1822757186303173:1822757186303723 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757186304173:1822757186304703 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757186305643:1822757186306213 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757186306623:1822757186307033 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757186307443:1822757186307723 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757186308623:1822757186309153 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757186309603:1822757186310243 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce19fb0) = 0 +1822757186310743:1822757186314243 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19f70) = 0 +1822757186314723:1822757186315973 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757188851780:1822757188856370 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757188858640:1822757188859740 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757188860760:1822757188861790 116426:116430 hsa_signal_load_relaxed() = 1 +1822757186316443:1822757188867880 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757188866220:1822757188868250 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757188870050:1822757188870760 116426:116430 hsa_signal_destroy() = 0 +1822757189495264:1822757189495944 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757195932034:1822757195933124 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757195947484:1822757195948024 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757195948634:1822757195949174 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757195951665:1822757195952495 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757195952905:1822757195953545 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757195954165:1822757195954885 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757196574248:1822757196574648 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757196586429:1822757196587039 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757196587989:1822757196590599 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a010) = 0 +1822757196591499:1822757196597139 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce19fd0) = 0 +1822757196597979:1822757196601509 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757198232499:1822757198236989 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757198239449:1822757198240559 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757198241709:1822757198242569 116426:116430 hsa_signal_load_relaxed() = 1 +1822757196602159:1822757198244749 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757198243379:1822757198245309 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757198246129:1822757198247179 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757198246959:1822757198248109 116426:116430 hsa_signal_destroy() = 0 +1822757198250709:1822757198251309 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757198269699:1822757198270309 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757198274649:1822757198275249 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757198281689:1822757198282709 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 170 +1822757198283649:1822757198284299 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 170 +1822757198285119:1822757198286379 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757198287270:1822757198287620 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757198290240:1822757198291170 116426:116426 hsa_signal_store_relaxed(, 170) = void +1822757198293800:1822757198294410 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757198300790:1822757198301400 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757198303800:1822757198304410 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757198305300:1822757198306390 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757198306830:1822757198307140 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 171 +1822757198307580:1822757198307900 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 170 +1822757198308560:1822757198308870 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757198309320:1822757198309800 116426:116426 hsa_signal_store_relaxed(, 171) = void +1822757198311270:1822757199587168 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757199592098:1822757199592728 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757199595628:1822757199596798 116426:116426 hsa_signal_destroy() = 0 +1822757199598438:1822757199598928 116426:116426 hsa_signal_destroy() = 0 +1822757199600248:1822757199600868 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757199601378:1822757199601988 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757199602858:1822757199603388 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757199603848:1822757199604298 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757199604758:1822757199605068 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757199606188:1822757199606788 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757199607308:1822757199608128 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a070) = 0 +1822757199608668:1822757199612168 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a030) = 0 +1822757199612768:1822757199614158 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757202128484:1822757202133014 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757202135464:1822757202136584 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757202137804:1822757202138834 116426:116430 hsa_signal_load_relaxed() = 1 +1822757199614688:1822757202141424 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757202139794:1822757202141804 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757202143104:1822757202143814 116426:116430 hsa_signal_destroy() = 0 +1822757202770668:1822757202771348 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757209270260:1822757209271540 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757209285380:1822757209285920 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757209286400:1822757209286930 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757209289230:1822757209289960 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757209290350:1822757209291220 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757209291790:1822757209292910 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757209874224:1822757209874564 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757209876274:1822757209876804 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757209877994:1822757209880584 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a0d0) = 0 +1822757209881584:1822757209887394 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a090) = 0 +1822757209888144:1822757209891534 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757211517664:1822757211522194 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757211524394:1822757211525604 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757211526564:1822757211527434 116426:116430 hsa_signal_load_relaxed() = 1 +1822757209892024:1822757211529884 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757211528534:1822757211530464 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757211531444:1822757211532334 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757211532114:1822757211533244 116426:116430 hsa_signal_destroy() = 0 +1822757211535124:1822757211535724 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757211552044:1822757211552664 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757211556524:1822757211557124 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757211562744:1822757211563764 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 172 +1822757211564784:1822757211565434 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 172 +1822757211566484:1822757211567794 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757211568694:1822757211569124 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757211570164:1822757211570984 116426:116426 hsa_signal_store_relaxed(, 172) = void +1822757211573344:1822757211573954 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757211578134:1822757211578744 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757211590714:1822757211591324 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757211592244:1822757211593144 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757211593584:1822757211593994 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 173 +1822757211594444:1822757211594754 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 172 +1822757211595404:1822757211595714 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757211596164:1822757211596654 116426:116426 hsa_signal_store_relaxed(, 173) = void +1822757211598174:1822757212865722 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757212869912:1822757212870432 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757212873542:1822757212874612 116426:116426 hsa_signal_destroy() = 0 +1822757212876282:1822757212876732 116426:116426 hsa_signal_destroy() = 0 +1822757212877832:1822757212878382 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757212878832:1822757212879362 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757212880182:1822757212880672 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757212881082:1822757212881652 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757212882062:1822757212882332 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757212883422:1822757212883952 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757212884442:1822757212885182 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a130) = 0 +1822757212885642:1822757212889002 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a0f0) = 0 +1822757212889492:1822757212890652 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757215480689:1822757215485249 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757215487599:1822757215488899 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757215489919:1822757215490939 116426:116430 hsa_signal_load_relaxed() = 1 +1822757212891112:1822757215493619 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757215492049:1822757215494059 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757215495399:1822757215496119 116426:116430 hsa_signal_destroy() = 0 +1822757216142773:1822757216143493 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757222620205:1822757222621525 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757222637825:1822757222638365 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757222650295:1822757222650835 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757222653245:1822757222653975 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757222654365:1822757222655225 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757222655865:1822757222656815 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757223253339:1822757223253739 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757223255419:1822757223255949 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757223256909:1822757223259339 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a190) = 0 +1822757223260359:1822757223266849 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a150) = 0 +1822757223267769:1822757223270969 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757224891609:1822757224896179 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757224898629:1822757224899739 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757224900819:1822757224901689 116426:116430 hsa_signal_load_relaxed() = 1 +1822757223271549:1822757224904039 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757224902669:1822757224904599 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757224905299:1822757224905819 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757224906279:1822757224907109 116426:116430 hsa_signal_destroy() = 0 +1822757224907979:1822757224908799 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757224926510:1822757224927120 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757224930980:1822757224931580 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757224937730:1822757224938650 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 174 +1822757224939710:1822757224940200 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 174 +1822757224941030:1822757224942300 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757224943370:1822757224943800 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757224944990:1822757224945820 116426:116426 hsa_signal_store_relaxed(, 174) = void +1822757224948490:1822757224949100 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757224953450:1822757224954050 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757224956280:1822757224956890 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757224957970:1822757224958920 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757224961430:1822757224961760 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 175 +1822757224962210:1822757224962520 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 174 +1822757224963340:1822757224963660 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757224964100:1822757224964590 116426:116426 hsa_signal_store_relaxed(, 175) = void +1822757224966150:1822757226228068 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757226232178:1822757226232748 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757226236018:1822757226237388 116426:116426 hsa_signal_destroy() = 0 +1822757226238968:1822757226239738 116426:116426 hsa_signal_destroy() = 0 +1822757226240918:1822757226241458 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757226241898:1822757226242428 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757226243218:1822757226243698 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757226244108:1822757226244518 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757226244928:1822757226245198 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757226246248:1822757226246778 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757226247218:1822757226247908 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a1f0) = 0 +1822757226248478:1822757226251878 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a1b0) = 0 +1822757226252338:1822757226253518 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757228790444:1822757228795014 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757228797464:1822757228798684 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757228799824:1822757228800854 116426:116430 hsa_signal_load_relaxed() = 1 +1822757226253978:1822757228803464 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757228801824:1822757228803834 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757228805264:1822757228805984 116426:116430 hsa_signal_destroy() = 0 +1822757229429178:1822757229429858 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757235881799:1822757235883419 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757235897589:1822757235898129 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757235898769:1822757235899299 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757235901759:1822757235902639 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757235903029:1822757235903899 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757235914539:1822757235915739 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757236523443:1822757236523753 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757236525383:1822757236525913 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757236526873:1822757236529253 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a250) = 0 +1822757236530333:1822757236536433 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a210) = 0 +1822757236537003:1822757236540454 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757238166624:1822757238171184 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757238173564:1822757238174724 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757238175684:1822757238176544 116426:116430 hsa_signal_load_relaxed() = 1 +1822757236541064:1822757238178984 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757238177624:1822757238179564 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757238180724:1822757238181484 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757238181104:1822757238182234 116426:116430 hsa_signal_destroy() = 0 +1822757238184534:1822757238185144 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757238201624:1822757238202234 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757238206424:1822757238207034 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757238212964:1822757238213994 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 176 +1822757238214794:1822757238215454 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 176 +1822757238216344:1822757238217624 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757238218324:1822757238218754 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757238219824:1822757238220824 116426:116426 hsa_signal_store_relaxed(, 176) = void +1822757238223164:1822757238223774 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757238228644:1822757238229244 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757238231494:1822757238232104 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757238232934:1822757238233804 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757238234244:1822757238234564 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 177 +1822757238235004:1822757238235324 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 176 +1822757238235974:1822757238236284 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757238242244:1822757238242744 116426:116426 hsa_signal_store_relaxed(, 177) = void +1822757238244494:1822757239512763 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757239517433:1822757239517993 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757239520733:1822757239521823 116426:116426 hsa_signal_destroy() = 0 +1822757239523633:1822757239524113 116426:116426 hsa_signal_destroy() = 0 +1822757239525363:1822757239525983 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757239526493:1822757239527093 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757239528033:1822757239528553 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757239529013:1822757239529623 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757239530403:1822757239530713 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757239531693:1822757239532293 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757239532803:1822757239533623 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a2b0) = 0 +1822757239534263:1822757239537783 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a270) = 0 +1822757239538313:1822757239539553 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757242045168:1822757242049718 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757242052239:1822757242053349 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757242054379:1822757242055409 116426:116430 hsa_signal_load_relaxed() = 1 +1822757239540073:1822757242058119 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757242056499:1822757242058549 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757242059749:1822757242060479 116426:116430 hsa_signal_destroy() = 0 +1822757242683672:1822757242684342 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757249236054:1822757249236864 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757249251974:1822757249252514 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757249253274:1822757249253814 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757249256504:1822757249257384 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757249258044:1822757249258914 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757249259574:1822757249260384 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757249862138:1822757249862558 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757249864028:1822757249864568 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757249872578:1822757249875018 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a310) = 0 +1822757249875938:1822757249881718 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a2d0) = 0 +1822757249882878:1822757249886098 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757251523049:1822757251527609 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757251529839:1822757251531079 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757251532039:1822757251532899 116426:116430 hsa_signal_load_relaxed() = 1 +1822757249886678:1822757251535059 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757251533699:1822757251535639 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757251536579:1822757251537079 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757251537519:1822757251538349 116426:116430 hsa_signal_destroy() = 0 +1822757251539719:1822757251540329 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757251557419:1822757251558029 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757251562359:1822757251562959 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757251569089:1822757251570259 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 178 +1822757251571409:1822757251572059 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 178 +1822757251572939:1822757251573999 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757251574719:1822757251575069 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757251576059:1822757251576869 116426:116426 hsa_signal_store_relaxed(, 178) = void +1822757251579119:1822757251579729 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757251583989:1822757251584599 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757251587069:1822757251587669 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757251588649:1822757251589389 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757251589829:1822757251590149 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 179 +1822757251590589:1822757251590909 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 178 +1822757251591759:1822757251592069 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757251592519:1822757251592999 116426:116426 hsa_signal_store_relaxed(, 179) = void +1822757251594479:1822757252857798 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757252862678:1822757252863448 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757252868188:1822757252869248 116426:116426 hsa_signal_destroy() = 0 +1822757252871038:1822757252871568 116426:116426 hsa_signal_destroy() = 0 +1822757252872658:1822757252873208 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757252873668:1822757252874198 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757252874798:1822757252875278 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757252875688:1822757252876218 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757252876748:1822757252877028 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757252877918:1822757252878458 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757252878898:1822757252879648 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a370) = 0 +1822757252880168:1822757252883488 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a330) = 0 +1822757252883958:1822757252885328 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757255477504:1822757255482034 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757255484244:1822757255485644 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757255486694:1822757255487714 116426:116430 hsa_signal_load_relaxed() = 1 +1822757252885798:1822757255490094 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757255488524:1822757255490524 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757255492164:1822757255492884 116426:116430 hsa_signal_destroy() = 0 +1822757256131558:1822757256132258 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757262626950:1822757262628290 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757262643370:1822757262643910 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757262644620:1822757262645150 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757262648050:1822757262648950 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757262649700:1822757262650570 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757262651220:1822757262652090 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757263251154:1822757263251644 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757263253264:1822757263253794 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757263254874:1822757263257404 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a3d0) = 0 +1822757263258324:1822757263263964 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a390) = 0 +1822757263264774:1822757263268334 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757264894394:1822757264898954 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757264901244:1822757264902354 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757264903314:1822757264904194 116426:116430 hsa_signal_load_relaxed() = 1 +1822757263275434:1822757264906474 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757264904994:1822757264906924 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757264907874:1822757264908714 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757264908484:1822757264909604 116426:116430 hsa_signal_destroy() = 0 +1822757264911224:1822757264911834 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757264929084:1822757264929694 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757264934264:1822757264934864 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757264941064:1822757264942044 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 180 +1822757264943124:1822757264943614 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 180 +1822757264944644:1822757264945814 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757264946664:1822757264947084 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757264948274:1822757264949184 116426:116426 hsa_signal_store_relaxed(, 180) = void +1822757264951704:1822757264952314 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757264956494:1822757264957104 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757264959514:1822757264960124 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757264961094:1822757264962044 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757264962484:1822757264962804 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 181 +1822757264963244:1822757264963554 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 180 +1822757264964214:1822757264964524 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757264964974:1822757264965464 116426:116426 hsa_signal_store_relaxed(, 181) = void +1822757264967185:1822757266215062 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757266219422:1822757266219942 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757266222862:1822757266224042 116426:116426 hsa_signal_destroy() = 0 +1822757266225782:1822757266226552 116426:116426 hsa_signal_destroy() = 0 +1822757266227722:1822757266228272 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757266230862:1822757266231402 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757266232102:1822757266232862 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757266233272:1822757266233832 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757266234242:1822757266234512 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757266235402:1822757266235932 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757266236382:1822757266237072 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a430) = 0 +1822757266237652:1822757266241022 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a3f0) = 0 +1822757266241492:1822757266242742 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757268778378:1822757268782958 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757268785048:1822757268786148 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757268787168:1822757268788198 116426:116430 hsa_signal_load_relaxed() = 1 +1822757266243202:1822757268790648 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757268789008:1822757268791008 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757268792218:1822757268792938 116426:116430 hsa_signal_destroy() = 0 +1822757269420073:1822757269420753 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757275856114:1822757275857514 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757275871514:1822757275872044 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757275873054:1822757275873584 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757275876114:1822757275877004 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757275877604:1822757275878054 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757275878714:1822757275879404 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757276490498:1822757276491138 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757276492988:1822757276493518 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757276494598:1822757276497078 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a490) = 0 +1822757276498268:1822757276504438 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a450) = 0 +1822757276505178:1822757276508798 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757278129888:1822757278134458 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757278136708:1822757278137928 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757278139018:1822757278139878 116426:116430 hsa_signal_load_relaxed() = 1 +1822757276509378:1822757278145798 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757278144428:1822757278146378 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757278147358:1822757278147808 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757278148408:1822757278149118 116426:116430 hsa_signal_destroy() = 0 +1822757278150528:1822757278151428 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757278176568:1822757278177178 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757278181008:1822757278181618 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757278187228:1822757278188248 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 182 +1822757278189048:1822757278189698 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 182 +1822757278190588:1822757278191948 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757278192698:1822757278193118 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757278194288:1822757278195048 116426:116426 hsa_signal_store_relaxed(, 182) = void +1822757278197318:1822757278197928 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757278201948:1822757278202548 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757278205649:1822757278206259 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757278207379:1822757278208039 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757278208479:1822757278208799 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 183 +1822757278209239:1822757278209569 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 182 +1822757278210209:1822757278210519 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757278210959:1822757278211449 116426:116426 hsa_signal_store_relaxed(, 183) = void +1822757278213129:1822757279471656 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757279476836:1822757279477576 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757279480266:1822757279481406 116426:116426 hsa_signal_destroy() = 0 +1822757279483006:1822757279483486 116426:116426 hsa_signal_destroy() = 0 +1822757279484716:1822757279485336 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757279485846:1822757279486456 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757279487296:1822757279487826 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757279488286:1822757279488866 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757279492557:1822757279492867 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757279494007:1822757279494617 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757279495137:1822757279495977 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a4f0) = 0 +1822757279496567:1822757279500087 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a4b0) = 0 +1822757279500617:1822757279501937 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757282031023:1822757282035593 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757282037783:1822757282039103 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757282040123:1822757282041153 116426:116430 hsa_signal_load_relaxed() = 1 +1822757279502467:1822757282043603 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757282041963:1822757282043973 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757282045323:1822757282046043 116426:116430 hsa_signal_destroy() = 0 +1822757282672197:1822757282672877 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757289206669:1822757289207759 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757289222439:1822757289222979 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757289223689:1822757289224229 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757289226869:1822757289227849 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757289228249:1822757289229119 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757289229749:1822757289230639 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757289810743:1822757289811383 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757289813063:1822757289813593 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757289814223:1822757289816483 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a550) = 0 +1822757289817543:1822757289823353 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a510) = 0 +1822757289823943:1822757289827213 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757291478573:1822757291483133 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757291485333:1822757291486443 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757291487403:1822757291488263 116426:116430 hsa_signal_load_relaxed() = 1 +1822757289827703:1822757291490574 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757291489223:1822757291491174 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757291491874:1822757291492374 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757291497114:1822757291497854 116426:116430 hsa_signal_destroy() = 0 +1822757291504884:1822757291505494 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757291521584:1822757291522244 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757291525784:1822757291526394 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757291532734:1822757291533664 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 184 +1822757291534494:1822757291535144 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 184 +1822757291535994:1822757291537054 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757291537734:1822757291538084 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757291539304:1822757291540124 116426:116426 hsa_signal_store_relaxed(, 184) = void +1822757291542514:1822757291543124 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757291546844:1822757291547454 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757291549544:1822757291550144 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757291551374:1822757291552114 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757291552564:1822757291552884 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 185 +1822757291553324:1822757291553634 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 184 +1822757291554274:1822757291554604 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757291555044:1822757291555544 116426:116426 hsa_signal_store_relaxed(, 185) = void +1822757291556994:1822757292826732 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757292831412:1822757292832012 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757292834962:1822757292836342 116426:116426 hsa_signal_destroy() = 0 +1822757292838152:1822757292838592 116426:116426 hsa_signal_destroy() = 0 +1822757292839702:1822757292840252 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757292840702:1822757292841232 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757292842152:1822757292842632 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757292843192:1822757292843612 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757292844162:1822757292844432 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757292845482:1822757292846022 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757292846472:1822757292847222 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a5b0) = 0 +1822757292850582:1822757292854112 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a570) = 0 +1822757292854602:1822757292855722 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757295481668:1822757295486208 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757295488448:1822757295489738 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757295490758:1822757295491789 116426:116430 hsa_signal_load_relaxed() = 1 +1822757292856182:1822757295494169 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757295492599:1822757295494639 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757295495919:1822757295496649 116426:116430 hsa_signal_destroy() = 0 +1822757296138733:1822757296139473 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757302617784:1822757302619044 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757302634104:1822757302634634 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757302635484:1822757302636014 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757302638744:1822757302639454 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757302640044:1822757302641074 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757302641834:1822757302642744 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757303241438:1822757303241798 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757303243748:1822757303244278 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757303245438:1822757303248188 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a610) = 0 +1822757303249308:1822757303255188 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a5d0) = 0 +1822757303255998:1822757303259658 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757304936739:1822757304941369 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757304943569:1822757304944679 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757304945829:1822757304946699 116426:116430 hsa_signal_load_relaxed() = 1 +1822757303260218:1822757304949069 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757304947699:1822757304949619 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757304950649:1822757304951329 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757304951459:1822757304952279 116426:116430 hsa_signal_destroy() = 0 +1822757304953759:1822757304954369 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757304979199:1822757304979809 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757304983859:1822757304984469 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757304990459:1822757304991369 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 186 +1822757304992309:1822757304992799 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 186 +1822757304993649:1822757304994739 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757304995439:1822757304995869 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757304996889:1822757304998049 116426:116426 hsa_signal_store_relaxed(, 186) = void +1822757305000199:1822757305000799 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757305004729:1822757305005339 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757305008209:1822757305008819 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757305009969:1822757305010919 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757305011359:1822757305011679 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 187 +1822757305012119:1822757305012449 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 186 +1822757305013099:1822757305013419 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757305013869:1822757305014359 116426:116426 hsa_signal_store_relaxed(, 187) = void +1822757305015889:1822757306266927 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757306271557:1822757306272147 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757306274717:1822757306276057 116426:116426 hsa_signal_destroy() = 0 +1822757306277917:1822757306278687 116426:116426 hsa_signal_destroy() = 0 +1822757306279997:1822757306280537 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757306280987:1822757306281527 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757306282567:1822757306283047 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757306283457:1822757306284027 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757306284567:1822757306284837 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757306285757:1822757306286287 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757306286737:1822757306287387 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a670) = 0 +1822757306287917:1822757306291267 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a630) = 0 +1822757306291747:1822757306293007 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757308849993:1822757308854553 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757308860473:1822757308861603 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757308862654:1822757308863664 116426:116430 hsa_signal_load_relaxed() = 1 +1822757306293467:1822757308866114 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757308864474:1822757308866474 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757308867724:1822757308868454 116426:116430 hsa_signal_destroy() = 0 +1822757309493678:1822757309494348 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757315910369:1822757315911779 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757315925069:1822757315925609 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757315926139:1822757315926669 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757315929159:1822757315930049 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757315930449:1822757315931079 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757315931719:1822757315932509 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757316540903:1822757316541543 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757316543133:1822757316543733 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757316544593:1822757316547103 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a6d0) = 0 +1822757316548213:1822757316554783 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a690) = 0 +1822757316555563:1822757316558513 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757318173293:1822757318177863 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757318180093:1822757318181353 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757318182313:1822757318183183 116426:116430 hsa_signal_load_relaxed() = 1 +1822757316559123:1822757318185483 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757318184133:1822757318186063 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757318186983:1822757318187923 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757318187713:1822757318188853 116426:116430 hsa_signal_destroy() = 0 +1822757318190793:1822757318191403 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757318208504:1822757318209114 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757318213624:1822757318214224 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757318220304:1822757318221344 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 188 +1822757318232554:1822757318233224 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 188 +1822757318234054:1822757318235404 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757318236114:1822757318236464 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757318238054:1822757318238904 116426:116426 hsa_signal_store_relaxed(, 188) = void +1822757318241274:1822757318241884 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757318246684:1822757318247294 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757318249754:1822757318250354 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757318251394:1822757318252144 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757318252584:1822757318252904 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 189 +1822757318253344:1822757318253654 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 188 +1822757318254304:1822757318254614 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757318255064:1822757318255544 116426:116426 hsa_signal_store_relaxed(, 189) = void +1822757318257084:1822757319522222 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757319527102:1822757319527722 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757319530472:1822757319531862 116426:116426 hsa_signal_destroy() = 0 +1822757319534182:1822757319534652 116426:116426 hsa_signal_destroy() = 0 +1822757319536012:1822757319536632 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757319537142:1822757319537742 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757319538632:1822757319539162 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757319539622:1822757319540312 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757319540782:1822757319541082 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757319542062:1822757319542662 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757319543172:1822757319543982 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a730) = 0 +1822757319544542:1822757319548052 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a6f0) = 0 +1822757319548592:1822757319549912 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757322088768:1822757322093338 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757322095608:1822757322096718 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757322097748:1822757322098778 116426:116430 hsa_signal_load_relaxed() = 1 +1822757319550432:1822757322101348 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757322099728:1822757322101738 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757322107598:1822757322108328 116426:116430 hsa_signal_destroy() = 0 +1822757322732492:1822757322733172 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757329255954:1822757329257034 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757329271764:1822757329272294 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757329272904:1822757329273434 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757329275964:1822757329276974 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757329277724:1822757329278584 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757329279314:1822757329280044 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757329858008:1822757329858518 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757329859898:1822757329860438 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757329861448:1822757329864088 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a790) = 0 +1822757329865108:1822757329870938 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a750) = 0 +1822757329871678:1822757329874868 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757331507908:1822757331512498 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757331514828:1822757331515928 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757331517088:1822757331517948 116426:116430 hsa_signal_load_relaxed() = 1 +1822757329875538:1822757331520408 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757331519048:1822757331520988 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757331521678:1822757331522508 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757331522638:1822757331523468 116426:116430 hsa_signal_destroy() = 0 +1822757331525608:1822757331526218 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757331542858:1822757331543468 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757331547888:1822757331548498 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757331554208:1822757331555239 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 190 +1822757331556179:1822757331556829 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 190 +1822757331557659:1822757331559169 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757331560099:1822757331560529 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757331569319:1822757331570179 116426:116426 hsa_signal_store_relaxed(, 190) = void +1822757331572789:1822757331573399 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757331577469:1822757331578069 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757331580299:1822757331580899 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757331582279:1822757331583019 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757331583459:1822757331583779 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 191 +1822757331584229:1822757331584549 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 190 +1822757331585199:1822757331585519 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757331585959:1822757331586449 116426:116426 hsa_signal_store_relaxed(, 191) = void +1822757331588069:1822757332848177 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757332852597:1822757332853167 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757332855807:1822757332856847 116426:116426 hsa_signal_destroy() = 0 +1822757332858777:1822757332859217 116426:116426 hsa_signal_destroy() = 0 +1822757332860267:1822757332860827 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757332861277:1822757332861807 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757332862737:1822757332863217 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757332863627:1822757332864047 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757332864457:1822757332864727 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757332865627:1822757332866167 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757332866617:1822757332867367 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a7f0) = 0 +1822757332867947:1822757332871417 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a7b0) = 0 +1822757332871887:1822757332873287 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757335480664:1822757335485224 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757335487614:1822757335488724 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757335489934:1822757335490964 116426:116430 hsa_signal_load_relaxed() = 1 +1822757332873757:1822757335493564 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757335491994:1822757335494004 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757335495294:1822757335496014 116426:116430 hsa_signal_destroy() = 0 +1822757336145698:1822757336146428 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757342637789:1822757342639019 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757342655129:1822757342655659 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757342656439:1822757342656969 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757342659529:1822757342660389 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757342660789:1822757342661649 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757342662299:1822757342663339 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757343261463:1822757343261983 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757343263593:1822757343264123 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757343265303:1822757343267893 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a850) = 0 +1822757343268883:1822757343274783 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a810) = 0 +1822757343275523:1822757343278873 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757344898793:1822757344903393 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757344905563:1822757344906673 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757344907633:1822757344908503 116426:116430 hsa_signal_load_relaxed() = 1 +1822757343279423:1822757344911014 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757344909603:1822757344911544 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757344912684:1822757344913544 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757344913184:1822757344914324 116426:116430 hsa_signal_destroy() = 0 +1822757344916204:1822757344916814 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757344941584:1822757344942194 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757344945984:1822757344946594 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757344953114:1822757344954044 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 192 +1822757344955194:1822757344955684 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 192 +1822757344956914:1822757344958034 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757344958924:1822757344959354 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757344960404:1822757344961274 116426:116426 hsa_signal_store_relaxed(, 192) = void +1822757344963794:1822757344964404 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757344968914:1822757344969524 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757344977164:1822757344977764 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757344978774:1822757344979704 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757344980154:1822757344980474 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 193 +1822757344980914:1822757344981234 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 192 +1822757344981874:1822757344982194 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757344982634:1822757344983124 116426:116426 hsa_signal_store_relaxed(, 193) = void +1822757344984834:1822757346243782 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757346248222:1822757346248842 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757346251552:1822757346252742 116426:116426 hsa_signal_destroy() = 0 +1822757346254302:1822757346255072 116426:116426 hsa_signal_destroy() = 0 +1822757346256132:1822757346256682 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757346257132:1822757346257662 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757346258582:1822757346259062 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757346259472:1822757346259892 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757346260292:1822757346260562 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757346261632:1822757346262162 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757346262612:1822757346263312 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a8b0) = 0 +1822757346263782:1822757346267112 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a870) = 0 +1822757346267572:1822757346268932 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757348812938:1822757348817538 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757348819628:1822757348820728 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757348821768:1822757348822798 116426:116430 hsa_signal_load_relaxed() = 1 +1822757346269392:1822757348825598 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757348823898:1822757348825908 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757348827249:1822757348827969 116426:116430 hsa_signal_destroy() = 0 +1822757349451542:1822757349452232 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757355900323:1822757355901593 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757355916623:1822757355917163 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757355928523:1822757355929053 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757355931504:1822757355932344 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757355932734:1822757355933384 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757355934024:1822757355934804 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757356546507:1822757356546827 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757356548397:1822757356548937 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757356549947:1822757356552797 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a910) = 0 +1822757356553678:1822757356559588 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a8d0) = 0 +1822757356560368:1822757356563408 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757358195968:1822757358200518 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757358202978:1822757358204088 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757358205318:1822757358206178 116426:116430 hsa_signal_load_relaxed() = 1 +1822757356564028:1822757358208498 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757358207148:1822757358209098 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757358209608:1822757358210238 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757358210748:1822757358211568 116426:116430 hsa_signal_destroy() = 0 +1822757358213198:1822757358213808 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757358231298:1822757358231918 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757358236048:1822757358236658 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757358242408:1822757358243348 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 194 +1822757358244418:1822757358245228 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 194 +1822757358246168:1822757358247488 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757358248188:1822757358248538 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757358249658:1822757358250498 116426:116426 hsa_signal_store_relaxed(, 194) = void +1822757358253118:1822757358253728 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757358257568:1822757358258178 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757358260118:1822757358260728 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757358261788:1822757358262468 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757358262918:1822757358263238 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 195 +1822757358266099:1822757358266419 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 194 +1822757358267079:1822757358267409 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757358267849:1822757358268339 116426:116426 hsa_signal_store_relaxed(, 195) = void +1822757358269969:1822757359531897 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757359536257:1822757359536867 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757359540137:1822757359541497 116426:116426 hsa_signal_destroy() = 0 +1822757359543367:1822757359543847 116426:116426 hsa_signal_destroy() = 0 +1822757359545377:1822757359546007 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757359546517:1822757359547127 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757359548117:1822757359548647 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757359549107:1822757359549677 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757359550207:1822757359550507 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757359551447:1822757359552057 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757359552557:1822757359553367 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a970) = 0 +1822757359553957:1822757359557467 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a930) = 0 +1822757359557987:1822757359559427 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757362094043:1822757362098613 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757362100993:1822757362102283 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757362103433:1822757362104463 116426:116430 hsa_signal_load_relaxed() = 1 +1822757359559957:1822757362107053 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757362105423:1822757362107443 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757362108813:1822757362109543 116426:116430 hsa_signal_destroy() = 0 +1822757362731357:1822757362732037 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757369248468:1822757369249748 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757369264168:1822757369264708 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757369265408:1822757369265948 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757369268518:1822757369269408 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757369269798:1822757369270698 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757369280518:1822757369281558 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757369877182:1822757369877702 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757369879342:1822757369879872 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757369880962:1822757369883702 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1a9d0) = 0 +1822757369884562:1822757369890322 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a990) = 0 +1822757369890882:1822757369894732 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757371531823:1822757371536363 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757371538593:1822757371539693 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757371540653:1822757371541523 116426:116430 hsa_signal_load_relaxed() = 1 +1822757369895292:1822757371543963 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757371542603:1822757371544733 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757371545603:1822757371546463 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757371546253:1822757371547393 116426:116430 hsa_signal_destroy() = 0 +1822757371549163:1822757371549773 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757371565613:1822757371566213 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757371570193:1822757371570803 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757371576813:1822757371577823 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 196 +1822757371578843:1822757371579483 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 196 +1822757371580573:1822757371581693 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757371582513:1822757371582943 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757371584003:1822757371584823 116426:116426 hsa_signal_store_relaxed(, 196) = void +1822757371587283:1822757371587883 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757371592523:1822757371593123 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757371595583:1822757371596183 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757371597103:1822757371597833 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757371598273:1822757371598603 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 197 +1822757371599053:1822757371599363 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 196 +1822757371600213:1822757371600533 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757371600973:1822757371601453 116426:116426 hsa_signal_store_relaxed(, 197) = void +1822757371605263:1822757372872982 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757372877672:1822757372878292 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757372881312:1822757372882272 116426:116426 hsa_signal_destroy() = 0 +1822757372883712:1822757372884152 116426:116426 hsa_signal_destroy() = 0 +1822757372885252:1822757372885802 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757372886252:1822757372886782 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757372887712:1822757372888192 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757372888602:1822757372889012 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757372889482:1822757372889762 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757372890812:1822757372891342 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757372891792:1822757372892542 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1aa30) = 0 +1822757372892992:1822757372896352 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1a9f0) = 0 +1822757372896902:1822757372898292 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757375482728:1822757375487288 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757375489648:1822757375490758 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757375491778:1822757375492808 116426:116430 hsa_signal_load_relaxed() = 1 +1822757372898752:1822757375495468 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757375493898:1822757375495908 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757375497098:1822757375497818 116426:116430 hsa_signal_destroy() = 0 +1822757376140183:1822757376140893 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757382599963:1822757382601173 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757382617683:1822757382618223 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757382618993:1822757382619523 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757382621873:1822757382622783 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757382623523:1822757382624163 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757382625103:1822757382626013 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757383202677:1822757383203167 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757383204717:1822757383205247 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb40) = 0 +1822757383215937:1822757383218627 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1aa90) = 0 +1822757383219697:1822757383225767 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1aa50) = 0 +1822757383226557:1822757383229747 116426:116426 hsa_amd_memory_async_copy(0x7f15f6e00000, , 0x7f1608a00000, , , , 0, ) = 0 +1822757384857048:1822757384861648 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757384863708:1822757384864818 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757384865778:1822757384866648 116426:116430 hsa_signal_load_relaxed() = 1 +1822757383230227:1822757384868828 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757384867458:1822757384869398 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757384870368:1822757384871168 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757384871298:1822757384872118 116426:116430 hsa_signal_destroy() = 0 +1822757384873648:1822757384874258 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757384889878:1822757384890488 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757384894548:1822757384895158 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef370) = 0 +1822757384901188:1822757384902208 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 198 +1822757384903038:1822757384903978 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 198 +1822757384904858:1822757384906098 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eefe0) = 0 +1822757384906788:1822757384907138 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757384908218:1822757384909038 116426:116426 hsa_signal_store_relaxed(, 198) = void +1822757384911458:1822757384912058 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef380) = 0 +1822757384915888:1822757384916488 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757384918588:1822757384919198 116426:116426 hsa_system_get_info(2, 0x7fff0b6eef40) = 0 +1822757384920128:1822757384921068 116426:116426 hsa_signal_create(1, , 0, 0x7fff0b6eec20) = 0 +1822757384921518:1822757384921828 116426:116426 hsa_queue_load_write_index_relaxed(0x7f16245ba000) = 199 +1822757384922268:1822757384922598 116426:116426 hsa_queue_load_read_index_scacquire(0x7f16245ba000) = 198 +1822757384923238:1822757384923558 116426:116426 hsa_queue_store_write_index_relaxed(0x7f16245ba000, ) = void +1822757384923998:1822757384924488 116426:116426 hsa_signal_store_relaxed(, 199) = void +1822757384926388:1822757386188936 116426:116426 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822757386193466:1822757386194046 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822757386196826:1822757386197956 116426:116426 hsa_signal_destroy() = 0 +1822757386201546:1822757386202316 116426:116426 hsa_signal_destroy() = 0 +1822757386203626:1822757386204176 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef170) = 0 +1822757386204626:1822757386205156 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef1b8) = 0 +1822757386206386:1822757386206876 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757386207266:1822757386207686 116426:116426 hsa_signal_store_screlease(, 0) = void +1822757386208086:1822757386208356 116426:116426 hsa_signal_store_screlease(, 1) = void +1822757386209156:1822757386209686 116426:116426 hsa_system_get_info(2, 0x7fff0b6eeb50) = 0 +1822757386210216:1822757386210896 116426:116426 hsa_signal_create(1, , 0, 0x7f160ce1aaf0) = 0 +1822757386211336:1822757386214726 116426:116426 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f160ce1aab0) = 0 +1822757386215276:1822757386216576 116426:116426 hsa_amd_memory_async_copy(0x7f15f7a00000, , 0x7f15f6800000, , , , 0, ) = 0 +1822757388780333:1822757388784893 116426:116430 hsa_amd_profiling_get_async_copy_time(, 0x7f160bc12b00) = 0 +1822757388787173:1822757388788473 116426:116430 hsa_system_get_info(2, 0x7f160bc12af8) = 0 +1822757388789493:1822757388790523 116426:116430 hsa_signal_load_relaxed() = 1 +1822757386217036:1822757388792973 116426:116426 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822757388791323:1822757388793423 116426:116430 hsa_signal_store_screlease(, 0) = void +1822757388795173:1822757388795893 116426:116430 hsa_signal_destroy() = 0 +1822757389423537:1822757389424217 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757395858398:1822757395859938 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757395878358:1822757395879568 116426:116426 hsa_signal_load_scacquire() = 0 +1822757395884448:1822757395962578 116426:116426 hsa_amd_memory_pool_free(0x7f15f6e00000) = 0 +1822757395970008:1822757395970548 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757395972978:1822757395973508 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757395974848:1822757395975158 116426:116426 hsa_signal_load_scacquire() = 0 +1822757395975938:1822757395989108 116426:116426 hsa_amd_memory_pool_free(0x7f15f6800000) = 0 +1822757395991148:1822757395991678 116426:116426 hsa_system_get_info(2, 0x7fff0b6ef520) = 0 +1822757396034509:1822757396062979 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396064039:1822757396066369 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396067069:1822757396069179 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396075699:1822757396077859 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396078649:1822757396080779 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396081639:1822757396083789 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396084679:1822757396086919 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396087729:1822757396090029 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396091039:1822757396093059 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396093849:1822757396095969 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396096779:1822757396098969 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396099899:1822757396101959 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396102559:1822757396104749 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396106099:1822757396109799 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396110529:1822757396112549 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396113299:1822757396115269 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396115989:1822757396117969 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396118779:1822757396120879 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396122039:1822757396124159 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396125049:1822757396127039 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396127869:1822757396129839 116426:116426 hsa_code_object_reader_destroy() = 0 +1822757396132839:1822757396134769 116426:116426 hsa_code_object_reader_destroy() = 0 +1822755612504922 116426:116426 0:"before hipLaunchKernel" +1822755612518422 116426:116426 1:"hipLaunchKernel" +1822756058343121 116426:116426 0:"after hipLaunchKernel" +1822756058344881 116426:116426 1:"hipMemcpy" +1822756062846249 116426:116426 2:"" +1822756062847399 116426:116426 2:"" +1822756078092167 116426:116426 0:"before hipLaunchKernel" +1822756078093897 116426:116426 1:"hipLaunchKernel" +1822756078129087 116426:116426 0:"after hipLaunchKernel" +1822756078129817 116426:116426 1:"hipMemcpy" +1822756082630395 116426:116426 2:"" +1822756082631055 116426:116426 2:"" +1822756091489962 116426:116426 0:"before hipLaunchKernel" +1822756091491332 116426:116426 1:"hipLaunchKernel" +1822756091526232 116426:116426 0:"after hipLaunchKernel" +1822756091526962 116426:116426 1:"hipMemcpy" +1822756096116881 116426:116426 2:"" +1822756096117531 116426:116426 2:"" +1822756104865537 116426:116426 0:"before hipLaunchKernel" +1822756104867127 116426:116426 1:"hipLaunchKernel" +1822756104900667 116426:116426 0:"after hipLaunchKernel" +1822756104901397 116426:116426 1:"hipMemcpy" +1822756109425196 116426:116426 2:"" +1822756109425806 116426:116426 2:"" +1822756118124761 116426:116426 0:"before hipLaunchKernel" +1822756118126151 116426:116426 1:"hipLaunchKernel" +1822756118166622 116426:116426 0:"after hipLaunchKernel" +1822756118167352 116426:116426 1:"hipMemcpy" +1822756122649280 116426:116426 2:"" +1822756122649930 116426:116426 2:"" +1822756131484817 116426:116426 0:"before hipLaunchKernel" +1822756131486227 116426:116426 1:"hipLaunchKernel" +1822756131529167 116426:116426 0:"after hipLaunchKernel" +1822756131529897 116426:116426 1:"hipMemcpy" +1822756136135006 116426:116426 2:"" +1822756136135656 116426:116426 2:"" +1822756144815882 116426:116426 0:"before hipLaunchKernel" +1822756144817182 116426:116426 1:"hipLaunchKernel" +1822756144861252 116426:116426 0:"after hipLaunchKernel" +1822756144861982 116426:116426 1:"hipMemcpy" +1822756149393800 116426:116426 2:"" +1822756149394530 116426:116426 2:"" +1822756158132406 116426:116426 0:"before hipLaunchKernel" +1822756158133746 116426:116426 1:"hipLaunchKernel" +1822756158178046 116426:116426 0:"after hipLaunchKernel" +1822756158178856 116426:116426 1:"hipMemcpy" +1822756162649315 116426:116426 2:"" +1822756162649975 116426:116426 2:"" +1822756171483522 116426:116426 0:"before hipLaunchKernel" +1822756171484822 116426:116426 1:"hipLaunchKernel" +1822756171519542 116426:116426 0:"after hipLaunchKernel" +1822756171520372 116426:116426 1:"hipMemcpy" +1822756176125701 116426:116426 2:"" +1822756176126371 116426:116426 2:"" +1822756184879007 116426:116426 0:"before hipLaunchKernel" +1822756184880357 116426:116426 1:"hipLaunchKernel" +1822756184916027 116426:116426 0:"after hipLaunchKernel" +1822756184916997 116426:116426 1:"hipMemcpy" +1822756189254694 116426:116426 2:"" +1822756189255314 116426:116426 2:"" +1822756197986070 116426:116426 0:"before hipLaunchKernel" +1822756197987470 116426:116426 1:"hipLaunchKernel" +1822756198022570 116426:116426 0:"after hipLaunchKernel" +1822756198023300 116426:116426 1:"hipMemcpy" +1822756202491429 116426:116426 2:"" +1822756202492069 116426:116426 2:"" +1822756211240645 116426:116426 0:"before hipLaunchKernel" +1822756211241825 116426:116426 1:"hipLaunchKernel" +1822756211276145 116426:116426 0:"after hipLaunchKernel" +1822756211276885 116426:116426 1:"hipMemcpy" +1822756215907144 116426:116426 2:"" +1822756215907754 116426:116426 2:"" +1822756224699780 116426:116426 0:"before hipLaunchKernel" +1822756224701180 116426:116426 1:"hipLaunchKernel" +1822756224736561 116426:116426 0:"after hipLaunchKernel" +1822756224737511 116426:116426 1:"hipMemcpy" +1822756229251309 116426:116426 2:"" +1822756229251959 116426:116426 2:"" +1822756237952695 116426:116426 0:"before hipLaunchKernel" +1822756237954265 116426:116426 1:"hipLaunchKernel" +1822756237988835 116426:116426 0:"after hipLaunchKernel" +1822756237989565 116426:116426 1:"hipMemcpy" +1822756242476883 116426:116426 2:"" +1822756242477673 116426:116426 2:"" +1822756251204259 116426:116426 0:"before hipLaunchKernel" +1822756251205619 116426:116426 1:"hipLaunchKernel" +1822756251240419 116426:116426 0:"after hipLaunchKernel" +1822756251241209 116426:116426 1:"hipMemcpy" +1822756255700578 116426:116426 2:"" +1822756255701198 116426:116426 2:"" +1822756264552224 116426:116426 0:"before hipLaunchKernel" +1822756264553414 116426:116426 1:"hipLaunchKernel" +1822756264601364 116426:116426 0:"after hipLaunchKernel" +1822756264602084 116426:116426 1:"hipMemcpy" +1822756269113463 116426:116426 2:"" +1822756269114113 116426:116426 2:"" +1822756277899089 116426:116426 0:"before hipLaunchKernel" +1822756277900279 116426:116426 1:"hipLaunchKernel" +1822756277946099 116426:116426 0:"after hipLaunchKernel" +1822756277946819 116426:116426 1:"hipMemcpy" +1822756282415998 116426:116426 2:"" +1822756282416648 116426:116426 2:"" +1822756291124983 116426:116426 0:"before hipLaunchKernel" +1822756291138453 116426:116426 1:"hipLaunchKernel" +1822756291177573 116426:116426 0:"after hipLaunchKernel" +1822756291178403 116426:116426 1:"hipMemcpy" +1822756295646242 116426:116426 2:"" +1822756295646892 116426:116426 2:"" +1822756304481768 116426:116426 0:"before hipLaunchKernel" +1822756304483338 116426:116426 1:"hipLaunchKernel" +1822756304517688 116426:116426 0:"after hipLaunchKernel" +1822756304518828 116426:116426 1:"hipMemcpy" +1822756309108978 116426:116426 2:"" +1822756309109758 116426:116426 2:"" +1822756317876883 116426:116426 0:"before hipLaunchKernel" +1822756317878393 116426:116426 1:"hipLaunchKernel" +1822756317913424 116426:116426 0:"after hipLaunchKernel" +1822756317914204 116426:116426 1:"hipMemcpy" +1822756322440023 116426:116426 2:"" +1822756322440783 116426:116426 2:"" +1822756331219758 116426:116426 0:"before hipLaunchKernel" +1822756331220978 116426:116426 1:"hipLaunchKernel" +1822756331255308 116426:116426 0:"after hipLaunchKernel" +1822756331256048 116426:116426 1:"hipMemcpy" +1822756335756447 116426:116426 2:"" +1822756335757077 116426:116426 2:"" +1822756344862575 116426:116426 0:"before hipLaunchKernel" +1822756344863825 116426:116426 1:"hipLaunchKernel" +1822756344897715 116426:116426 0:"after hipLaunchKernel" +1822756344898885 116426:116426 1:"hipMemcpy" +1822756349402724 116426:116426 2:"" +1822756349403304 116426:116426 2:"" +1822756358152990 116426:116426 0:"before hipLaunchKernel" +1822756358154280 116426:116426 1:"hipLaunchKernel" +1822756358188970 116426:116426 0:"after hipLaunchKernel" +1822756358189700 116426:116426 1:"hipMemcpy" +1822756362650089 116426:116426 2:"" +1822756362651039 116426:116426 2:"" +1822756371498485 116426:116426 0:"before hipLaunchKernel" +1822756371499805 116426:116426 1:"hipLaunchKernel" +1822756371532205 116426:116426 0:"after hipLaunchKernel" +1822756371532925 116426:116426 1:"hipMemcpy" +1822756376134534 116426:116426 2:"" +1822756376135194 116426:116426 2:"" +1822756384884370 116426:116426 0:"before hipLaunchKernel" +1822756384885770 116426:116426 1:"hipLaunchKernel" +1822756384918820 116426:116426 0:"after hipLaunchKernel" +1822756384919670 116426:116426 1:"hipMemcpy" +1822756389418009 116426:116426 2:"" +1822756389418809 116426:116426 2:"" +1822756398165185 116426:116426 0:"before hipLaunchKernel" +1822756398166525 116426:116426 1:"hipLaunchKernel" +1822756398214915 116426:116426 0:"after hipLaunchKernel" +1822756398215665 116426:116426 1:"hipMemcpy" +1822756402686193 116426:116426 2:"" +1822756402686833 116426:116426 2:"" +1822756411496550 116426:116426 0:"before hipLaunchKernel" +1822756411497880 116426:116426 1:"hipLaunchKernel" +1822756411534270 116426:116426 0:"after hipLaunchKernel" +1822756411535260 116426:116426 1:"hipMemcpy" +1822756416123469 116426:116426 2:"" +1822756416124369 116426:116426 2:"" +1822756424907335 116426:116426 0:"before hipLaunchKernel" +1822756424908835 116426:116426 1:"hipLaunchKernel" +1822756424943795 116426:116426 0:"after hipLaunchKernel" +1822756424944455 116426:116426 1:"hipMemcpy" +1822756429407003 116426:116426 2:"" +1822756429407643 116426:116426 2:"" +1822756438096819 116426:116426 0:"before hipLaunchKernel" +1822756438098159 116426:116426 1:"hipLaunchKernel" +1822756438132389 116426:116426 0:"after hipLaunchKernel" +1822756438133119 116426:116426 1:"hipMemcpy" +1822756442605968 116426:116426 2:"" +1822756442606618 116426:116426 2:"" +1822756451484834 116426:116426 0:"before hipLaunchKernel" +1822756451486074 116426:116426 1:"hipLaunchKernel" +1822756451520005 116426:116426 0:"after hipLaunchKernel" +1822756451520725 116426:116426 1:"hipMemcpy" +1822756456119723 116426:116426 2:"" +1822756456120523 116426:116426 2:"" +1822756464939870 116426:116426 0:"before hipLaunchKernel" +1822756464941270 116426:116426 1:"hipLaunchKernel" +1822756464975270 116426:116426 0:"after hipLaunchKernel" +1822756464976330 116426:116426 1:"hipMemcpy" +1822756469483059 116426:116426 2:"" +1822756469483709 116426:116426 2:"" +1822756478219395 116426:116426 0:"before hipLaunchKernel" +1822756478220755 116426:116426 1:"hipLaunchKernel" +1822756478257935 116426:116426 0:"after hipLaunchKernel" +1822756478258725 116426:116426 1:"hipMemcpy" +1822756482719023 116426:116426 2:"" +1822756482719673 116426:116426 2:"" +1822756491500699 116426:116426 0:"before hipLaunchKernel" +1822756491502269 116426:116426 1:"hipLaunchKernel" +1822756491536759 116426:116426 0:"after hipLaunchKernel" +1822756491537409 116426:116426 1:"hipMemcpy" +1822756496134239 116426:116426 2:"" +1822756496134889 116426:116426 2:"" +1822756504964625 116426:116426 0:"before hipLaunchKernel" +1822756504965905 116426:116426 1:"hipLaunchKernel" +1822756504998115 116426:116426 0:"after hipLaunchKernel" +1822756504998835 116426:116426 1:"hipMemcpy" +1822756509487864 116426:116426 2:"" +1822756509488564 116426:116426 2:"" +1822756518231189 116426:116426 0:"before hipLaunchKernel" +1822756518240539 116426:116426 1:"hipLaunchKernel" +1822756518276700 116426:116426 0:"after hipLaunchKernel" +1822756518277520 116426:116426 1:"hipMemcpy" +1822756522776738 116426:116426 2:"" +1822756522777388 116426:116426 2:"" +1822756531627555 116426:116426 0:"before hipLaunchKernel" +1822756531629185 116426:116426 1:"hipLaunchKernel" +1822756531673005 116426:116426 0:"after hipLaunchKernel" +1822756531673915 116426:116426 1:"hipMemcpy" +1822756536173354 116426:116426 2:"" +1822756536174014 116426:116426 2:"" +1822756544887719 116426:116426 0:"before hipLaunchKernel" +1822756544889119 116426:116426 1:"hipLaunchKernel" +1822756544931329 116426:116426 0:"after hipLaunchKernel" +1822756544931989 116426:116426 1:"hipMemcpy" +1822756549408288 116426:116426 2:"" +1822756549408938 116426:116426 2:"" +1822756558156873 116426:116426 0:"before hipLaunchKernel" +1822756558158203 116426:116426 1:"hipLaunchKernel" +1822756558193874 116426:116426 0:"after hipLaunchKernel" +1822756558194754 116426:116426 1:"hipMemcpy" +1822756562637952 116426:116426 2:"" +1822756562638602 116426:116426 2:"" +1822756571491038 116426:116426 0:"before hipLaunchKernel" +1822756571492378 116426:116426 1:"hipLaunchKernel" +1822756571527488 116426:116426 0:"after hipLaunchKernel" +1822756571528208 116426:116426 1:"hipMemcpy" +1822756576130058 116426:116426 2:"" +1822756576130718 116426:116426 2:"" +1822756584942214 116426:116426 0:"before hipLaunchKernel" +1822756584943554 116426:116426 1:"hipLaunchKernel" +1822756584981104 116426:116426 0:"after hipLaunchKernel" +1822756584981804 116426:116426 1:"hipMemcpy" +1822756589473653 116426:116426 2:"" +1822756589474303 116426:116426 2:"" +1822756598239149 116426:116426 0:"before hipLaunchKernel" +1822756598240799 116426:116426 1:"hipLaunchKernel" +1822756598274869 116426:116426 0:"after hipLaunchKernel" +1822756598275619 116426:116426 1:"hipMemcpy" +1822756602771208 116426:116426 2:"" +1822756602771868 116426:116426 2:"" +1822756611470293 116426:116426 0:"before hipLaunchKernel" +1822756611471793 116426:116426 1:"hipLaunchKernel" +1822756611506393 116426:116426 0:"after hipLaunchKernel" +1822756611507403 116426:116426 1:"hipMemcpy" +1822756616133183 116426:116426 2:"" +1822756616133843 116426:116426 2:"" +1822756624898669 116426:116426 0:"before hipLaunchKernel" +1822756624900099 116426:116426 1:"hipLaunchKernel" +1822756624942479 116426:116426 0:"after hipLaunchKernel" +1822756624943369 116426:116426 1:"hipMemcpy" +1822756629407707 116426:116426 2:"" +1822756629408357 116426:116426 2:"" +1822756638141933 116426:116426 0:"before hipLaunchKernel" +1822756638143483 116426:116426 1:"hipLaunchKernel" +1822756638177083 116426:116426 0:"after hipLaunchKernel" +1822756638177813 116426:116426 1:"hipMemcpy" +1822756642666412 116426:116426 2:"" +1822756642667062 116426:116426 2:"" +1822756651494288 116426:116426 0:"before hipLaunchKernel" +1822756651495898 116426:116426 1:"hipLaunchKernel" +1822756651538178 116426:116426 0:"after hipLaunchKernel" +1822756651538898 116426:116426 1:"hipMemcpy" +1822756656138267 116426:116426 2:"" +1822756656139037 116426:116426 2:"" +1822756664912873 116426:116426 0:"before hipLaunchKernel" +1822756664914133 116426:116426 1:"hipLaunchKernel" +1822756664958334 116426:116426 0:"after hipLaunchKernel" +1822756664959234 116426:116426 1:"hipMemcpy" +1822756669416472 116426:116426 2:"" +1822756669417132 116426:116426 2:"" +1822756678146637 116426:116426 0:"before hipLaunchKernel" +1822756678148007 116426:116426 1:"hipLaunchKernel" +1822756678191298 116426:116426 0:"after hipLaunchKernel" +1822756678192268 116426:116426 1:"hipMemcpy" +1822756682711766 116426:116426 2:"" +1822756682712426 116426:116426 2:"" +1822756691509923 116426:116426 0:"before hipLaunchKernel" +1822756691511563 116426:116426 1:"hipLaunchKernel" +1822756691547483 116426:116426 0:"after hipLaunchKernel" +1822756691548583 116426:116426 1:"hipMemcpy" +1822756696126212 116426:116426 2:"" +1822756696126872 116426:116426 2:"" +1822756704947748 116426:116426 0:"before hipLaunchKernel" +1822756704949458 116426:116426 1:"hipLaunchKernel" +1822756704985219 116426:116426 0:"after hipLaunchKernel" +1822756704986159 116426:116426 1:"hipMemcpy" +1822756709441907 116426:116426 2:"" +1822756709442567 116426:116426 2:"" +1822756718210853 116426:116426 0:"before hipLaunchKernel" +1822756718212283 116426:116426 1:"hipLaunchKernel" +1822756718248293 116426:116426 0:"after hipLaunchKernel" +1822756718249093 116426:116426 1:"hipMemcpy" +1822756722742201 116426:116426 2:"" +1822756722742951 116426:116426 2:"" +1822756731600798 116426:116426 0:"before hipLaunchKernel" +1822756731602028 116426:116426 1:"hipLaunchKernel" +1822756731637178 116426:116426 0:"after hipLaunchKernel" +1822756731637848 116426:116426 1:"hipMemcpy" +1822756736180897 116426:116426 2:"" +1822756736181547 116426:116426 2:"" +1822756744931193 116426:116426 0:"before hipLaunchKernel" +1822756744940783 116426:116426 1:"hipLaunchKernel" +1822756744974673 116426:116426 0:"after hipLaunchKernel" +1822756744975483 116426:116426 1:"hipMemcpy" +1822756749466342 116426:116426 2:"" +1822756749466962 116426:116426 2:"" +1822756758149627 116426:116426 0:"before hipLaunchKernel" +1822756758150907 116426:116426 1:"hipLaunchKernel" +1822756758185977 116426:116426 0:"after hipLaunchKernel" +1822756758186707 116426:116426 1:"hipMemcpy" +1822756762711926 116426:116426 2:"" +1822756762712716 116426:116426 2:"" +1822756771525322 116426:116426 0:"before hipLaunchKernel" +1822756771526772 116426:116426 1:"hipLaunchKernel" +1822756771560062 116426:116426 0:"after hipLaunchKernel" +1822756771561202 116426:116426 1:"hipMemcpy" +1822756776139352 116426:116426 2:"" +1822756776140082 116426:116426 2:"" +1822756784911217 116426:116426 0:"before hipLaunchKernel" +1822756784912727 116426:116426 1:"hipLaunchKernel" +1822756784954718 116426:116426 0:"after hipLaunchKernel" +1822756784955508 116426:116426 1:"hipMemcpy" +1822756789427396 116426:116426 2:"" +1822756789428126 116426:116426 2:"" +1822756798143552 116426:116426 0:"before hipLaunchKernel" +1822756798144862 116426:116426 1:"hipLaunchKernel" +1822756798189802 116426:116426 0:"after hipLaunchKernel" +1822756798190542 116426:116426 1:"hipMemcpy" +1822756802665361 116426:116426 2:"" +1822756802666021 116426:116426 2:"" +1822756811499247 116426:116426 0:"before hipLaunchKernel" +1822756811500717 116426:116426 1:"hipLaunchKernel" +1822756811545667 116426:116426 0:"after hipLaunchKernel" +1822756811546437 116426:116426 1:"hipMemcpy" +1822756816124876 116426:116426 2:"" +1822756816125676 116426:116426 2:"" +1822756825071093 116426:116426 0:"before hipLaunchKernel" +1822756825072443 116426:116426 1:"hipLaunchKernel" +1822756825108123 116426:116426 0:"after hipLaunchKernel" +1822756825108903 116426:116426 1:"hipMemcpy" +1822756829595332 116426:116426 2:"" +1822756829596262 116426:116426 2:"" +1822756838492908 116426:116426 0:"before hipLaunchKernel" +1822756838494218 116426:116426 1:"hipLaunchKernel" +1822756838533379 116426:116426 0:"after hipLaunchKernel" +1822756838534159 116426:116426 1:"hipMemcpy" +1822756843118728 116426:116426 2:"" +1822756843119448 116426:116426 2:"" +1822756851908244 116426:116426 0:"before hipLaunchKernel" +1822756851909664 116426:116426 1:"hipLaunchKernel" +1822756851945404 116426:116426 0:"after hipLaunchKernel" +1822756851946144 116426:116426 1:"hipMemcpy" +1822756856433913 116426:116426 2:"" +1822756856434713 116426:116426 2:"" +1822756865150308 116426:116426 0:"before hipLaunchKernel" +1822756865151648 116426:116426 1:"hipLaunchKernel" +1822756865185878 116426:116426 0:"after hipLaunchKernel" +1822756865186608 116426:116426 1:"hipMemcpy" +1822756869718217 116426:116426 2:"" +1822756869719007 116426:116426 2:"" +1822756878505843 116426:116426 0:"before hipLaunchKernel" +1822756878507233 116426:116426 1:"hipLaunchKernel" +1822756878542524 116426:116426 0:"after hipLaunchKernel" +1822756878543284 116426:116426 1:"hipMemcpy" +1822756883116533 116426:116426 2:"" +1822756883117323 116426:116426 2:"" +1822756891874838 116426:116426 0:"before hipLaunchKernel" +1822756891876088 116426:116426 1:"hipLaunchKernel" +1822756891909558 116426:116426 0:"after hipLaunchKernel" +1822756891910308 116426:116426 1:"hipMemcpy" +1822756896440778 116426:116426 2:"" +1822756896441498 116426:116426 2:"" +1822756905313504 116426:116426 0:"before hipLaunchKernel" +1822756905315164 116426:116426 1:"hipLaunchKernel" +1822756905349395 116426:116426 0:"after hipLaunchKernel" +1822756905350075 116426:116426 1:"hipMemcpy" +1822756909845943 116426:116426 2:"" +1822756909846673 116426:116426 2:"" +1822756918655859 116426:116426 0:"before hipLaunchKernel" +1822756918657319 116426:116426 1:"hipLaunchKernel" +1822756918696229 116426:116426 0:"after hipLaunchKernel" +1822756918696969 116426:116426 1:"hipMemcpy" +1822756923217748 116426:116426 2:"" +1822756923218538 116426:116426 2:"" +1822756931972714 116426:116426 0:"before hipLaunchKernel" +1822756931974224 116426:116426 1:"hipLaunchKernel" +1822756932034035 116426:116426 0:"after hipLaunchKernel" +1822756932034945 116426:116426 1:"hipMemcpy" +1822756936515393 116426:116426 2:"" +1822756936516233 116426:116426 2:"" +1822756945067097 116426:116426 0:"before hipLaunchKernel" +1822756945068567 116426:116426 1:"hipLaunchKernel" +1822756945112428 116426:116426 0:"after hipLaunchKernel" +1822756945113208 116426:116426 1:"hipMemcpy" +1822756949593196 116426:116426 2:"" +1822756949593916 116426:116426 2:"" +1822756958307932 116426:116426 0:"before hipLaunchKernel" +1822756958309532 116426:116426 1:"hipLaunchKernel" +1822756958345252 116426:116426 0:"after hipLaunchKernel" +1822756958346052 116426:116426 1:"hipMemcpy" +1822756962810840 116426:116426 2:"" +1822756962811480 116426:116426 2:"" +1822756971627137 116426:116426 0:"before hipLaunchKernel" +1822756971628417 116426:116426 1:"hipLaunchKernel" +1822756971666257 116426:116426 0:"after hipLaunchKernel" +1822756971667047 116426:116426 1:"hipMemcpy" +1822756976163925 116426:116426 2:"" +1822756976164585 116426:116426 2:"" +1822756984890371 116426:116426 0:"before hipLaunchKernel" +1822756984892011 116426:116426 1:"hipLaunchKernel" +1822756984928361 116426:116426 0:"after hipLaunchKernel" +1822756984929041 116426:116426 1:"hipMemcpy" +1822756989415409 116426:116426 2:"" +1822756989416199 116426:116426 2:"" +1822756998147406 116426:116426 0:"before hipLaunchKernel" +1822756998149046 116426:116426 1:"hipLaunchKernel" +1822756998183886 116426:116426 0:"after hipLaunchKernel" +1822756998184686 116426:116426 1:"hipMemcpy" +1822757002653244 116426:116426 2:"" +1822757002653894 116426:116426 2:"" +1822757011508581 116426:116426 0:"before hipLaunchKernel" +1822757011510141 116426:116426 1:"hipLaunchKernel" +1822757011544381 116426:116426 0:"after hipLaunchKernel" +1822757011545251 116426:116426 1:"hipMemcpy" +1822757016134320 116426:116426 2:"" +1822757016134980 116426:116426 2:"" +1822757024871576 116426:116426 0:"before hipLaunchKernel" +1822757024872986 116426:116426 1:"hipLaunchKernel" +1822757024906396 116426:116426 0:"after hipLaunchKernel" +1822757024907206 116426:116426 1:"hipMemcpy" +1822757029418504 116426:116426 2:"" +1822757029419154 116426:116426 2:"" +1822757038157240 116426:116426 0:"before hipLaunchKernel" +1822757038158520 116426:116426 1:"hipLaunchKernel" +1822757038192960 116426:116426 0:"after hipLaunchKernel" +1822757038193800 116426:116426 1:"hipMemcpy" +1822757042693109 116426:116426 2:"" +1822757042693699 116426:116426 2:"" +1822757051521045 116426:116426 0:"before hipLaunchKernel" +1822757051522525 116426:116426 1:"hipLaunchKernel" +1822757051564876 116426:116426 0:"after hipLaunchKernel" +1822757051565596 116426:116426 1:"hipMemcpy" +1822757056139434 116426:116426 2:"" +1822757056140114 116426:116426 2:"" +1822757064953431 116426:116426 0:"before hipLaunchKernel" +1822757064954731 116426:116426 1:"hipLaunchKernel" +1822757064997151 116426:116426 0:"after hipLaunchKernel" +1822757064997961 116426:116426 1:"hipMemcpy" +1822757069467370 116426:116426 2:"" +1822757069468020 116426:116426 2:"" +1822757078147265 116426:116426 0:"before hipLaunchKernel" +1822757078148605 116426:116426 1:"hipLaunchKernel" +1822757078194235 116426:116426 0:"after hipLaunchKernel" +1822757078194995 116426:116426 1:"hipMemcpy" +1822757082650303 116426:116426 2:"" +1822757082650953 116426:116426 2:"" +1822757091499160 116426:116426 0:"before hipLaunchKernel" +1822757091500700 116426:116426 1:"hipLaunchKernel" +1822757091535360 116426:116426 0:"after hipLaunchKernel" +1822757091536160 116426:116426 1:"hipMemcpy" +1822757096141260 116426:116426 2:"" +1822757096141910 116426:116426 2:"" +1822757104934825 116426:116426 0:"before hipLaunchKernel" +1822757104936575 116426:116426 1:"hipLaunchKernel" +1822757104971506 116426:116426 0:"after hipLaunchKernel" +1822757104972336 116426:116426 1:"hipMemcpy" +1822757109466484 116426:116426 2:"" +1822757109467144 116426:116426 2:"" +1822757118203040 116426:116426 0:"before hipLaunchKernel" +1822757118204260 116426:116426 1:"hipLaunchKernel" +1822757118239080 116426:116426 0:"after hipLaunchKernel" +1822757118239870 116426:116426 1:"hipMemcpy" +1822757122736549 116426:116426 2:"" +1822757122737199 116426:116426 2:"" +1822757131539455 116426:116426 0:"before hipLaunchKernel" +1822757131540855 116426:116426 1:"hipLaunchKernel" +1822757131574645 116426:116426 0:"after hipLaunchKernel" +1822757131575425 116426:116426 1:"hipMemcpy" +1822757136139044 116426:116426 2:"" +1822757136139694 116426:116426 2:"" +1822757144949400 116426:116426 0:"before hipLaunchKernel" +1822757144951090 116426:116426 1:"hipLaunchKernel" +1822757144984300 116426:116426 0:"after hipLaunchKernel" +1822757144985030 116426:116426 1:"hipMemcpy" +1822757149452529 116426:116426 2:"" +1822757149453179 116426:116426 2:"" +1822757158316495 116426:116426 0:"before hipLaunchKernel" +1822757158317965 116426:116426 1:"hipLaunchKernel" +1822757158352205 116426:116426 0:"after hipLaunchKernel" +1822757158353175 116426:116426 1:"hipMemcpy" +1822757162887724 116426:116426 2:"" +1822757162888374 116426:116426 2:"" +1822757171705490 116426:116426 0:"before hipLaunchKernel" +1822757171706930 116426:116426 1:"hipLaunchKernel" +1822757171740611 116426:116426 0:"after hipLaunchKernel" +1822757171741511 116426:116426 1:"hipMemcpy" +1822757176316230 116426:116426 2:"" +1822757176316880 116426:116426 2:"" +1822757184961485 116426:116426 0:"before hipLaunchKernel" +1822757184963005 116426:116426 1:"hipLaunchKernel" +1822757185007715 116426:116426 0:"after hipLaunchKernel" +1822757185008495 116426:116426 1:"hipMemcpy" +1822757189498604 116426:116426 2:"" +1822757189499254 116426:116426 2:"" +1822757198256469 116426:116426 0:"before hipLaunchKernel" +1822757198257999 116426:116426 1:"hipLaunchKernel" +1822757198298810 116426:116426 0:"after hipLaunchKernel" +1822757198299540 116426:116426 1:"hipMemcpy" +1822757202774278 116426:116426 2:"" +1822757202774938 116426:116426 2:"" +1822757211541234 116426:116426 0:"before hipLaunchKernel" +1822757211542624 116426:116426 1:"hipLaunchKernel" +1822757211576634 116426:116426 0:"after hipLaunchKernel" +1822757211577414 116426:116426 1:"hipMemcpy" +1822757216146013 116426:116426 2:"" +1822757216146663 116426:116426 2:"" +1822757224914419 116426:116426 0:"before hipLaunchKernel" +1822757224915999 116426:116426 1:"hipLaunchKernel" +1822757224951510 116426:116426 0:"after hipLaunchKernel" +1822757224952440 116426:116426 1:"hipMemcpy" +1822757229432328 116426:116426 2:"" +1822757229432978 116426:116426 2:"" +1822757238190334 116426:116426 0:"before hipLaunchKernel" +1822757238191834 116426:116426 1:"hipLaunchKernel" +1822757238226254 116426:116426 0:"after hipLaunchKernel" +1822757238227154 116426:116426 1:"hipMemcpy" +1822757242686762 116426:116426 2:"" +1822757242687412 116426:116426 2:"" +1822757251545359 116426:116426 0:"before hipLaunchKernel" +1822757251546929 116426:116426 1:"hipLaunchKernel" +1822757251582349 116426:116426 0:"after hipLaunchKernel" +1822757251583079 116426:116426 1:"hipMemcpy" +1822757256134628 116426:116426 2:"" +1822757256135288 116426:116426 2:"" +1822757264917154 116426:116426 0:"before hipLaunchKernel" +1822757264918864 116426:116426 1:"hipLaunchKernel" +1822757264955004 116426:116426 0:"after hipLaunchKernel" +1822757264955674 116426:116426 1:"hipMemcpy" +1822757269423623 116426:116426 2:"" +1822757269424273 116426:116426 2:"" +1822757278164368 116426:116426 0:"before hipLaunchKernel" +1822757278166008 116426:116426 1:"hipLaunchKernel" +1822757278200288 116426:116426 0:"after hipLaunchKernel" +1822757278201028 116426:116426 1:"hipMemcpy" +1822757282675377 116426:116426 2:"" +1822757282676027 116426:116426 2:"" +1822757291510604 116426:116426 0:"before hipLaunchKernel" +1822757291512254 116426:116426 1:"hipLaunchKernel" +1822757291545344 116426:116426 0:"after hipLaunchKernel" +1822757291546074 116426:116426 1:"hipMemcpy" +1822757296142203 116426:116426 2:"" +1822757296142843 116426:116426 2:"" +1822757304968109 116426:116426 0:"before hipLaunchKernel" +1822757304969609 116426:116426 1:"hipLaunchKernel" +1822757305003089 116426:116426 0:"after hipLaunchKernel" +1822757305003879 116426:116426 1:"hipMemcpy" +1822757309496688 116426:116426 2:"" +1822757309497348 116426:116426 2:"" +1822757318197103 116426:116426 0:"before hipLaunchKernel" +1822757318198713 116426:116426 1:"hipLaunchKernel" +1822757318244304 116426:116426 0:"after hipLaunchKernel" +1822757318245544 116426:116426 1:"hipMemcpy" +1822757322735882 116426:116426 2:"" +1822757322736532 116426:116426 2:"" +1822757331531378 116426:116426 0:"before hipLaunchKernel" +1822757331532828 116426:116426 1:"hipLaunchKernel" +1822757331575779 116426:116426 0:"after hipLaunchKernel" +1822757331576589 116426:116426 1:"hipMemcpy" +1822757336152608 116426:116426 2:"" +1822757336153268 116426:116426 2:"" +1822757344929524 116426:116426 0:"before hipLaunchKernel" +1822757344930804 116426:116426 1:"hipLaunchKernel" +1822757344967174 116426:116426 0:"after hipLaunchKernel" +1822757344967984 116426:116426 1:"hipMemcpy" +1822757349454582 116426:116426 2:"" +1822757349455242 116426:116426 2:"" +1822757358218998 116426:116426 0:"before hipLaunchKernel" +1822757358220358 116426:116426 1:"hipLaunchKernel" +1822757358256028 116426:116426 0:"after hipLaunchKernel" +1822757358256808 116426:116426 1:"hipMemcpy" +1822757362734497 116426:116426 2:"" +1822757362735147 116426:116426 2:"" +1822757371554633 116426:116426 0:"before hipLaunchKernel" +1822757371555973 116426:116426 1:"hipLaunchKernel" +1822757371590683 116426:116426 0:"after hipLaunchKernel" +1822757371591413 116426:116426 1:"hipMemcpy" +1822757376143363 116426:116426 2:"" +1822757376143983 116426:116426 2:"" +1822757384879008 116426:116426 0:"before hipLaunchKernel" +1822757384880308 116426:116426 1:"hipLaunchKernel" +1822757384914368 116426:116426 0:"after hipLaunchKernel" +1822757384915108 116426:116426 1:"hipMemcpy" +1822757389426697 116426:116426 2:"" +1822757389427347 116426:116426 2:"" +1822755610745597:1822755612148637 async-copy0 +1822756059703555:1822756061944704 async-copy1 +1822756076468363:1822756077871841 async-copy2 +1822756079453986:1822756081800621 async-copy3 +1822756089830592:1822756091230366 async-copy4 +1822756092862943:1822756095192985 async-copy5 +1822756103224676:1822756104626671 async-copy6 +1822756106217266:1822756108595458 async-copy7 +1822756116508728:1822756117909390 async-copy8 +1822756119463679:1822756121816388 async-copy9 +1822756129856005:1822756131259038 async-copy10 +1822756132847542:1822756135159509 async-copy11 +1822756143193383:1822756144594787 async-copy12 +1822756146178609:1822756148522133 async-copy13 +1822756156502642:1822756157906564 async-copy14 +1822756159488770:1822756161820738 async-copy15 +1822756169793271:1822756171196748 async-copy16 +1822756172819961:1822756175200080 async-copy17 +1822756183367822:1822756184770855 async-copy18 +1822756186222901:1822756188577685 async-copy19 +1822756196358553:1822756197758622 async-copy20 +1822756199341959:1822756201660742 async-copy21 +1822756209602431:1822756211003834 async-copy22 +1822756212733960:1822756215061779 async-copy23 +1822756223230732:1822756224633468 async-copy24 +1822756226053975:1822756228384757 async-copy25 +1822756236319165:1822756237720272 async-copy26 +1822756239300211:1822756241642698 async-copy27 +1822756249569085:1822756250970340 async-copy28 +1822756252539383:1822756254873721 async-copy29 +1822756262920159:1822756264322896 async-copy30 +1822756265929349:1822756268268725 async-copy31 +1822756276272690:1822756277674093 async-copy32 +1822756279261704:1822756281588042 async-copy33 +1822756289494062:1822756290898132 async-copy34 +1822756292486984:1822756294821026 async-copy35 +1822756302843271:1822756304244674 async-copy36 +1822756305836023:1822756308203845 async-copy37 +1822756316251013:1822756317651675 async-copy38 +1822756319222140:1822756321605222 async-copy39 +1822756329581609:1822756330984346 async-copy40 +1822756332570985:1822756334926954 async-copy41 +1822756343066596:1822756344469629 async-copy42 +1822756346208038:1822756348546377 async-copy43 +1822756356536391:1822756357937053 async-copy44 +1822756359514690:1822756361820434 async-copy45 +1822756369792080:1822756371196446 async-copy46 +1822756372858187:1822756375181117 async-copy47 +1822756383254616:1822756384656463 async-copy48 +1822756386235785:1822756388584495 async-copy49 +1822756396540013:1822756397941120 async-copy50 +1822756399532724:1822756401852098 async-copy51 +1822756409842431:1822756411242352 async-copy52 +1822756412851693:1822756415196254 async-copy53 +1822756423279344:1822756424681043 async-copy54 +1822756426237932:1822756428585901 async-copy55 +1822756436470646:1822756437872642 async-copy56 +1822756439453792:1822756441778648 async-copy57 +1822756449712164:1822756451114308 async-copy58 +1822756452839379:1822756455186162 async-copy59 +1822756463260798:1822756464661460 async-copy60 +1822756466285627:1822756468655226 async-copy61 +1822756476590661:1822756477992509 async-copy62 +1822756479567299:1822756481891414 async-copy63 +1822756489865100:1822756491268133 async-copy64 +1822756492886950:1822756495216695 async-copy65 +1822756503259171:1822756504662648 async-copy66 +1822756506318382:1822756508657017 async-copy67 +1822756516596286:1822756517997392 async-copy68 +1822756519589742:1822756521946600 async-copy69 +1822756529955321:1822756531359094 async-copy70 +1822756532973444:1822756535313857 async-copy71 +1822756543258544:1822756544660539 async-copy72 +1822756546243926:1822756548571153 async-copy73 +1822756556527558:1822756557931184 async-copy74 +1822756559499991:1822756561810772 async-copy75 +1822756569800608:1822756571201122 async-copy76 +1822756572827399:1822756575173442 async-copy77 +1822756583293358:1822756584696538 async-copy78 +1822756586289742:1822756588640674 async-copy79 +1822756596608409:1822756598009664 async-copy80 +1822756599601805:1822756601938366 async-copy81 +1822756609961382:1822756611362637 async-copy82 +1822756612814771:1822756615174444 async-copy83 +1822756623274987:1822756624674020 async-copy84 +1822756626244187:1822756628562524 async-copy85 +1822756636503810:1822756637906250 async-copy86 +1822756639495651:1822756641835027 async-copy87 +1822756649826815:1822756651228070 async-copy88 +1822756652845701:1822756655162408 async-copy89 +1822756663282560:1822756664684852 async-copy90 +1822756666270910:1822756668581543 async-copy91 +1822756676525576:1822756677927868 async-copy92 +1822756679498081:1822756681876718 async-copy93 +1822756689871911:1822756691274795 async-copy94 +1822756692863198:1822756695226575 async-copy95 +1822756703298473:1822756704701506 async-copy96 +1822756706292630:1822756708609337 async-copy97 +1822756716578756:1822756717982233 async-copy98 +1822756719573484:1822756721913156 async-copy99 +1822756729939935:1822756731340894 async-copy100 +1822756732957268:1822756735318866 async-copy101 +1822756743305668:1822756744707664 async-copy102 +1822756746288798:1822756748636766 async-copy103 +1822756756514188:1822756757915443 async-copy104 +1822756759506383:1822756761882056 async-copy105 +1822756769878684:1822756771280975 async-copy106 +1822756772869620:1822756775205440 async-copy107 +1822756783282081:1822756784682743 async-copy108 +1822756786250731:1822756788566402 async-copy109 +1822756796515073:1822756797917810 async-copy110 +1822756799499522:1822756801836675 async-copy111 +1822756809813022:1822756811214869 async-copy112 +1822756812847111:1822756815207673 async-copy113 +1822756823457191:1822756824860372 async-copy114 +1822756826415517:1822756828762448 async-copy115 +1822756836724312:1822756838124678 async-copy116 +1822756839841353:1822756842200284 async-copy117 +1822756850285409:1822756851688738 async-copy118 +1822756853252604:1822756855591979 async-copy119 +1822756863532804:1822756864935689 async-copy120 +1822756866497276:1822756868882283 async-copy121 +1822756876867480:1822756878268882 async-copy122 +1822756879872731:1822756882220551 async-copy123 +1822756890239449:1822756891639963 async-copy124 +1822756893222150:1822756895595898 async-copy125 +1822756903677825:1822756905079524 async-copy126 +1822756906675650:1822756909004358 async-copy127 +1822756916981833:1822756918385310 async-copy128 +1822756920026943:1822756922357429 async-copy129 +1822756930339119:1822756931742299 async-copy130 +1822756933341772:1822756935663665 async-copy131 +1822756943569147:1822756944968624 async-copy132 +1822756946417858:1822756948759603 async-copy133 +1822756956686881:1822756958087691 async-copy134 +1822756959654747:1822756961980344 async-copy135 +1822756969964854:1822756971366405 async-copy136 +1822756972958566:1822756975303275 async-copy137 +1822756983263992:1822756984667321 async-copy138 +1822756986248811:1822756988571889 async-copy139 +1822756996518043:1822756997919890 async-copy140 +1822756999482547:1822757001823404 async-copy141 +1822757009812945:1822757011214793 async-copy142 +1822757012865036:1822757015194337 async-copy143 +1822757023239827:1822757024642119 async-copy144 +1822757026219834:1822757028560691 async-copy145 +1822757036530048:1822757037933673 async-copy146 +1822757039501138:1822757041864663 async-copy147 +1822757049884042:1822757051284260 async-copy148 +1822757052885199:1822757055214352 async-copy149 +1822757063303774:1822757064706214 async-copy150 +1822757066306665:1822757068639522 async-copy151 +1822757076532551:1822757077934991 async-copy152 +1822757079491059:1822757081815619 async-copy153 +1822757089735648:1822757091137199 async-copy154 +1822757092848799:1822757095212472 async-copy155 +1822757103311340:1822757104713335 async-copy156 +1822757106282732:1822757108632923 async-copy157 +1822757116570884:1822757117973324 async-copy158 +1822757119555392:1822757121904545 async-copy159 +1822757129898577:1822757131299832 async-copy160 +1822757132884793:1822757135215724 async-copy161 +1822757143310937:1822757144715154 async-copy162 +1822757146294146:1822757148641078 async-copy163 +1822757156685092:1822757158085310 async-copy164 +1822757159666226:1822757162046048 async-copy165 +1822757170027327:1822757171429619 async-copy166 +1822757173048804:1822757175418107 async-copy167 +1822757183362207:1822757184764054 async-copy168 +1822757186326614:1822757188665545 async-copy169 +1822757196620800:1822757198025314 async-copy170 +1822757199624939:1822757201943573 async-copy171 +1822757209910756:1822757211311418 async-copy172 +1822757212901160:1822757215239647 async-copy173 +1822757223289758:1822757224693532 async-copy174 +1822757226264241:1822757228601246 async-copy175 +1822757236559874:1822757237961870 async-copy176 +1822757239550236:1822757241860277 async-copy177 +1822757249905346:1822757251307045 async-copy178 +1822757252895891:1822757255243267 async-copy179 +1822757263288395:1822757264689798 async-copy180 +1822757266253371:1822757268590820 async-copy181 +1822757276528185:1822757277931366 async-copy182 +1822757279512544:1822757281846142 async-copy183 +1822757289846499:1822757291247901 async-copy184 +1822757292866424:1822757295203429 async-copy185 +1822757303279340:1822757304680595 async-copy186 +1822757306303641:1822757308664795 async-copy187 +1822757316577803:1822757317977576 async-copy188 +1822757319560491:1822757321903570 async-copy189 +1822757329894057:1822757331297830 async-copy190 +1822757332884097:1822757335214731 async-copy191 +1822757343298266:1822757344700409 async-copy192 +1822757346279634:1822757348624046 async-copy193 +1822757356582659:1822757357985099 async-copy194 +1822757359570083:1822757361908569 async-copy195 +1822757369914110:1822757371315364 async-copy196 +1822757372908977:1822757375245093 async-copy197 +1822757383248827:1822757384651267 async-copy198 +1822757386227176:1822757388571292 async-copy199 diff --git a/projects/roctracer/test/MatrixTranspose/MatrixTranspose_sys_trace.txt b/projects/roctracer/test/MatrixTranspose/MatrixTranspose_sys_trace.txt new file mode 100644 index 0000000000..ce693dd3f3 --- /dev/null +++ b/projects/roctracer/test/MatrixTranspose/MatrixTranspose_sys_trace.txt @@ -0,0 +1,6506 @@ +tool SYS test: "./test/MatrixTranspose" +ROCTracer (pid=116414): + rocTX-trace() + HSA-trace() + HIP-trace() +Device name Vega 10 XT [Radeon RX Vega 64] +## Iteration (99) ################# +PASSED! +## Iteration (98) ################# +PASSED! +## Iteration (97) ################# +PASSED! +## Iteration (96) ################# +PASSED! +## Iteration (95) ################# +PASSED! +## Iteration (94) ################# +PASSED! +## Iteration (93) ################# +PASSED! +## Iteration (92) ################# +PASSED! +## Iteration (91) ################# +PASSED! +## Iteration (90) ################# +PASSED! +## Iteration (89) ################# +PASSED! +## Iteration (88) ################# +PASSED! +## Iteration (87) ################# +PASSED! +## Iteration (86) ################# +PASSED! +## Iteration (85) ################# +PASSED! +## Iteration (84) ################# +PASSED! +## Iteration (83) ################# +PASSED! +## Iteration (82) ################# +PASSED! +## Iteration (81) ################# +PASSED! +## Iteration (80) ################# +PASSED! +## Iteration (79) ################# +PASSED! +## Iteration (78) ################# +PASSED! +## Iteration (77) ################# +PASSED! +## Iteration (76) ################# +PASSED! +## Iteration (75) ################# +PASSED! +## Iteration (74) ################# +PASSED! +## Iteration (73) ################# +PASSED! +## Iteration (72) ################# +PASSED! +## Iteration (71) ################# +PASSED! +## Iteration (70) ################# +PASSED! +## Iteration (69) ################# +PASSED! +## Iteration (68) ################# +PASSED! +## Iteration (67) ################# +PASSED! +## Iteration (66) ################# +PASSED! +## Iteration (65) ################# +PASSED! +## Iteration (64) ################# +PASSED! +## Iteration (63) ################# +PASSED! +## Iteration (62) ################# +PASSED! +## Iteration (61) ################# +PASSED! +## Iteration (60) ################# +PASSED! +## Iteration (59) ################# +PASSED! +## Iteration (58) ################# +PASSED! +## Iteration (57) ################# +PASSED! +## Iteration (56) ################# +PASSED! +## Iteration (55) ################# +PASSED! +## Iteration (54) ################# +PASSED! +## Iteration (53) ################# +PASSED! +## Iteration (52) ################# +PASSED! +## Iteration (51) ################# +PASSED! +## Iteration (50) ################# +PASSED! +## Iteration (49) ################# +PASSED! +## Iteration (48) ################# +PASSED! +## Iteration (47) ################# +PASSED! +## Iteration (46) ################# +PASSED! +## Iteration (45) ################# +PASSED! +## Iteration (44) ################# +PASSED! +## Iteration (43) ################# +PASSED! +## Iteration (42) ################# +PASSED! +## Iteration (41) ################# +PASSED! +## Iteration (40) ################# +PASSED! +## Iteration (39) ################# +PASSED! +## Iteration (38) ################# +PASSED! +## Iteration (37) ################# +PASSED! +## Iteration (36) ################# +PASSED! +## Iteration (35) ################# +PASSED! +## Iteration (34) ################# +PASSED! +## Iteration (33) ################# +PASSED! +## Iteration (32) ################# +PASSED! +## Iteration (31) ################# +PASSED! +## Iteration (30) ################# +PASSED! +## Iteration (29) ################# +PASSED! +## Iteration (28) ################# +PASSED! +## Iteration (27) ################# +PASSED! +## Iteration (26) ################# +PASSED! +## Iteration (25) ################# +PASSED! +## Iteration (24) ################# +PASSED! +## Iteration (23) ################# +PASSED! +## Iteration (22) ################# +PASSED! +## Iteration (21) ################# +PASSED! +## Iteration (20) ################# +PASSED! +## Iteration (19) ################# +PASSED! +## Iteration (18) ################# +PASSED! +## Iteration (17) ################# +PASSED! +## Iteration (16) ################# +PASSED! +## Iteration (15) ################# +PASSED! +## Iteration (14) ################# +PASSED! +## Iteration (13) ################# +PASSED! +## Iteration (12) ################# +PASSED! +## Iteration (11) ################# +PASSED! +## Iteration (10) ################# +PASSED! +## Iteration (9) ################# +PASSED! +## Iteration (8) ################# +PASSED! +## Iteration (7) ################# +PASSED! +## Iteration (6) ################# +PASSED! +## Iteration (5) ################# +PASSED! +## Iteration (4) ################# +PASSED! +## Iteration (3) ################# +PASSED! +## Iteration (2) ################# +PASSED! +## Iteration (1) ################# +PASSED! +## Iteration (0) ################# +PASSED! +1822745843970178:1822745843979318 116414:116414 hipGetDeviceProperties() +1822745846474714:1822745846593465 116414:116414 hipMalloc(ptr(0x7f074e800000) size(0x400000)) +1822745846595035:1822745846655616 116414:116414 hipMalloc(ptr(0x7f074e200000) size(0x400000)) +1822745846666816:1822745854964868 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822745854968148:1822745854968149 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746298308870:1822746303423953 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746303443683:1822746303443684 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746303451293:1822746307819121 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746320702463:1822746322784296 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746322785696:1822746322785697 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746322799047:1822746322829467 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746322830727:1822746322830728 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746322833607:1822746327109964 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746333586775:1822746335660718 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746335661998:1822746335661999 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746335675698:1822746335698609 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746335699859:1822746335699860 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746335702869:1822746340061426 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746346506927:1822746348567011 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746348568511:1822746348568512 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746348580611:1822746348610931 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746348612211:1822746348612212 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746348615261:1822746352907138 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746359344249:1822746361405052 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746361406962:1822746361406963 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746361421082:1822746361443332 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746361444572:1822746361444573 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746361455202:1822746365744469 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746372202171:1822746374270134 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746374271634:1822746374271635 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746374294064:1822746374317035 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746374318255:1822746374318256 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746374321165:1822746378595171 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746384660700:1822746386722433 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746386723883:1822746386723884 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746386738714:1822746386761374 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746386762664:1822746386762665 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746386765844:1822746391048471 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746397114629:1822746399185553 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746399186833:1822746399186834 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746399200683:1822746399223483 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746399224743:1822746399224744 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746399227793:1822746403529961 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746409995081:1822746412057035 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746412058365:1822746412058366 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746412071955:1822746412094595 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746412095765:1822746412095766 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746412098905:1822746416387712 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746422826463:1822746424897176 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746424898496:1822746424898497 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746424911236:1822746424933737 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746424935007:1822746424935008 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746424938207:1822746429218004 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746435676255:1822746437720948 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746437730038:1822746437730039 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746437743568:1822746437769188 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746437770698:1822746437770699 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746437773838:1822746442027596 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746448083424:1822746450158327 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746450159647:1822746450159648 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746450173407:1822746450196707 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746450197897:1822746450197898 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746450200977:1822746454503295 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746460941515:1822746463002759 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746463004099:1822746463004100 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746463017579:1822746463049159 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746463050449:1822746463050450 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746463053449:1822746467336197 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746473805778:1822746475882871 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746475884231:1822746475884232 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746475897431:1822746475919811 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746475921111:1822746475921112 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746475924261:1822746480224589 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746486679779:1822746488737312 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746488738752:1822746488738753 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746488751963:1822746488782493 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746488783693:1822746488783694 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746488786943:1822746493097300 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746499530752:1822746501598695 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746501600095:1822746501600096 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746501614375:1822746501637495 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746501648745:1822746501648746 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746501652265:1822746505928192 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746512370343:1822746514457276 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746514458696:1822746514458697 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746514473036:1822746514495377 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746514496697:1822746514496698 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746514499747:1822746518741494 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746525191625:1822746527258748 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746527260208:1822746527260209 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746527284108:1822746527308108 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746527309358:1822746527309359 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746527312808:1822746531586155 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746538049717:1822746540124270 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746540125590:1822746540125591 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746540139580:1822746540162980 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746540164260:1822746540164261 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746540167390:1822746544477457 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746550904939:1822746552970562 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746552972192:1822746552972193 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746552986182:1822746553009192 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746553010492:1822746553010493 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746553013422:1822746557332730 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746563763110:1822746565846414 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746565848034:1822746565848035 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746565861314:1822746565884274 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746565885504:1822746565885505 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746565888614:1822746570194671 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746576267190:1822746578332543 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746578333923:1822746578333924 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746578348063:1822746578379063 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746578380393:1822746578380394 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746578383383:1822746582642821 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746589078011:1822746591158025 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746591159335:1822746591159336 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746591172855:1822746591195855 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746591197105:1822746591197106 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746591200045:1822746595502053 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746601948173:1822746604015657 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746604016967:1822746604016968 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746604030517:1822746604061257 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746604062467:1822746604062468 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746604065477:1822746608328534 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746614389352:1822746616469396 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746616470976:1822746616470977 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746616484366:1822746616506406 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746616507656:1822746616507657 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746616510696:1822746620825594 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746627260834:1822746629329598 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746629331008:1822746629331009 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746629344238:1822746629375238 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746629376498:1822746629376499 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746629379598:1822746633699056 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746639738834:1822746641811077 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746641812567:1822746641812568 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746641833087:1822746641855257 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746641856487:1822746641856488 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746641859797:1822746646095074 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746652534346:1822746654611299 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746654612629:1822746654612630 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746654626799:1822746654650289 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746654651549:1822746654651550 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746654654729:1822746658919216 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746665361737:1822746667426330 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746667428000:1822746667428001 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746667440830:1822746667463430 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746667464700:1822746667464701 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746667467440:1822746671741578 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746678189259:1822746680263922 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746680265312:1822746680265313 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746680278522:1822746680301313 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746680302503:1822746680302504 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746680305543:1822746684599749 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746691021611:1822746693084514 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746693085964:1822746693085965 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746693099924:1822746693122074 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746693123334:1822746693123335 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746693126444:1822746697417261 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746703840982:1822746705929455 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746705931345:1822746705931346 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746705945055:1822746705968686 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746705970476:1822746705970477 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746705975396:1822746710266673 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746716759864:1822746718818848 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746718820238:1822746718820239 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746718833338:1822746718862488 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746718863738:1822746718863739 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746718866688:1822746723107325 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746729581726:1822746731654639 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746731656219:1822746731656220 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746731669399:1822746731692850 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746731694160:1822746731694161 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746731697050:1822746735979657 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746742049516:1822746744110189 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746744111509:1822746744111510 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746744133069:1822746744157759 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746744159029:1822746744159030 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746744162029:1822746748470026 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746754538355:1822746756604198 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746756605568:1822746756605569 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746756620218:1822746756644108 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746756645308:1822746756645309 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746756648178:1822746760954265 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746767383727:1822746769460510 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746769462090:1822746769462091 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746769475920:1822746769508420 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746769510160:1822746769510161 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746769513370:1822746773819308 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746780266169:1822746782332622 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746782341262:1822746782341263 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746782355002:1822746782377392 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746782378672:1822746782378673 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746782381572:1822746786660119 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746793109760:1822746795184754 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746795186074:1822746795186075 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746795200074:1822746795222534 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746795223724:1822746795223725 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746795227004:1822746799487531 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746805734131:1822746807826774 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746807828174:1822746807828175 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746807841974:1822746807865544 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746807866844:1822746807866845 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746807869834:1822746812163911 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746818657433:1822746820718916 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746820720396:1822746820720397 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746820733776:1822746820754526 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746820755816:1822746820755817 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746820759147:1822746825045544 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746831158123:1822746833219966 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746833221276:1822746833221277 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746833235116:1822746833257296 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746833258496:1822746833258497 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746833262016:1822746837573733 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746844028614:1822746846098438 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746846099908:1822746846099909 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746846113688:1822746846136198 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746846139898:1822746846139899 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746846143028:1822746850395185 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746856855246:1822746858924999 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746858926649:1822746858926650 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746858940839:1822746858972180 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746858973450:1822746858973451 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746858976940:1822746863235007 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746869391056:1822746871466399 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746871467439:1822746871467440 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746871481859:1822746871504729 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746871505959:1822746871505960 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746871509339:1822746875781837 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746882240938:1822746884305401 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746884306961:1822746884306962 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746884320881:1822746884352031 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746884353321:1822746884353322 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746884356881:1822746888675479 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746895121520:1822746897183443 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746897184773:1822746897184774 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746897198993:1822746897220863 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746897222143:1822746897222144 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746897225833:1822746901551111 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746907997171:1822746910084375 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746910085815:1822746910085816 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746910100145:1822746910132645 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746910133885:1822746910133886 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746910137185:1822746914418213 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746920862944:1822746922908037 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746922909437:1822746922909438 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746922923627:1822746922945717 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746922947007:1822746922947008 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746922950017:1822746927245224 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746933711785:1822746935787248 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746935788578:1822746935788579 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746935802498:1822746935825959 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746935827269:1822746935827270 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746935830269:1822746940121236 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746946567968:1822746948633181 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746948634511:1822746948634512 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746948648031:1822746948671011 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746948672241:1822746948672242 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746948675421:1822746952926358 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746959366809:1822746961429082 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746961430712:1822746961430713 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746961446582:1822746961469232 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746961470572:1822746961470573 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746961473822:1822746965814810 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746972279711:1822746974343794 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746974345454:1822746974345455 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746974360034:1822746974382215 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746974383495:1822746974383496 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746974394765:1822746978700292 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746985156093:1822746987233016 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822746987234346:1822746987234347 116414:116414 MARK(name(before HIP LaunchKernel)) +1822746987249906:1822746987273247 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822746987274437:1822746987274438 116414:116414 MARK(name(after HIP LaunchKernel)) +1822746987277427:1822746991547133 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822746997998865:1822747000042538 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747000043858:1822747000043859 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747000056848:1822747000088678 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747000090048:1822747000090049 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747000093068:1822747004383005 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747010835117:1822747012916650 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747012918040:1822747012918041 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747012931960:1822747012954660 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747012955940:1822747012955941 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747012959070:1822747017226257 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747023666818:1822747025736181 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747025737581:1822747025737582 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747025750942:1822747025781412 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747025782592:1822747025782593 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747025785872:1822747030052239 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747036505630:1822747038573033 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747038574363:1822747038574364 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747038587933:1822747038610283 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747038611533:1822747038611534 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747038614453:1822747042937121 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747049391692:1822747051453585 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747051454915:1822747051454916 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747051477095:1822747051499955 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747051501245:1822747051501246 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747051505645:1822747055761853 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747062234364:1822747064278727 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747064280197:1822747064280198 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747064294077:1822747064316727 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747064317897:1822747064317898 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747064321017:1822747068576644 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747075133836:1822747077187479 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747077188879:1822747077188880 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747077202689:1822747077225089 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747077226409:1822747077226410 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747077229319:1822747081494496 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747087696776:1822747089772219 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747089773989:1822747089773990 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747089788499:1822747089811079 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747089812899:1822747089812900 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747089815949:1822747094096777 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747100523827:1822747102603680 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747102605060:1822747102605061 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747102619531:1822747102641481 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747102642691:1822747102642692 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747102645601:1822747106932618 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747113394119:1822747115459782 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747115461212:1822747115461213 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747115475162:1822747115497753 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747115499023:1822747115499024 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747115515153:1822747119760390 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747126225621:1822747128302184 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747128305604:1822747128305605 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747128319784:1822747128343274 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747128344584:1822747128344585 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747128348014:1822747132642992 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747139092793:1822747141161296 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747141162606:1822747141162607 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747141175786:1822747141207066 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747141208306:1822747141208307 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747141211546:1822747145461953 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747151567003:1822747153656286 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747153657676:1822747153657677 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747153671136:1822747153695166 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747153696456:1822747153696457 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747153699736:1822747157969813 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747164422934:1822747166485517 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747166486917:1822747166486918 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747166501377:1822747166532578 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747166533928:1822747166533929 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747166537248:1822747170842615 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747177296116:1822747179360869 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747179362209:1822747179362210 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747179384019:1822747179406819 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747179408029:1822747179408030 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747179411549:1822747183701457 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747190153568:1822747192218121 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747192219531:1822747192219532 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747192241651:1822747192264562 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747192268592:1822747192268593 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747192271912:1822747196567838 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747203025850:1822747205089433 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747205090823:1822747205090824 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747205104743:1822747205127533 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747205128843:1822747205128844 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747205131903:1822747209398351 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747215861132:1822747217941265 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747217942715:1822747217942716 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747217956385:1822747217979925 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747217981125:1822747217981126 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747217984415:1822747222276732 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747228736384:1822747230805337 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747230806677:1822747230806678 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747230820807:1822747230842957 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747230844217:1822747230844218 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747230847227:1822747235088114 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747241171943:1822747243246626 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747243248046:1822747243248047 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747243261336:1822747243283836 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747243285216:1822747243285217 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747243288396:1822747247528633 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747253981024:1822747256039047 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747256040467:1822747256040468 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747256054087:1822747256085958 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747256087158:1822747256087159 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747256090268:1822747260360155 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747266815846:1822747268892109 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747268893999:1822747268894000 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747268908149:1822747268930499 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747268931759:1822747268931760 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747268934889:1822747273197947 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747279638697:1822747281720521 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747281721851:1822747281721852 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747281736001:1822747281767771 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747281769071:1822747281769072 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747281772051:1822747286046009 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747292087217:1822747294175330 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747294176650:1822747294176651 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747294190370:1822747294213700 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747294214890:1822747294214891 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747294218100:1822747298479718 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747304924289:1822747306988822 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747306990412:1822747306990413 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747307004372:1822747307035392 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747307036652:1822747307036653 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747307039652:1822747311314729 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747317791590:1822747319871093 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747319872493:1822747319872494 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747319887283:1822747319910064 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747319911324:1822747319911325 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747319914424:1822747324203491 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747330643493:1822747332700526 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747332702106:1822747332702107 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747332716586:1822747332739436 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747332740626:1822747332740627 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747332744156:1822747337036843 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747343481914:1822747345556187 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747345557677:1822747345557678 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747345571377:1822747345594768 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747345596058:1822747345596059 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747345599338:1822747349872305 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747355971414:1822747358047577 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747358048997:1822747358048998 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747358063047:1822747358085817 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747358087087:1822747358087088 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747358090547:1822747362398395 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747368851376:1822747370900379 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747370901939:1822747370901940 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747370915989:1822747370938199 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747370939399:1822747370939400 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747370942579:1822747375221076 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747381681947:1822747383754331 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747383755681:1822747383755682 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747383768661:1822747383791121 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747383792401:1822747383792402 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747383795301:1822747388092428 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747394536289:1822747396603152 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747396604482:1822747396604483 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747396626433:1822747396650613 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747396651883:1822747396651884 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747396656463:1822747400910100 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747407366001:1822747409448144 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747409449544:1822747409449545 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747409464164:1822747409487494 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747409488684:1822747409488685 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747409492014:1822747413770062 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747419814600:1822747421885053 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747421886603:1822747421886604 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747421900793:1822747421932093 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747421933384:1822747421933385 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747421936594:1822747426217111 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747432672842:1822747434748835 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747434750165:1822747434750166 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747434763215:1822747434785875 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747434787135:1822747434787136 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747434790075:1822747439088443 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747445545044:1822747447609577 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747447610877:1822747447610878 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747447624707:1822747447653147 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747447654367:1822747447654368 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747447657297:1822747451957375 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747458405686:1822747460450399 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747460451959:1822747460451960 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747460466289:1822747460489279 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747460490549:1822747460490550 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747460493389:1822747464743566 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747471179157:1822747473254680 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747473257360:1822747473257361 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747473270550:1822747473293450 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747473294800:1822747473294801 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747473297950:1822747477591398 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747484028118:1822747486091922 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747486093502:1822747486093503 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747486106882:1822747486130172 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747486131372:1822747486131373 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747486134422:1822747490419139 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747496865051:1822747498943064 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747498944464:1822747498944465 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747498958554:1822747498980754 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747498982014:1822747498982015 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747498984894:1822747503268461 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747509756563:1822747511818276 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747511819686:1822747511819687 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747511833116:1822747511855426 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747511856726:1822747511856727 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747511859826:1822747516150013 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747522597635:1822747524670938 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747524672268:1822747524672269 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747524685428:1822747524707998 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747524709218:1822747524709219 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747524712398:1822747528987975 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747535047784:1822747537113067 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747537114857:1822747537114858 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747537138907:1822747537163577 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747537164877:1822747537164878 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747537167957:1822747541436424 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747547534253:1822747549612217 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747549613767:1822747549613768 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747549627617:1822747549651057 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747549652307:1822747549652308 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747549655577:1822747553933694 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747560390115:1822747562453868 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747562455438:1822747562455439 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747562469358:1822747562501949 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747562503169:1822747562503170 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747562506189:1822747566818226 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747572878324:1822747574942608 116414:116414 hipMemcpy(dst(0x7f074e800000) src(0x14fd940) size(0x400000) kind(1)) +1822747574943958:1822747574943959 116414:116414 MARK(name(before HIP LaunchKernel)) +1822747574958378:1822747574981108 116414:116414 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) +1822747574982378:1822747574982379 116414:116414 MARK(name(after HIP LaunchKernel)) +1822747574985538:1822747579262875 116414:116414 hipMemcpy(dst(0x18fd950) src(0x7f074e200000) size(0x400000) kind(2)) +1822747585404054:1822747585512165 116414:116414 hipFree(ptr(0x7f074e800000)) +1822747585513895:1822747585531215 116414:116414 hipFree(ptr(0x7f074e200000)) +1822745838864805:1822745838865295 116414:116414 hsa_agent_get_info(, 17, 0x7ffcc96c5e74) = 0 +1822745838866635:1822745838867175 116414:116414 hsa_agent_get_info(, 17, 0x7ffcc96c5e74) = 0 +1822745838866635:1822745838868025 116414:116414 hsa_iterate_agents(1, 0x1120fe8) = 0 +1822745838868896:1822745838869216 116414:116414 hsa_agent_get_info(, 17, 0x7ffcc96c607c) = 0 +1822745838868896:1822745838869656 116414:116414 hsa_iterate_agents(1, 0x1120fe0) = 1 +1822745838878436:1822745838878816 116414:116414 hsa_agent_get_info(, 4, 0x7ffcc96c5d80) = 0 +1822745838879306:1822745838882766 116414:116414 hsa_agent_get_info(, 0, 0x7ffcc96c5d40) = 0 +1822745838883246:1822745838883586 116414:116414 hsa_agent_get_info(, 16, 0x1118fd8) = 0 +1822745838897646:1822745838897996 116414:116414 hsa_agent_get_info(, 21, 0x1118f70) = 0 +1822745838898446:1822745838898776 116414:116414 hsa_agent_get_info(, 22, 0x1118f72) = 0 +1822745838899226:1822745838899566 116414:116414 hsa_agent_get_info(, 14, 0x1118e10) = 0 +1822745838902156:1822745838902776 116414:116414 hsa_amd_profiling_async_copy_enable() = 0 +1822745838906586:1822745838907436 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c5a1c) = 0 +1822745838907946:1822745838908276 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c5a1c) = 0 +1822745838908726:1822745838909056 116414:116414 hsa_amd_memory_pool_get_info(, 2, 0x7ffcc96c5a20) = 0 +1822745838908726:1822745838909506 116414:116414 hsa_amd_agent_iterate_memory_pools(, 1, 0x1118e08) = 1 +1822745838910296:1822745838910626 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c5874) = 0 +1822745838911066:1822745838911396 116414:116414 hsa_amd_memory_pool_get_info(, 1, 0x7ffcc96c5864) = 0 +1822745838911836:1822745838912156 116414:116414 hsa_amd_memory_pool_get_info(, 2, 0x7ffcc96c5868) = 0 +1822745838912706:1822745838913026 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c5874) = 0 +1822745838912706:1822745838913486 116414:116414 hsa_amd_agent_iterate_memory_pools(, 1, 0x1118ec8) = 0 +1822745838914286:1822745838914616 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c5a2c) = 0 +1822745838915046:1822745838915376 116414:116414 hsa_amd_memory_pool_get_info(, 1, 0x7ffcc96c589c) = 0 +1822745838915816:1822745838916136 116414:116414 hsa_amd_memory_pool_get_info(, 2, 0x7ffcc96c5890) = 0 +1822745838916906:1822745838917226 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c5a2c) = 0 +1822745838917656:1822745838917976 116414:116414 hsa_amd_memory_pool_get_info(, 1, 0x7ffcc96c589c) = 0 +1822745838918406:1822745838918726 116414:116414 hsa_amd_memory_pool_get_info(, 2, 0x7ffcc96c5890) = 0 +1822745838918406:1822745838919186 116414:116414 hsa_amd_agent_iterate_memory_pools(, 1, 0x1118ec8) = 0 +1822745838921716:1822745839063337 116414:116414 hsa_amd_memory_pool_allocate(, , , 0x7ffcc96c5b18) = 0 +1822745839067757:1822745839136437 116414:116414 hsa_amd_agents_allow_access(, 0x1118e00, 0, 0x7f077be80000) = 0 +1822745839146337:1822745839146717 116414:116414 hsa_agent_get_info(, 8, 0x1118f24) = 0 +1822745839147187:1822745839147507 116414:116414 hsa_agent_get_info(, 7, 0x1118f28) = 0 +1822745839147957:1822745839148277 116414:116414 hsa_agent_get_info(, 4, 0x7ffcc96c5f80) = 0 +1822745839153787:1822745839154177 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c58dc) = 0 +1822745839154797:1822745839155117 116414:116414 hsa_amd_memory_pool_get_info(, 1, 0x7ffcc96c58d8) = 0 +1822745839155657:1822745839155977 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c58dc) = 0 +1822745839156457:1822745839156797 116414:116414 hsa_amd_memory_pool_get_info(, 1, 0x7ffcc96c58d8) = 0 +1822745839156457:1822745839157297 116414:116414 hsa_amd_agent_iterate_memory_pools(, 1, 0x7ffcc96c5b10) = 0 +1822745839158167:1822745839158517 116414:116414 hsa_agent_get_info(, 17, 0x7ffcc96c5904) = 0 +1822745839158997:1822745839159337 116414:116414 hsa_agent_get_info(, 17, 0x7ffcc96c5904) = 0 +1822745839158997:1822745839159857 116414:116414 hsa_iterate_agents(1, 0x7ffcc96c5a70) = 0 +1822745839160547:1822745840209184 116414:116414 hsa_amd_memory_pool_allocate(, , , 0x1119340) = 0 +1822745840210754:1822745840361735 116414:116414 hsa_amd_agents_allow_access(, 0x1100a00, 0, 0x7f0760400000) = 0 +1822745840365565:1822745840370505 116414:116414 hsa_signal_create(0, , 0, 0x1119360) = 0 +1822745840370975:1822745840372085 116414:116414 hsa_signal_create(0, , 0, 0x1119380) = 0 +1822745840372845:1822745841339691 116414:116414 hsa_amd_memory_pool_allocate(, , , 0x1119348) = 0 +1822745841341081:1822745841483972 116414:116414 hsa_amd_agents_allow_access(, 0x1100a00, 0, 0x7f074fa00000) = 0 +1822745841486242:1822745841489022 116414:116414 hsa_signal_create(0, , 0, 0x1119368) = 0 +1822745841489422:1822745841490542 116414:116414 hsa_signal_create(0, , 0, 0x1119388) = 0 +1822745841492512:1822745841493102 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c58dc) = 0 +1822745841493572:1822745841493852 116414:116414 hsa_amd_memory_pool_get_info(, 1, 0x7ffcc96c58d8) = 0 +1822745841494312:1822745841494602 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c58dc) = 0 +1822745841495022:1822745841495302 116414:116414 hsa_amd_memory_pool_get_info(, 1, 0x7ffcc96c58d8) = 0 +1822745841495022:1822745841495732 116414:116414 hsa_amd_agent_iterate_memory_pools(, 1, 0x7ffcc96c5b10) = 0 +1822745841497002:1822745841497712 116414:116414 hsa_agent_get_info(, 17, 0x7ffcc96c5904) = 0 +1822745841498132:1822745841498612 116414:116414 hsa_agent_get_info(, 17, 0x7ffcc96c5904) = 0 +1822745841498132:1822745841499052 116414:116414 hsa_iterate_agents(1, 0x7ffcc96c5a70) = 0 +1822745841504172:1822745842421788 116414:116414 hsa_amd_memory_pool_allocate(, , , 0x1119920) = 0 +1822745842423278:1822745842568269 116414:116414 hsa_amd_agents_allow_access(, 0x1100150, 0, 0x7f074f400000) = 0 +1822745842569509:1822745842571469 116414:116414 hsa_signal_create(0, , 0, 0x1119940) = 0 +1822745842571879:1822745842572669 116414:116414 hsa_signal_create(0, , 0, 0x1119960) = 0 +1822745842573259:1822745843500275 116414:116414 hsa_amd_memory_pool_allocate(, , , 0x1119928) = 0 +1822745843502365:1822745843637306 116414:116414 hsa_amd_agents_allow_access(, 0x1100150, 0, 0x7f074ee00000) = 0 +1822745843638486:1822745843640556 116414:116414 hsa_signal_create(0, , 0, 0x1119948) = 0 +1822745843640966:1822745843641846 116414:116414 hsa_signal_create(0, , 0, 0x1119968) = 0 +1822745843658626:1822745843725117 116414:116414 hsa_amd_memory_lock(0x7f077b3a86f0, , 0x10ffc50, 1, 0x7f077b3a86f8) = 0 +1822745843739687:1822745843740347 116414:116414 hsa_agent_get_info(, 17, 0x7ffcc96c63b4) = 0 +1822745843739687:1822745843740767 116414:116414 hsa_iterate_agents(1, 0x7f077a770f08) = 1 +1822745843743707:1822745843744287 116414:116414 hsa_agent_get_info(, 40962, 0x111a068) = 0 +1822745843745907:1822745843746197 116414:116414 hsa_agent_get_info(, 17, 0x7ffcc96c61cc) = 0 +1822745843746697:1822745843746997 116414:116414 hsa_agent_get_info(, 17, 0x7ffcc96c61cc) = 0 +1822745843746697:1822745843747387 116414:116414 hsa_iterate_agents(1, 0x7ffcc96c631c) = 0 +1822745843747777:1822745843748127 116414:116414 hsa_agent_get_info(, 40969, 0x111a070) = 0 +1822745843748517:1822745843761367 116414:116414 hsa_agent_get_info(, 0, 0x7ffcc96c6390) = 0 +1822745843763977:1822745843764287 116414:116414 hsa_agent_get_info(, 16, 0x7ffcc96c634c) = 0 +1822745843764677:1822745843764977 116414:116414 hsa_agent_get_info(, 6, 0x111a184) = 0 +1822745843765367:1822745843765667 116414:116414 hsa_agent_get_info(, 8, 0x111a188) = 0 +1822745843766057:1822745843766347 116414:116414 hsa_agent_get_info(, 7, 0x7ffcc96c630e) = 0 +1822745843766747:1822745843767027 116414:116414 hsa_agent_get_info(, 9, 0x7ffcc96c6330) = 0 +1822745843767427:1822745843767717 116414:116414 hsa_agent_get_info(, 40963, 0x111a1a4) = 0 +1822745843769647:1822745843769947 116414:116414 hsa_system_get_info(3, 0x7ffcc96c6340) = 0 +1822745843770347:1822745843770647 116414:116414 hsa_agent_get_info(, 40966, 0x7ffcc96c630c) = 0 +1822745843771047:1822745843771337 116414:116414 hsa_agent_get_info(, 40975, 0x111a1dc) = 0 +1822745843771737:1822745843772017 116414:116414 hsa_agent_get_info(, 40962, 0x111a1c0) = 0 +1822745843772407:1822745843772707 116414:116414 hsa_agent_get_info(, 18, 0x7ffcc96c6380) = 0 +1822745843773197:1822745843773487 116414:116414 hsa_agent_get_info(, 40970, 0x7ffcc96c6318) = 0 +1822745843779967:1822745843780487 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c618c) = 0 +1822745843783457:1822745843783757 116414:116414 hsa_amd_memory_pool_get_info(, 0, 0x7ffcc96c618c) = 0 +1822745843784217:1822745843784507 116414:116414 hsa_amd_memory_pool_get_info(, 2, 0x111a178) = 0 +1822745843784217:1822745843784957 116414:116414 hsa_amd_agent_iterate_memory_pools(, 1, 0x111a070) = 0 +1822745843817537:1822745843819237 116414:116414 hsa_signal_create(1, , 0x7ffcc96c6048, 0x111d3e8) = 0 +1822745843826787:1822745843827217 116414:116414 hsa_region_get_info(, 2, 0x111a170) = 0 +1822745843827627:1822745843828007 116414:116414 hsa_region_get_info(, 40963, 0x111a1a8) = 0 +1822745843828397:1822745843828687 116414:116414 hsa_region_get_info(, 40962, 0x111a1ac) = 0 +1822745843829097:1822745843829417 116414:116414 hsa_agent_get_info(, 4, 0x7ffcc96c6314) = 0 +1822745843829807:1822745843897558 116414:116414 hsa_agent_get_info(, 12288, 0x111a208) = 0 +1822745843898058:1822745843898438 116414:116414 hsa_agent_get_info(, 12291, 0x111a20c) = 0 +1822745843898838:1822745843899178 116414:116414 hsa_agent_get_info(, 12295, 0x111a214) = 0 +1822745843899578:1822745843899878 116414:116414 hsa_agent_get_info(, 40974, 0x7ffcc96c6370) = 0 +1822745843900268:1822745843900558 116414:116414 hsa_agent_get_info(, 19, 0x7ffcc96c6328) = 0 +1822745843902748:1822745843936028 116414:116414 hsa_isa_get_info_alt(, 0, 0x7ffcc96c6320) = 0 +1822745843939378:1822745843942918 116414:116414 hsa_isa_get_info_alt(, 1, 0x11191f0) = 0 +1822745843965978:1822745843966318 116414:116414 hsa_system_get_info(3, 0x7ffcc96c6750) = 0 +1822745843967228:1822745843967768 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6750) = 0 +1822745843971488:1822745843972028 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6750) = 0 +1822745846473634:1822745846474264 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6750) = 0 +1822745846484914:1822745846587705 116414:116414 hsa_amd_memory_pool_allocate(, , , 0x7ffcc96c64a8) = 0 +1822745846592315:1822745846592865 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6750) = 0 +1822745846594105:1822745846594645 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6750) = 0 +1822745846595565:1822745846653206 116414:116414 hsa_amd_memory_pool_allocate(, , , 0x7ffcc96c64a8) = 0 +1822745846654406:1822745846654946 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6750) = 0 +1822745846665836:1822745846666376 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822745846687396:1822745846687936 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822745846690466:1822745846690756 116414:116414 hsa_system_get_info(3, 0x7ffcc96c6318) = 0 +1822745846694326:1822745846694866 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822745846700276:1822745846701166 116414:116414 hsa_signal_store_screlease(, 0) = void +1822745846701576:1822745846702136 116414:116414 hsa_signal_store_screlease(, 0) = void +1822745846703646:1822745846704306 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822745847229929:1822745847230429 116414:116414 hsa_signal_store_screlease(, 1) = void +1822745847232589:1822745853512519 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822745853516229:1822745854941278 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822745854941728:1822745854942148 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822745854958308:1822745854958868 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822745854959758:1822745854960048 116414:116414 hsa_system_get_info(3, 0x7ffcc96c61a0) = 0 +1822745854963078:1822745854963618 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746012614062:1822746012617122 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746012845913:1822746012846523 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746016793828:1822746016796628 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746016800158:1822746016801078 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746016803218:1822746016803878 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746016806168:1822746016806918 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746016867579:1822746016868049 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746016869949:1822746016870599 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746016872579:1822746016873209 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746016875309:1822746016875839 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746016934009:1822746016934489 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746016936889:1822746016937409 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746016939679:1822746016940199 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746016942589:1822746016943109 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017001010:1822746017001530 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017003660:1822746017004170 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017006870:1822746017007420 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017009390:1822746017009900 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017074520:1822746017075060 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017077300:1822746017077750 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017080040:1822746017080490 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017082570:1822746017083120 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017140200:1822746017140720 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017142580:1822746017143180 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017145290:1822746017145830 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017147670:1822746017148190 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017204571:1822746017205021 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017207251:1822746017207701 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017209541:1822746017210061 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017211861:1822746017212371 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017270161:1822746017270851 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017272781:1822746017273311 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017275131:1822746017275651 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017277381:1822746017277891 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017335432:1822746017335912 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017338152:1822746017338672 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017340862:1822746017341382 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017344602:1822746017345062 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017527473:1822746017527993 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017530963:1822746017531423 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017534723:1822746017535183 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017539073:1822746017539613 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017597893:1822746017598603 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017600493:1822746017601093 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017603063:1822746017603523 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017605373:1822746017606133 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017663164:1822746017663624 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017665314:1822746017665834 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017668134:1822746017668594 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017670294:1822746017670804 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017764394:1822746017764874 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017767164:1822746017767684 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017769894:1822746017770414 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017772154:1822746017772674 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017829675:1822746017830335 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017832375:1822746017832885 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017835445:1822746017835965 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017838005:1822746017838455 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017895195:1822746017895735 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017897715:1822746017898325 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017900335:1822746017900795 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017902835:1822746017903355 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746017960856:1822746017961256 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746017963036:1822746017963506 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746017965616:1822746017966126 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746017968586:1822746017969106 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746018025206:1822746018025716 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746018028306:1822746018028816 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746018031046:1822746018031566 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746018033936:1822746018034466 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746018091297:1822746018091757 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746018093697:1822746018094207 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746018096517:1822746018097377 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746018099217:1822746018099747 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746018155967:1822746018156437 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746018160057:1822746018160657 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746018162757:1822746018163437 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746018165107:1822746018165567 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746018221307:1822746018221817 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7ffcc96c6610) = 0 +1822746018223687:1822746018224217 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7ffcc96c6610) = 0 +1822746018226157:1822746018226677 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7ffcc96c6610) = 0 +1822746018228677:1822746018229207 116414:116414 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7ffcc96c6610) = 0 +1822746110461644:1822746110469244 116414:116414 hsa_executable_create_alt(1, 0, +1822746256712946:1822746256716936 116414:116414 hsa_code_object_reader_create_from_memory(0x6a381b0, , 0x6662170) = 0 +1822746256720556:1822746257098998 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746257101078:1822746257161869 116414:116414 hsa_executable_freeze(, +1822746257172039:1822746257173319 116414:116414 hsa_executable_create_alt(1, 0, +1822746257186299:1822746257186669 116414:116414 hsa_code_object_reader_create_from_memory(0x6a39720, , 0x667c5a0) = 0 +1822746257187119:1822746257312030 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746257312920:1822746257356540 116414:116414 hsa_executable_freeze(, +1822746257362660:1822746257363500 116414:116414 hsa_executable_create_alt(1, 0, +1822746257373630:1822746257374020 116414:116414 hsa_code_object_reader_create_from_memory(0x6a3ac90, , 0x6697480) = 0 +1822746257374460:1822746257500421 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746257501171:1822746257540031 116414:116414 hsa_executable_freeze(, +1822746257545971:1822746257546701 116414:116414 hsa_executable_create_alt(1, 0, +1822746257557251:1822746257557611 116414:116414 hsa_code_object_reader_create_from_memory(0x6a3c670, , 0x66af7a0) = 0 +1822746257558061:1822746257674412 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746257675172:1822746257715262 116414:116414 hsa_executable_freeze(, +1822746257720962:1822746257721652 116414:116414 hsa_executable_create_alt(1, 0, +1822746257732452:1822746257732822 116414:116414 hsa_code_object_reader_create_from_memory(0x6a3dfd0, , 0x66c6750) = 0 +1822746257733282:1822746257849543 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746257850303:1822746257890183 116414:116414 hsa_executable_freeze(, +1822746257896133:1822746257896993 116414:116414 hsa_executable_create_alt(1, 0, +1822746257909843:1822746257910243 116414:116414 hsa_code_object_reader_create_from_memory(0x6aaab60, , 0x66dbe40) = 0 +1822746257910683:1822746258030784 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746258031634:1822746258070614 116414:116414 hsa_executable_freeze(, +1822746258076394:1822746258077154 116414:116414 hsa_executable_create_alt(1, 0, +1822746258087464:1822746258087844 116414:116414 hsa_code_object_reader_create_from_memory(0x6aac0d0, , 0x66ef250) = 0 +1822746258088294:1822746258207445 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746258208245:1822746258246955 116414:116414 hsa_executable_freeze(, +1822746258252595:1822746258253325 116414:116414 hsa_executable_create_alt(1, 0, +1822746258263875:1822746258264325 116414:116414 hsa_code_object_reader_create_from_memory(0x6aad640, , 0x6703160) = 0 +1822746258264775:1822746258380106 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746258380886:1822746258420086 116414:116414 hsa_executable_freeze(, +1822746258425756:1822746258426666 116414:116414 hsa_executable_create_alt(1, 0, +1822746258439067:1822746258439447 116414:116414 hsa_code_object_reader_create_from_memory(0x6aaebb0, , 0x6714630) = 0 +1822746258439887:1822746258555897 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746258556677:1822746258595328 116414:116414 hsa_executable_freeze(, +1822746258601478:1822746258602068 116414:116414 hsa_executable_create_alt(1, 0, +1822746258622128:1822746258622538 116414:116414 hsa_code_object_reader_create_from_memory(0x6abf850, , 0x6726780) = 0 +1822746258622988:1822746258756259 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746258757039:1822746258798919 116414:116414 hsa_executable_freeze(, +1822746258804949:1822746258805739 116414:116414 hsa_executable_create_alt(1, 0, +1822746258817549:1822746258817929 116414:116414 hsa_code_object_reader_create_from_memory(0x6ac6130, , 0x673b0c0) = 0 +1822746258818379:1822746258936190 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746258936950:1822746258976860 116414:116414 hsa_executable_freeze(, +1822746258982530:1822746258983350 116414:116414 hsa_executable_create_alt(1, 0, +1822746258994080:1822746258994500 116414:116414 hsa_code_object_reader_create_from_memory(0x6ac76a0, , 0x67498b0) = 0 +1822746258994950:1822746259108911 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746259109691:1822746259149691 116414:116414 hsa_executable_freeze(, +1822746259155131:1822746259155921 116414:116414 hsa_executable_create_alt(1, 0, +1822746259170591:1822746259170971 116414:116414 hsa_code_object_reader_create_from_memory(0x6acd750, , 0x6763d90) = 0 +1822746259171411:1822746259290812 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746259291552:1822746259330572 116414:116414 hsa_executable_freeze(, +1822746259336192:1822746259336992 116414:116414 hsa_executable_create_alt(1, 0, +1822746259347902:1822746259348282 116414:116414 hsa_code_object_reader_create_from_memory(0x6ac8c10, , 0x677c550) = 0 +1822746259348732:1822746259467703 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746259468453:1822746259508453 116414:116414 hsa_executable_freeze(, +1822746259514053:1822746259514783 116414:116414 hsa_executable_create_alt(1, 0, +1822746259525393:1822746259525763 116414:116414 hsa_code_object_reader_create_from_memory(0x6aca180, , 0x67979f0) = 0 +1822746259526213:1822746259640614 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746259641384:1822746259681794 116414:116414 hsa_executable_freeze(, +1822746259687194:1822746259687974 116414:116414 hsa_executable_create_alt(1, 0, +1822746259698134:1822746259698514 116414:116414 hsa_code_object_reader_create_from_memory(0x6acb6f0, , 0x67b1160) = 0 +1822746259698964:1822746259814605 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746259815395:1822746259853815 116414:116414 hsa_executable_freeze(, +1822746259859295:1822746259860175 116414:116414 hsa_executable_create_alt(1, 0, +1822746259870295:1822746259870755 116414:116414 hsa_code_object_reader_create_from_memory(0x6ab0120, , 0x67bf080) = 0 +1822746259871215:1822746259986606 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746259987396:1822746260041437 116414:116414 hsa_executable_freeze(, +1822746260043467:1822746260044077 116414:116414 hsa_executable_create_alt(1, 0, +1822746260054487:1822746260054857 116414:116414 hsa_code_object_reader_create_from_memory(0x6ab1690, , 0x67d7900) = 0 +1822746260055297:1822746260171737 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746260172517:1822746260210558 116414:116414 hsa_executable_freeze(, +1822746260216698:1822746260217748 116414:116414 hsa_executable_create_alt(1, 0, +1822746260229578:1822746260230008 116414:116414 hsa_code_object_reader_create_from_memory(0x6ab2c00, , 0x67f5420) = 0 +1822746260230518:1822746260349979 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746260350849:1822746260389269 116414:116414 hsa_executable_freeze(, +1822746260395479:1822746260396299 116414:116414 hsa_executable_create_alt(1, 0, +1822746260406959:1822746260407379 116414:116414 hsa_code_object_reader_create_from_memory(0x6ab42d0, , 0x680bc60) = 0 +1822746260409619:1822746260529400 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746260530280:1822746260568970 116414:116414 hsa_executable_freeze(, +1822746260632020:1822746260632760 116414:116414 hsa_executable_create_alt(1, 0, +1822746260658031:1822746260658531 116414:116414 hsa_code_object_reader_create_from_memory(0x69ef840, , 0x682bbe0) = 0 +1822746260659031:1822746260787191 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746260788061:1822746260828412 116414:116414 hsa_executable_freeze(, +1822746260836172:1822746260837402 116414:116414 hsa_executable_create_alt(1, 0, +1822746260855362:1822746260855802 116414:116414 hsa_code_object_reader_create_from_memory(0x69fa1a0, , 0x68423e0) = 0 +1822746260856332:1822746260985623 116414:116414 hsa_executable_load_agent_code_object(, , , +1822746260987213:1822746261027993 116414:116414 hsa_executable_freeze(, +1822746260987213:1822746261038183 116414:116414 hsa_agent_iterate_isas(, 1, 0x7ffcc96c6558) = 0 +1822746261041573:1822746261042413 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261042893:1822746261043243 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261043673:1822746261044013 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261044443:1822746261044773 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261045213:1822746261045543 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261045973:1822746261046323 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261046753:1822746261047093 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261047523:1822746261047853 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261048283:1822746261048623 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261050613:1822746261051313 116414:116414 hsa_executable_symbol_get_info(, 0, 0x7ffcc96c6478) = 0 +1822746261051813:1822746261052153 116414:116414 hsa_executable_symbol_get_info(, 1, 0x7ffcc96c6474) = 0 +1822746261052703:1822746261053073 116414:116414 hsa_executable_symbol_get_info(, 2, 0x6ac5690) = 0 +1822746261053933:1822746261054263 116414:116414 hsa_executable_symbol_get_info(, 0, 0x7ffcc96c6478) = 0 +1822746261054703:1822746261055023 116414:116414 hsa_executable_symbol_get_info(, 1, 0x7ffcc96c6474) = 0 +1822746261055823:1822746261056183 116414:116414 hsa_executable_symbol_get_info(, 2, 0x5d5f1c0) = 0 +1822746261056913:1822746261057243 116414:116414 hsa_executable_symbol_get_info(, 0, 0x7ffcc96c6478) = 0 +1822746261057673:1822746261057993 116414:116414 hsa_executable_symbol_get_info(, 1, 0x7ffcc96c6474) = 0 +1822746261060253:1822746261060613 116414:116414 hsa_executable_symbol_get_info(, 2, 0x6062190) = 0 +1822746261061373:1822746261061703 116414:116414 hsa_executable_symbol_get_info(, 0, 0x7ffcc96c6478) = 0 +1822746261062133:1822746261062453 116414:116414 hsa_executable_symbol_get_info(, 1, 0x7ffcc96c6474) = 0 +1822746261062973:1822746261063323 116414:116414 hsa_executable_symbol_get_info(, 2, 0x694f760) = 0 +1822746261064013:1822746261064333 116414:116414 hsa_executable_symbol_get_info(, 0, 0x7ffcc96c6478) = 0 +1822746261064773:1822746261065093 116414:116414 hsa_executable_symbol_get_info(, 1, 0x7ffcc96c6474) = 0 +1822746261065563:1822746261065903 116414:116414 hsa_executable_symbol_get_info(, 2, 0x6ac50b0) = 0 +1822746261067023:1822746261067353 116414:116414 hsa_executable_symbol_get_info(, 0, 0x7ffcc96c6478) = 0 +1822746261067783:1822746261068103 116414:116414 hsa_executable_symbol_get_info(, 1, 0x7ffcc96c6474) = 0 +1822746261068583:1822746261068923 116414:116414 hsa_executable_symbol_get_info(, 2, 0x67c4800) = 0 +1822746261068583:1822746261069563 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261070003:1822746261070363 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261070793:1822746261071133 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261071913:1822746261072243 116414:116414 hsa_executable_symbol_get_info(, 0, 0x7ffcc96c6478) = 0 +1822746261072673:1822746261072993 116414:116414 hsa_executable_symbol_get_info(, 1, 0x7ffcc96c6474) = 0 +1822746261073483:1822746261073833 116414:116414 hsa_executable_symbol_get_info(, 2, 0x60dda00) = 0 +1822746261073483:1822746261074483 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261074913:1822746261075253 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261075693:1822746261076023 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261076453:1822746261076793 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261077223:1822746261077553 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261077993:1822746261078323 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261078753:1822746261079093 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261079523:1822746261079853 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261080643:1822746261080963 116414:116414 hsa_executable_symbol_get_info(, 0, 0x7ffcc96c6478) = 0 +1822746261081403:1822746261081723 116414:116414 hsa_executable_symbol_get_info(, 1, 0x7ffcc96c6474) = 0 +1822746261082203:1822746261082553 116414:116414 hsa_executable_symbol_get_info(, 2, 0x6a40940) = 0 +1822746261082203:1822746261083163 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746261083953:1822746261084273 116414:116414 hsa_executable_symbol_get_info(, 0, 0x7ffcc96c6478) = 0 +1822746261085563:1822746261085893 116414:116414 hsa_executable_symbol_get_info(, 1, 0x7ffcc96c6474) = 0 +1822746261086393:1822746261086733 116414:116414 hsa_executable_symbol_get_info(, 2, 0x694f7b0) = 0 +1822746261086393:1822746261087473 116414:116414 hsa_executable_iterate_agent_symbols(, , 1, 0x10fde00) = 0 +1822746295930116:1822746295931786 116414:116414 hsa_executable_symbol_get_info(, 22, 0x7ffcc96c66f0) = 0 +1822746295939716:1822746295940186 116414:116414 hsa_system_major_extension_supported(, , , ) = 0 +1822746295941986:1822746295942326 116414:116414 hsa_system_get_major_extension_table(, , , 0x7ffcc96c6680) = 0 +1822746295949766:1822746295950056 116414:116414 hsa_executable_symbol_get_info(, 22, 0x7ffcc96c66f0) = 0 +1822746295950566:1822746295950846 116414:116414 hsa_system_major_extension_supported(, , , ) = 0 +1822746295951256:1822746295951546 116414:116414 hsa_system_get_major_extension_table(, , , 0x7ffcc96c6680) = 0 +1822746296613290:1822746296613760 116414:116414 hsa_executable_symbol_get_info(, 22, 0x7ffcc96c66f0) = 0 +1822746296614360:1822746296614640 116414:116414 hsa_system_major_extension_supported(, , , ) = 0 +1822746296615050:1822746296615350 116414:116414 hsa_system_get_major_extension_table(, , , 0x7ffcc96c6680) = 0 +1822746296682290:1822746296682580 116414:116414 hsa_executable_symbol_get_info(, 22, 0x7ffcc96c66f0) = 0 +1822746296683080:1822746296683360 116414:116414 hsa_system_major_extension_supported(, , , ) = 0 +1822746296683750:1822746296684030 116414:116414 hsa_system_get_major_extension_table(, , , 0x7ffcc96c6680) = 0 +1822746296693170:1822746296693520 116414:116414 hsa_executable_symbol_get_info(, 22, 0x7ffcc96c66f0) = 0 +1822746296694050:1822746296694340 116414:116414 hsa_system_major_extension_supported(, , , ) = 0 +1822746296694730:1822746296695010 116414:116414 hsa_system_get_major_extension_table(, , , 0x7ffcc96c6680) = 0 +1822746296696350:1822746296696770 116414:116414 hsa_executable_symbol_get_info(, 22, 0x7ffcc96c66f0) = 0 +1822746296697320:1822746296697600 116414:116414 hsa_system_major_extension_supported(, , , ) = 0 +1822746296697990:1822746296698270 116414:116414 hsa_system_get_major_extension_table(, , , 0x7ffcc96c6680) = 0 +1822746296700910:1822746296701330 116414:116414 hsa_executable_symbol_get_info(, 22, 0x7ffcc96c66f0) = 0 +1822746296701820:1822746296702100 116414:116414 hsa_system_major_extension_supported(, , , ) = 0 +1822746296702490:1822746296702770 116414:116414 hsa_system_get_major_extension_table(, , , 0x7ffcc96c6680) = 0 +1822746296704480:1822746296704760 116414:116414 hsa_executable_symbol_get_info(, 22, 0x7ffcc96c66f0) = 0 +1822746296705270:1822746296705550 116414:116414 hsa_system_major_extension_supported(, , , ) = 0 +1822746296705940:1822746296706220 116414:116414 hsa_system_get_major_extension_table(, , , 0x7ffcc96c6680) = 0 +1822746297964778:1822746297965118 116414:116414 hsa_executable_symbol_get_info(, 22, 0x7ffcc96c66f0) = 0 +1822746297973018:1822746297973318 116414:116414 hsa_system_major_extension_supported(, , , ) = 0 +1822746297973708:1822746297973988 116414:116414 hsa_system_get_major_extension_table(, , , 0x7ffcc96c6680) = 0 +1822746297975208:1822746297975488 116414:116414 hsa_executable_symbol_get_info(, 22, 0x7ffcc96c66f0) = 0 +1822746297975948:1822746297976228 116414:116414 hsa_system_major_extension_supported(, , , ) = 0 +1822746297976618:1822746297976888 116414:116414 hsa_system_get_major_extension_table(, , , 0x7ffcc96c6680) = 0 +1822746297983228:1822746297983508 116414:116414 hsa_executable_symbol_get_info(, 22, 0x7ffcc96c66f0) = 0 +1822746297984018:1822746297984298 116414:116414 hsa_system_major_extension_supported(, , , ) = 0 +1822746297984688:1822746297984968 116414:116414 hsa_system_get_major_extension_table(, , , 0x7ffcc96c6680) = 0 +1822746298307500:1822746298308110 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746298317470:1822746298318010 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746298336671:1822746303368323 116414:116414 hsa_queue_create(, , , 1, 0, , , ) = 0 +1822746303379963:1822746303380583 116414:116414 hsa_amd_profiling_set_profiler_enabled(, 1) = 0 +1822746303392083:1822746303392743 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 0 +1822746303395403:1822746303395893 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 0 +1822746303397053:1822746303401123 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746303402923:1822746303403243 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746303406393:1822746303407053 116414:116414 hsa_signal_store_relaxed(, 0) = void +1822746303421673:1822746303422223 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746303450323:1822746303450853 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746303463453:1822746303463983 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746303467393:1822746303469633 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746303470033:1822746303470333 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 1 +1822746303470753:1822746303471053 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 0 +1822746303471833:1822746303472123 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746303472533:1822746303472993 116414:116414 hsa_signal_store_relaxed(, 1) = void +1822746303480463:1822746304748201 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746304757671:1822746304758801 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746304763831:1822746304768792 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746304769692:1822746304770312 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746304787842:1822746304789742 116414:116414 hsa_signal_destroy() = 0 +1822746304792022:1822746304793102 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746304794652:1822746304795722 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746304799412:1822746304800262 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746304801082:1822746304801792 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746304802712:1822746304803252 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746304804362:1822746304808472 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746304809312:1822746307121197 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746307812921:1822746307814101 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746307816521:1822746307817671 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746320698363:1822746320700143 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746320718253:1822746320719373 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746320722453:1822746320723573 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746320726833:1822746320728443 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746320729273:1822746320730213 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746320731213:1822746320732563 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746321346967:1822746321347457 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746321348847:1822746321351647 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746321352197:1822746322777946 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746322778346:1822746322778656 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746322780426:1822746322780966 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746322782686:1822746322783216 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746322798097:1822746322798627 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746322801967:1822746322802497 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746322809177:1822746322809917 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 2 +1822746322810657:1822746322811297 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 2 +1822746322812327:1822746322814717 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746322815557:1822746322815867 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746322825127:1822746322825967 116414:116414 hsa_signal_store_relaxed(, 2) = void +1822746322828407:1822746322828947 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746322832697:1822746322833227 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746322835307:1822746322835847 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746322837537:1822746322842377 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746322842787:1822746322843067 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 3 +1822746322843457:1822746322843737 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 2 +1822746322844697:1822746322844977 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746322845367:1822746322845817 116414:116414 hsa_signal_store_relaxed(, 3) = void +1822746322847767:1822746324100465 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746324104985:1822746324105615 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746324107075:1822746324111965 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746324112445:1822746324112765 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746324114775:1822746324116085 116414:116414 hsa_signal_destroy() = 0 +1822746324119105:1822746324119415 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746324119885:1822746324120195 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746324121105:1822746324121705 116414:116414 hsa_signal_destroy() = 0 +1822746324122555:1822746324123105 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746324123855:1822746324124385 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746324125445:1822746324126105 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746324126505:1822746324126975 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746324127455:1822746324127725 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746324128185:1822746324129335 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746324129745:1822746326483210 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746327106484:1822746327107064 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746327108604:1822746327109134 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746333583475:1822746333585175 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746333600775:1822746333601305 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746333603205:1822746333603735 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746333616855:1822746333617795 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746333618185:1822746333618825 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746333619465:1822746333621015 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746334228139:1822746334228719 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746334229849:1822746334232359 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746334232839:1822746335654448 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746335654848:1822746335655308 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746335656508:1822746335657038 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746335659158:1822746335659698 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746335674698:1822746335675248 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746335678539:1822746335679079 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746335686109:1822746335687109 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 4 +1822746335687999:1822746335688689 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 4 +1822746335689729:1822746335692139 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746335692809:1822746335693119 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746335694199:1822746335694919 116414:116414 hsa_signal_store_relaxed(, 4) = void +1822746335697509:1822746335698069 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746335701949:1822746335702489 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746335705069:1822746335705609 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746335706639:1822746335707249 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746335707639:1822746335707919 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 5 +1822746335708319:1822746335708589 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 4 +1822746335709459:1822746335709739 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746335710139:1822746335710589 116414:116414 hsa_signal_store_relaxed(, 5) = void +1822746335712139:1822746336997057 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746337001747:1822746337002367 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746337003907:1822746337008107 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746337008587:1822746337008897 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746337013647:1822746337014697 116414:116414 hsa_signal_destroy() = 0 +1822746337015787:1822746337016107 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746337016587:1822746337016887 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746337018037:1822746337018367 116414:116414 hsa_signal_destroy() = 0 +1822746337019357:1822746337019917 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746337020847:1822746337021387 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746337022127:1822746337022587 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746337022977:1822746337023397 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746337023947:1822746337024217 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746337024647:1822746337025797 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746337026227:1822746339410132 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746340057906:1822746340058496 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746340059966:1822746340060496 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746346503777:1822746346505087 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746346520418:1822746346520958 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746346523028:1822746346523558 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746346525788:1822746346526838 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746346527238:1822746346527648 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746346528278:1822746346529158 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746347134931:1822746347135401 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746347136412:1822746347139072 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746347139612:1822746348561471 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746348561901:1822746348562341 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746348563321:1822746348563851 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746348565601:1822746348566131 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746348579651:1822746348580201 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746348583491:1822746348584021 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746348590631:1822746348591701 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 6 +1822746348600591:1822746348600921 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 6 +1822746348601911:1822746348604611 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746348605271:1822746348605581 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746348606641:1822746348607481 116414:116414 hsa_signal_store_relaxed(, 6) = void +1822746348609831:1822746348610361 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746348614341:1822746348614871 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746348617281:1822746348617811 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746348619181:1822746348620041 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746348620431:1822746348620711 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 7 +1822746348621111:1822746348621391 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 6 +1822746348622281:1822746348622551 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746348622941:1822746348623401 116414:116414 hsa_signal_store_relaxed(, 7) = void +1822746348625021:1822746349882739 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746349887459:1822746349888059 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746349889559:1822746349894099 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746349894519:1822746349894839 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746349896869:1822746349898169 116414:116414 hsa_signal_destroy() = 0 +1822746349899299:1822746349899619 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746349900099:1822746349900399 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746349901519:1822746349901859 116414:116414 hsa_signal_destroy() = 0 +1822746349903239:1822746349903789 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746349904659:1822746349905199 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746349905899:1822746349906679 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746349907079:1822746349907489 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746349908049:1822746349908319 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746349908769:1822746349909939 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746349910359:1822746352275374 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746352899378:1822746352899968 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746352902078:1822746352902688 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746359340749:1822746359342339 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746359357889:1822746359358429 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746359361359:1822746359361889 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746359364289:1822746359365359 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746359365749:1822746359366159 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746359366819:1822746359367669 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746359970763:1822746359971223 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746359972363:1822746359974593 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746359975073:1822746361397562 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746361398092:1822746361398532 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746361399992:1822746361400522 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746361403222:1822746361403892 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746361420142:1822746361420682 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746361424002:1822746361424542 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746361431402:1822746361432122 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 8 +1822746361433242:1822746361433552 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 8 +1822746361434522:1822746361437102 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746361437742:1822746361438052 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746361439132:1822746361439942 116414:116414 hsa_signal_store_relaxed(, 8) = void +1822746361442152:1822746361442692 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746361454292:1822746361454822 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746361457162:1822746361457692 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746361458912:1822746361459442 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746361459842:1822746361460122 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 9 +1822746361460522:1822746361460802 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 8 +1822746361461402:1822746361461672 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746361462072:1822746361462522 116414:116414 hsa_signal_store_relaxed(, 9) = void +1822746361463972:1822746362703270 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746362710080:1822746362710660 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746362712160:1822746362717040 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746362717460:1822746362717780 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746362720110:1822746362721180 116414:116414 hsa_signal_destroy() = 0 +1822746362722150:1822746362722470 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746362722940:1822746362723240 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746362724180:1822746362724520 116414:116414 hsa_signal_destroy() = 0 +1822746362725600:1822746362726150 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746362727050:1822746362727590 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746362728330:1822746362728730 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746362729140:1822746362729550 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746362730030:1822746362730300 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746362730770:1822746362731920 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746362732340:1822746365120845 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746365740689:1822746365741279 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746365743089:1822746365743629 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746372198881:1822746372200051 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746372215221:1822746372215761 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746372218321:1822746372218851 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746372221251:1822746372222161 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746372222551:1822746372222961 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746372223611:1822746372224781 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746372834235:1822746372834685 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746372835815:1822746372838805 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746372839295:1822746374262924 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746374263324:1822746374263754 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746374265384:1822746374265924 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746374268584:1822746374269124 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746374284274:1822746374284824 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746374297244:1822746374297774 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746374305034:1822746374305754 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 10 +1822746374306664:1822746374307104 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 10 +1822746374308064:1822746374310714 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746374311364:1822746374311684 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746374312755:1822746374313575 116414:116414 hsa_signal_store_relaxed(, 10) = void +1822746374315915:1822746374316455 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746374320235:1822746374320775 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746374323055:1822746374323595 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746374324675:1822746374325295 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746374325685:1822746374325965 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 11 +1822746374326365:1822746374326645 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 10 +1822746374327255:1822746374327525 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746374327925:1822746374328375 116414:116414 hsa_signal_store_relaxed(, 11) = void +1822746374330325:1822746375589673 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746375594213:1822746375595033 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746375596593:1822746375601043 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746375601523:1822746375601833 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746375604023:1822746375605133 116414:116414 hsa_signal_destroy() = 0 +1822746375606193:1822746375606503 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746375606913:1822746375607223 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746375608153:1822746375608503 116414:116414 hsa_signal_destroy() = 0 +1822746375609453:1822746375610003 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746375610883:1822746375611413 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746375612263:1822746375612603 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746375612993:1822746375613413 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746375613883:1822746375614163 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746375614603:1822746375615783 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746375619093:1822746377966288 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746378591361:1822746378591931 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746378593651:1822746378594181 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746384657490:1822746384658760 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746384674680:1822746384675220 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746384677600:1822746384678130 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746384680500:1822746384681410 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746384681810:1822746384682240 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746384682900:1822746384683810 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746385288884:1822746385289324 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746385290844:1822746385293524 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746385294054:1822746386716053 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746386716463:1822746386716893 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746386717893:1822746386718433 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746386720633:1822746386721163 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746386737714:1822746386738254 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746386741504:1822746386742034 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746386749214:1822746386749954 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 12 +1822746386750694:1822746386751304 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 12 +1822746386752294:1822746386754914 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746386755564:1822746386755874 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746386756934:1822746386757734 116414:116414 hsa_signal_store_relaxed(, 12) = void +1822746386760264:1822746386760794 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746386764884:1822746386765464 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746386767694:1822746386768224 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746386769344:1822746386769934 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746386770394:1822746386770664 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 13 +1822746386771124:1822746386771404 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 12 +1822746386772234:1822746386772504 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746386782684:1822746386783144 116414:116414 hsa_signal_store_relaxed(, 13) = void +1822746386784984:1822746388043302 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746388047662:1822746388048242 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746388049822:1822746388054152 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746388054562:1822746388054882 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746388056892:1822746388057802 116414:116414 hsa_signal_destroy() = 0 +1822746388058922:1822746388059242 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746388059662:1822746388059962 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746388060872:1822746388061212 116414:116414 hsa_signal_destroy() = 0 +1822746388062292:1822746388062842 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746388063712:1822746388064242 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746388065002:1822746388065422 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746388065822:1822746388066302 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746388066712:1822746388066982 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746388067422:1822746388068822 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746388069262:1822746390423067 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746391044831:1822746391045421 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746391046871:1822746391047491 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746397111369:1822746397112609 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746397127949:1822746397128489 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746397130549:1822746397131079 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746397133090:1822746397134050 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746397134440:1822746397134790 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746397135450:1822746397136480 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746397741433:1822746397741973 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746397743283:1822746397745943 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746397746483:1822746399169893 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746399170293:1822746399170723 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746399181333:1822746399181863 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746399183863:1822746399184403 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746399199703:1822746399200243 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746399203923:1822746399204453 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746399211793:1822746399212523 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 14 +1822746399213443:1822746399213883 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 14 +1822746399214863:1822746399217333 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746399217973:1822746399218273 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746399219343:1822746399220193 116414:116414 hsa_signal_store_relaxed(, 14) = void +1822746399222283:1822746399222823 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746399226883:1822746399227413 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746399229603:1822746399230143 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746399231203:1822746399231713 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746399232103:1822746399232383 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 15 +1822746399232773:1822746399233063 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 14 +1822746399233663:1822746399233943 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746399234333:1822746399234783 116414:116414 hsa_signal_store_relaxed(, 15) = void +1822746399236553:1822746400502871 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746400508131:1822746400508651 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746400510181:1822746400514691 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746400515111:1822746400515421 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746400517681:1822746400518731 116414:116414 hsa_signal_destroy() = 0 +1822746400519951:1822746400520261 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746400520741:1822746400521041 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746400522111:1822746400522461 116414:116414 hsa_signal_destroy() = 0 +1822746400523571:1822746400524121 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746400525031:1822746400525571 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746400526401:1822746400526741 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746400527141:1822746400527561 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746400530341:1822746400530631 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746400531071:1822746400532161 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746400532591:1822746402904457 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746403526381:1822746403526961 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746403528681:1822746403529211 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746409991931:1822746409993101 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746410007851:1822746410008401 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746410010731:1822746410011261 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746410013301:1822746410014251 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746410014651:1822746410015001 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746410015641:1822746410016451 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746410621655:1822746410622195 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746410623955:1822746410626565 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746410627055:1822746412050915 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746412051345:1822746412051785 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746412053475:1822746412054005 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746412055635:1822746412056165 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746412070975:1822746412071515 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746412074865:1822746412075395 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746412081965:1822746412082705 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 16 +1822746412083615:1822746412084085 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 16 +1822746412085125:1822746412088065 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746412088705:1822746412089005 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746412090275:1822746412091095 116414:116414 hsa_signal_store_relaxed(, 16) = void +1822746412093465:1822746412093995 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746412097995:1822746412098525 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746412100915:1822746412101465 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746412102615:1822746412103265 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746412117455:1822746412117745 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 17 +1822746412118145:1822746412118415 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 16 +1822746412119015:1822746412119285 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746412119685:1822746412120145 116414:116414 hsa_signal_store_relaxed(, 17) = void +1822746412121565:1822746413367893 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746413372523:1822746413373113 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746413374683:1822746413379043 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746413379513:1822746413379823 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746413381943:1822746413383083 116414:116414 hsa_signal_destroy() = 0 +1822746413384113:1822746413384553 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746413385023:1822746413385333 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746413386493:1822746413386833 116414:116414 hsa_signal_destroy() = 0 +1822746413387943:1822746413388493 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746413389373:1822746413389913 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746413390683:1822746413391013 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746413391413:1822746413391823 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746413392313:1822746413392583 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746413393033:1822746413394093 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746413394513:1822746415754108 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746416383892:1822746416384452 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746416386362:1822746416386982 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746422823203:1822746422824403 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746422839253:1822746422839783 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746422842493:1822746422843023 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746422845653:1822746422846713 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746422847103:1822746422847513 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746422848043:1822746422849323 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746423452647:1822746423453027 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746423464997:1822746423467517 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746423468047:1822746424891726 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746424892236:1822746424892556 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746424893646:1822746424894186 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746424895706:1822746424896236 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746424910256:1822746424910786 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746424914346:1822746424914886 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746424921576:1822746424922306 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 18 +1822746424923056:1822746424923526 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 18 +1822746424924496:1822746424927356 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746424928136:1822746424928446 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746424929476:1822746424930306 116414:116414 hsa_signal_store_relaxed(, 18) = void +1822746424932477:1822746424933017 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746424937287:1822746424937827 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746424940457:1822746424941027 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746424942137:1822746424942757 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746424943147:1822746424943427 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 19 +1822746424943827:1822746424944097 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 18 +1822746424944927:1822746424945197 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746424945597:1822746424946047 116414:116414 hsa_signal_store_relaxed(, 19) = void +1822746424947507:1822746426199955 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746426204975:1822746426205555 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746426207385:1822746426211655 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746426212135:1822746426212445 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746426214695:1822746426215755 116414:116414 hsa_signal_destroy() = 0 +1822746426216715:1822746426217035 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746426217505:1822746426217805 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746426218745:1822746426219125 116414:116414 hsa_signal_destroy() = 0 +1822746426220195:1822746426220745 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746426223955:1822746426224495 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746426225325:1822746426225915 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746426226325:1822746426226745 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746426227155:1822746426227425 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746426227885:1822746426229005 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746426229425:1822746428594270 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746429214304:1822746429214884 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746429216584:1822746429217204 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746435673065:1822746435674265 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746435689745:1822746435690285 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746435692895:1822746435693425 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746435695645:1822746435696575 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746435696965:1822746435697375 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746435697925:1822746435698845 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746436286849:1822746436287409 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746436288719:1822746436291459 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746436292089:1822746437715368 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746437715758:1822746437716188 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746437717138:1822746437717678 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746437719398:1822746437719928 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746437742578:1822746437743118 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746437746898:1822746437747438 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746437754548:1822746437755278 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 20 +1822746437756018:1822746437756648 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 20 +1822746437757958:1822746437760858 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746437761508:1822746437761818 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746437762828:1822746437763568 116414:116414 hsa_signal_store_relaxed(, 20) = void +1822746437765958:1822746437766498 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746437772928:1822746437773458 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746437775338:1822746437775878 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746437776918:1822746437777558 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746437777958:1822746437778228 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 21 +1822746437778628:1822746437778908 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 20 +1822746437779718:1822746437779998 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746437780398:1822746437780848 116414:116414 hsa_signal_store_relaxed(, 21) = void +1822746437782298:1822746439034726 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746439039286:1822746439039856 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746439041646:1822746439046056 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746439046536:1822746439046846 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746439049296:1822746439050346 116414:116414 hsa_signal_destroy() = 0 +1822746439051336:1822746439051646 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746439052116:1822746439052416 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746439053356:1822746439053696 116414:116414 hsa_signal_destroy() = 0 +1822746439054786:1822746439055336 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746439056086:1822746439056616 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746439057356:1822746439057766 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746439058166:1822746439058586 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746439059126:1822746439059396 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746439059846:1822746439061046 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746439061466:1822746441405782 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746442023906:1822746442024486 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746442026206:1822746442026816 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746448080144:1822746448081594 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746448096484:1822746448097024 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746448098994:1822746448099524 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746448102004:1822746448102944 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746448103404:1822746448103754 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746448114214:1822746448115444 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746448723798:1822746448724338 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746448725728:1822746448727798 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746448728768:1822746450152397 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746450152797:1822746450153217 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746450154137:1822746450154677 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746450156497:1822746450157027 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746450172417:1822746450172957 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746450176287:1822746450176827 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746450184797:1822746450185517 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 22 +1822746450186287:1822746450186907 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 22 +1822746450187877:1822746450190547 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746450191207:1822746450191517 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746450192537:1822746450193367 116414:116414 hsa_signal_store_relaxed(, 22) = void +1822746450195497:1822746450196037 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746450200057:1822746450200597 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746450202887:1822746450203447 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746450204747:1822746450205357 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746450205747:1822746450206027 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 23 +1822746450206417:1822746450206697 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 22 +1822746450207537:1822746450207817 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746450208207:1822746450208657 116414:116414 hsa_signal_store_relaxed(, 23) = void +1822746450210087:1822746451479335 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746451484065:1822746451484585 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746451486146:1822746451490376 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746451490846:1822746451491156 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746451493516:1822746451494636 116414:116414 hsa_signal_destroy() = 0 +1822746451495826:1822746451496266 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746451499926:1822746451500236 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746451501286:1822746451501626 116414:116414 hsa_signal_destroy() = 0 +1822746451502586:1822746451503136 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746451504076:1822746451504606 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746451505326:1822746451505736 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746451506136:1822746451506716 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746451507186:1822746451507466 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746451507906:1822746451509326 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746451509746:1822746453870811 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746454498785:1822746454499375 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746454501685:1822746454502265 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746460938235:1822746460939575 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746460955356:1822746460955886 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746460958746:1822746460959276 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746460961456:1822746460962346 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746460962746:1822746460963146 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746460963806:1822746460964726 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746461569219:1822746461569669 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746461570989:1822746461573730 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746461574260:1822746462996939 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746462997339:1822746462997769 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746462998519:1822746462999049 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746463001199:1822746463001729 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746463016459:1822746463016989 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746463020389:1822746463020919 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746463028209:1822746463028939 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 24 +1822746463029839:1822746463030289 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 24 +1822746463031389:1822746463034119 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746463034789:1822746463035099 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746463044759:1822746463045569 116414:116414 hsa_signal_store_relaxed(, 24) = void +1822746463048029:1822746463048589 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746463052539:1822746463053079 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746463054999:1822746463055529 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746463057049:1822746463057659 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746463058049:1822746463058329 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 25 +1822746463058719:1822746463059009 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 24 +1822746463059619:1822746463059899 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746463060289:1822746463060739 116414:116414 hsa_signal_store_relaxed(, 25) = void +1822746463062919:1822746464328607 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746464333087:1822746464333697 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746464335587:1822746464339807 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746464340227:1822746464340537 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746464342647:1822746464343967 116414:116414 hsa_signal_destroy() = 0 +1822746464344997:1822746464345457 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746464345927:1822746464346227 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746464347507:1822746464347847 116414:116414 hsa_signal_destroy() = 0 +1822746464348957:1822746464349507 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746464350407:1822746464350937 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746464351677:1822746464352087 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746464352487:1822746464352907 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746464353387:1822746464353667 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746464354107:1822746464355287 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746464355707:1822746466712873 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746467332347:1822746467332937 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746467334797:1822746467335367 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746473802268:1822746473803758 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746473819158:1822746473819698 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746473833038:1822746473833578 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746473835648:1822746473836428 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746473836828:1822746473837238 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746473838008:1822746473839238 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746474447122:1822746474447562 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746474449252:1822746474452232 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746474452872:1822746475876951 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746475877351:1822746475877771 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746475879091:1822746475879621 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746475881571:1822746475882111 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746475896441:1822746475896981 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746475900441:1822746475900971 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746475907681:1822746475908411 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 26 +1822746475909291:1822746475909741 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 26 +1822746475910721:1822746475913481 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746475914331:1822746475914641 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746475915691:1822746475916391 116414:116414 hsa_signal_store_relaxed(, 26) = void +1822746475918621:1822746475919161 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746475923351:1822746475923891 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746475926281:1822746475926861 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746475928111:1822746475928671 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746475929061:1822746475929341 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 27 +1822746475929731:1822746475930021 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 26 +1822746475930811:1822746475931091 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746475931481:1822746475931931 116414:116414 hsa_signal_store_relaxed(, 27) = void +1822746475933401:1822746477189829 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746477194659:1822746477195169 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746477196859:1822746477201119 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746477201589:1822746477201909 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746477207619:1822746477208689 116414:116414 hsa_signal_destroy() = 0 +1822746477210059:1822746477210369 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746477210839:1822746477211149 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746477212269:1822746477212609 116414:116414 hsa_signal_destroy() = 0 +1822746477213639:1822746477214179 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746477215139:1822746477215679 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746477216439:1822746477216859 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746477217269:1822746477217679 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746477218089:1822746477218369 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746477218839:1822746477219959 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746477220379:1822746479588804 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746480220649:1822746480221239 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746480223269:1822746480223809 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746486677019:1822746486678299 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746486693990:1822746486694530 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746486696690:1822746486697220 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746486699550:1822746486700450 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746486700860:1822746486701270 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746486701850:1822746486703050 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746487306013:1822746487306383 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746487307313:1822746487309873 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746487310443:1822746488731652 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746488732092:1822746488732862 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746488733762:1822746488734302 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746488735872:1822746488736402 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746488751003:1822746488751543 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746488755113:1822746488755643 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746488762583:1822746488763313 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 28 +1822746488771993:1822746488772333 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 28 +1822746488773313:1822746488775973 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746488776613:1822746488776923 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746488778043:1822746488778863 116414:116414 hsa_signal_store_relaxed(, 28) = void +1822746488781303:1822746488781833 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746488786023:1822746488786563 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746488788433:1822746488788973 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746488790223:1822746488791013 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746488791403:1822746488791683 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 29 +1822746488792083:1822746488792353 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 28 +1822746488793203:1822746488793473 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746488793883:1822746488794333 116414:116414 hsa_signal_store_relaxed(, 29) = void +1822746488795883:1822746490038851 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746490043731:1822746490044251 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746490045811:1822746490050361 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746490050841:1822746490051151 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746490053231:1822746490054281 116414:116414 hsa_signal_destroy() = 0 +1822746490055421:1822746490055861 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746490056271:1822746490056571 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746490057491:1822746490057831 116414:116414 hsa_signal_destroy() = 0 +1822746490058911:1822746490059461 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746490060351:1822746490060881 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746490061511:1822746490061851 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746490062241:1822746490062711 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746490063191:1822746490063461 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746490063901:1822746490065021 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746490065441:1822746492466946 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746493090220:1822746493090800 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746493095950:1822746493096480 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746499527742:1822746499528962 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746499543972:1822746499544512 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746499547892:1822746499548422 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746499550432:1822746499551512 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746499551902:1822746499552252 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746499552882:1822746499553992 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746500165456:1822746500165826 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746500167226:1822746500169796 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746500170276:1822746501592635 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746501593025:1822746501593455 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746501594355:1822746501594885 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746501597385:1822746501597915 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746501613405:1822746501613945 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746501617655:1822746501618185 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746501625015:1822746501625735 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 30 +1822746501626635:1822746501627085 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 30 +1822746501628045:1822746501630585 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746501631405:1822746501631705 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746501633015:1822746501633885 116414:116414 hsa_signal_store_relaxed(, 30) = void +1822746501636385:1822746501636915 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746501651355:1822746501651885 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746501654125:1822746501654665 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746501656005:1822746501656705 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746501657105:1822746501657385 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 31 +1822746501657775:1822746501658055 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 30 +1822746501658785:1822746501659055 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746501659445:1822746501659905 116414:116414 hsa_signal_store_relaxed(, 31) = void +1822746501661505:1822746502917473 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746502924833:1822746502925363 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746502926943:1822746502931463 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746502931873:1822746502932193 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746502934423:1822746502935463 116414:116414 hsa_signal_destroy() = 0 +1822746502936483:1822746502936803 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746502937283:1822746502937583 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746502938473:1822746502938813 116414:116414 hsa_signal_destroy() = 0 +1822746502939853:1822746502940413 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746502941333:1822746502941863 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746502942593:1822746502943053 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746502943453:1822746502943873 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746502944433:1822746502944703 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746502945143:1822746502946213 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746502946643:1822746505300748 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746505924502:1822746505925072 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746505926692:1822746505927272 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746512367123:1822746512368573 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746512383923:1822746512384463 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746512386583:1822746512387113 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746512389194:1822746512390154 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746512390554:1822746512390964 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746512391604:1822746512392464 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746513012867:1822746513013267 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746513014597:1822746513017267 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746513017787:1822746514439686 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746514440086:1822746514440516 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746514441596:1822746514442136 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746514443936:1822746514444476 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746514472076:1822746514472616 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746514475926:1822746514476456 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746514483067:1822746514483777 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 32 +1822746514484667:1822746514485427 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 32 +1822746514486437:1822746514488967 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746514489567:1822746514489877 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746514490937:1822746514491647 116414:116414 hsa_signal_store_relaxed(, 32) = void +1822746514494197:1822746514494727 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746514498817:1822746514499357 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746514501517:1822746514502047 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746514503157:1822746514503857 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746514504247:1822746514504527 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 33 +1822746514504927:1822746514505197 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 32 +1822746514505857:1822746514506127 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746514506527:1822746514506977 116414:116414 hsa_signal_store_relaxed(, 33) = void +1822746514508517:1822746515765095 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746515769915:1822746515770435 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746515771955:1822746515776015 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746515776425:1822746515776745 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746515779015:1822746515780215 116414:116414 hsa_signal_destroy() = 0 +1822746515781545:1822746515781855 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746515782335:1822746515782635 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746515783585:1822746515783935 116414:116414 hsa_signal_destroy() = 0 +1822746515785035:1822746515785585 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746515786485:1822746515787015 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746515787755:1822746515788165 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746515788565:1822746515788975 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746515789455:1822746515789735 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746515790185:1822746515791285 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746515795185:1822746518113970 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746518737354:1822746518737934 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746518739964:1822746518740544 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746525188405:1822746525189945 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746525204905:1822746525205445 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746525208675:1822746525209215 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746525211395:1822746525212295 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746525212695:1822746525213345 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746525214065:1822746525214935 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746525821369:1822746525821879 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746525823079:1822746525825569 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746525826099:1822746527252128 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746527252578:1822746527253048 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746527254108:1822746527254708 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746527256938:1822746527257548 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746527282838:1822746527283448 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746527287418:1822746527288018 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746527295058:1822746527296018 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 34 +1822746527297018:1822746527297388 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 34 +1822746527298448:1822746527301108 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746527301978:1822746527302328 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746527303428:1822746527304278 116414:116414 hsa_signal_store_relaxed(, 34) = void +1822746527306828:1822746527307438 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746527311768:1822746527312378 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746527315078:1822746527315688 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746527316808:1822746527317478 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746527317918:1822746527318238 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 35 +1822746527318688:1822746527318998 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 34 +1822746527321898:1822746527322228 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746527322668:1822746527323158 116414:116414 hsa_signal_store_relaxed(, 35) = void +1822746527325108:1822746528597586 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746528602576:1822746528603096 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746528604666:1822746528608766 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746528609186:1822746528609496 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746528611616:1822746528612646 116414:116414 hsa_signal_destroy() = 0 +1822746528613696:1822746528614136 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746528614556:1822746528614856 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746528615736:1822746528616076 116414:116414 hsa_signal_destroy() = 0 +1822746528617026:1822746528617576 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746528618466:1822746528618996 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746528619866:1822746528620276 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746528620676:1822746528621386 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746528621876:1822746528622146 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746528622586:1822746528623886 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746528624306:1822746530960481 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746531582165:1822746531582745 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746531584865:1822746531585435 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746538046067:1822746538047627 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746538062807:1822746538063337 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746538066057:1822746538066587 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746538068587:1822746538069807 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746538070207:1822746538070857 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746538071697:1822746538072947 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746538679701:1822746538680151 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746538681961:1822746538684381 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746538684921:1822746540107090 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746540107530:1822746540107960 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746540119530:1822746540120070 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746540122880:1822746540123410 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746540138600:1822746540139140 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746540142430:1822746540142970 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746540150120:1822746540150860 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 36 +1822746540151790:1822746540152400 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 36 +1822746540153590:1822746540156490 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746540157130:1822746540157440 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746540158590:1822746540159440 116414:116414 hsa_signal_store_relaxed(, 36) = void +1822746540161790:1822746540162330 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746540166480:1822746540167010 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746540168850:1822746540169390 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746540170610:1822746540171200 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746540171590:1822746540171870 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 37 +1822746540172260:1822746540172530 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 36 +1822746540173190:1822746540173470 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746540173860:1822746540174310 116414:116414 hsa_signal_store_relaxed(, 37) = void +1822746540176030:1822746541430198 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746541435168:1822746541435738 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746541437468:1822746541441928 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746541442348:1822746541442658 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746541444728:1822746541445678 116414:116414 hsa_signal_destroy() = 0 +1822746541446838:1822746541447168 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746541447638:1822746541447948 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746541448888:1822746541449228 116414:116414 hsa_signal_destroy() = 0 +1822746541450308:1822746541450858 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746541451758:1822746541452288 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746541453158:1822746541453518 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746541456438:1822746541456868 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746541457438:1822746541457708 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746541458148:1822746541459238 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746541459658:1822746543827983 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746544473537:1822746544474137 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746544475977:1822746544476517 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746550902088:1822746550903269 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746550917549:1822746550918089 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746550920669:1822746550921209 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746550923009:1822746550924089 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746550924479:1822746550924749 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746550925469:1822746550926599 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746551536173:1822746551536613 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746551538003:1822746551540703 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746551541243:1822746552964452 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746552965142:1822746552965462 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746552966332:1822746552966862 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746552969172:1822746552969702 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746552985212:1822746552985742 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746552989742:1822746552990272 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746552997292:1822746552998012 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 38 +1822746552998802:1822746552999282 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 38 +1822746553000242:1822746553002572 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746553003212:1822746553003522 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746553004622:1822746553005692 116414:116414 hsa_signal_store_relaxed(, 38) = void +1822746553008042:1822746553008602 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746553012512:1822746553013052 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746553015462:1822746553016002 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746553017202:1822746553017912 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746553026312:1822746553026592 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 39 +1822746553026982:1822746553027252 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 38 +1822746553027852:1822746553028122 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746553028512:1822746553028962 116414:116414 hsa_signal_store_relaxed(, 39) = void +1822746553030392:1822746554289340 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746554294130:1822746554294710 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746554296410:1822746554300630 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746554301040:1822746554301350 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746554303630:1822746554304820 116414:116414 hsa_signal_destroy() = 0 +1822746554306150:1822746554306520 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746554306940:1822746554307240 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746554308300:1822746554308640 116414:116414 hsa_signal_destroy() = 0 +1822746554309600:1822746554310160 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746554311060:1822746554311600 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746554312300:1822746554312720 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746554313110:1822746554313620 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746554314020:1822746554314300 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746554314770:1822746554315970 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746554316390:1822746556708046 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746557328420:1822746557329000 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746557331270:1822746557331800 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746563760070:1822746563761280 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746563777580:1822746563778120 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746563780450:1822746563780980 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746563783130:1822746563784050 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746563784460:1822746563784870 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746563785520:1822746563786420 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746564399844:1822746564400234 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746564411584:1822746564414045 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746564414595:1822746565840034 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746565840434:1822746565840864 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746565842194:1822746565842724 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746565844694:1822746565845294 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746565860394:1822746565860934 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746565864484:1822746565865014 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746565871984:1822746565872704 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 40 +1822746565873624:1822746565874084 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 40 +1822746565874934:1822746565877924 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746565878824:1822746565879134 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746565880134:1822746565880854 116414:116414 hsa_signal_store_relaxed(, 40) = void +1822746565883084:1822746565883614 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746565887644:1822746565888204 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746565890224:1822746565890764 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746565891954:1822746565892554 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746565892954:1822746565893234 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 41 +1822746565893624:1822746565893904 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 40 +1822746565894714:1822746565894994 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746565895384:1822746565895834 116414:116414 hsa_signal_store_relaxed(, 41) = void +1822746565897284:1822746567174782 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746567179382:1822746567179962 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746567181552:1822746567185592 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746567186062:1822746567186372 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746567188752:1822746567189802 116414:116414 hsa_signal_destroy() = 0 +1822746567190802:1822746567191242 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746567191712:1822746567192012 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746567192882:1822746567193222 116414:116414 hsa_signal_destroy() = 0 +1822746567196622:1822746567197172 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746567198082:1822746567198622 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746567199452:1822746567199942 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746567200352:1822746567200762 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746567201242:1822746567201512 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746567201962:1822746567203112 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746567203522:1822746569568617 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746570191151:1822746570191731 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746570193301:1822746570193921 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746576263830:1822746576265480 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746576281000:1822746576281540 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746576284710:1822746576285240 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746576287440:1822746576288630 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746576289020:1822746576289650 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746576290290:1822746576291190 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746576896794:1822746576897234 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746576898584:1822746576901224 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746576901694:1822746578326743 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746578327153:1822746578327583 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746578328923:1822746578329453 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746578331153:1822746578331693 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746578346973:1822746578347523 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746578351133:1822746578351673 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746578358923:1822746578359653 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 42 +1822746578360593:1822746578361193 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 42 +1822746578362323:1822746578364943 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746578365613:1822746578365923 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746578366953:1822746578367773 116414:116414 hsa_signal_store_relaxed(, 42) = void +1822746578370013:1822746578370553 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746578382473:1822746578383013 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746578385523:1822746578386053 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746578387293:1822746578388003 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746578388403:1822746578388683 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 43 +1822746578389073:1822746578389353 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 42 +1822746578389953:1822746578390243 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746578390644:1822746578391104 116414:116414 hsa_signal_store_relaxed(, 43) = void +1822746578392584:1822746579643632 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746579648472:1822746579649082 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746579650662:1822746579655192 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746579655672:1822746579655992 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746579658072:1822746579658972 116414:116414 hsa_signal_destroy() = 0 +1822746579659992:1822746579660442 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746579660922:1822746579661222 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746579662492:1822746579662872 116414:116414 hsa_signal_destroy() = 0 +1822746579663822:1822746579664362 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746579665252:1822746579665782 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746579666492:1822746579666902 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746579667302:1822746579667712 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746579668272:1822746579668542 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746579668982:1822746579670212 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746579670632:1822746582018377 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746582638841:1822746582639411 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746582641251:1822746582641821 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746589074281:1822746589076201 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746589092561:1822746589093101 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746589095241:1822746589095771 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746589098411:1822746589099371 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746589110022:1822746589110522 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746589111172:1822746589112652 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746589724146:1822746589724656 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746589725816:1822746589728536 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746589729006:1822746591151735 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746591152145:1822746591152445 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746591153375:1822746591153915 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746591156655:1822746591157245 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746591171915:1822746591172455 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746591175695:1822746591176225 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746591183155:1822746591183875 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 44 +1822746591184775:1822746591185225 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 44 +1822746591186555:1822746591189435 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746591190085:1822746591190395 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746591191445:1822746591192345 116414:116414 hsa_signal_store_relaxed(, 44) = void +1822746591194735:1822746591195275 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746591199145:1822746591199675 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746591201475:1822746591202035 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746591203345:1822746591204205 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746591204595:1822746591204875 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 45 +1822746591205275:1822746591205545 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 44 +1822746591206195:1822746591206475 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746591206865:1822746591207315 116414:116414 hsa_signal_store_relaxed(, 45) = void +1822746591208925:1822746592487673 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746592492063:1822746592492583 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746592494163:1822746592498373 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746592498843:1822746592499153 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746592501223:1822746592502353 116414:116414 hsa_signal_destroy() = 0 +1822746592503603:1822746592503983 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746592507733:1822746592508043 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746592508933:1822746592509283 116414:116414 hsa_signal_destroy() = 0 +1822746592510373:1822746592510933 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746592511843:1822746592512383 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746592513093:1822746592513613 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746592514023:1822746592514523 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746592514933:1822746592515203 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746592515653:1822746592516753 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746592517183:1822746594874429 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746595498293:1822746595498883 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746595500593:1822746595501213 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746601944633:1822746601946173 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746601961433:1822746601961973 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746601964443:1822746601964983 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746601967163:1822746601968223 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746601968613:1822746601969023 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746601970013:1822746601971383 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746602578307:1822746602578767 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746602580477:1822746602582987 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746602583777:1822746604009326 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746604009786:1822746604010216 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746604011377:1822746604011907 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746604014207:1822746604014747 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746604029557:1822746604030087 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746604033607:1822746604034137 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746604040617:1822746604041337 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 46 +1822746604042247:1822746604042687 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 46 +1822746604043697:1822746604046047 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746604055817:1822746604056137 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746604057517:1822746604058217 116414:116414 hsa_signal_store_relaxed(, 46) = void +1822746604060197:1822746604060747 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746604064557:1822746604065097 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746604067527:1822746604068067 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746604069457:1822746604070047 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746604070437:1822746604070717 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 47 +1822746604071107:1822746604071397 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 46 +1822746604071997:1822746604072277 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746604072667:1822746604073117 116414:116414 hsa_signal_store_relaxed(, 47) = void +1822746604074687:1822746605344665 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746605349355:1822746605349935 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746605351515:1822746605355925 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746605356405:1822746605356715 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746605358865:1822746605360015 116414:116414 hsa_signal_destroy() = 0 +1822746605361155:1822746605361595 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746605362015:1822746605362325 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746605363405:1822746605363745 116414:116414 hsa_signal_destroy() = 0 +1822746605364705:1822746605365265 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746605366155:1822746605366695 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746605367445:1822746605367905 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746605368305:1822746605368715 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746605369275:1822746605369545 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746605369995:1822746605371075 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746605371495:1822746607694020 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746608324664:1822746608325274 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746608327214:1822746608327754 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746614386082:1822746614387442 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746614402552:1822746614403102 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746614420793:1822746614421333 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746614423763:1822746614424883 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746614425283:1822746614425693 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746614426253:1822746614427583 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746615034897:1822746615035347 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746615036517:1822746615039187 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746615039707:1822746616463426 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746616463886:1822746616464346 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746616465086:1822746616465616 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746616468006:1822746616468536 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746616483376:1822746616483916 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746616487356:1822746616487886 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746616494296:1822746616495016 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 48 +1822746616495916:1822746616496456 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 48 +1822746616497556:1822746616500286 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746616500916:1822746616501226 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746616502276:1822746616503076 116414:116414 hsa_signal_store_relaxed(, 48) = void +1822746616505296:1822746616505826 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746616509786:1822746616510316 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746616512636:1822746616513196 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746616514376:1822746616515086 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746616515476:1822746616515756 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 49 +1822746616516156:1822746616516426 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 48 +1822746616517056:1822746616517326 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746616517716:1822746616518166 116414:116414 hsa_signal_store_relaxed(, 49) = void +1822746616519916:1822746617793764 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746617798924:1822746617799544 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746617801134:1822746617805334 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746617809144:1822746617809574 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746617811794:1822746617812854 116414:116414 hsa_signal_destroy() = 0 +1822746617813964:1822746617814584 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746617814994:1822746617815304 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746617816254:1822746617816584 116414:116414 hsa_signal_destroy() = 0 +1822746617817574:1822746617818114 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746617819024:1822746617819554 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746617820354:1822746617820694 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746617821094:1822746617821784 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746617822194:1822746617822464 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746617822914:1822746617824384 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746617824804:1822746620196770 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746620821344:1822746620821924 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746620824164:1822746620824784 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746627257904:1822746627259094 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746627274375:1822746627274915 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746627278165:1822746627278695 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746627280835:1822746627281995 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746627282385:1822746627282805 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746627283455:1822746627284255 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746627894398:1822746627894838 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746627896278:1822746627899128 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746627899668:1822746629323398 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746629323838:1822746629324278 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746629325428:1822746629325968 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746629328138:1822746629328668 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746629343248:1822746629343788 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746629347338:1822746629347868 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746629354818:1822746629355548 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 50 +1822746629364918:1822746629365368 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 50 +1822746629366348:1822746629368828 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746629369748:1822746629370058 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746629371068:1822746629371998 116414:116414 hsa_signal_store_relaxed(, 50) = void +1822746629374158:1822746629374718 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746629378688:1822746629379218 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746629381428:1822746629381968 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746629383138:1822746629383768 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746629384158:1822746629384438 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 51 +1822746629384828:1822746629385108 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 50 +1822746629385718:1822746629385998 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746629386388:1822746629386838 116414:116414 hsa_signal_store_relaxed(, 51) = void +1822746629388258:1822746630659826 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746630664516:1822746630665086 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746630666596:1822746630670806 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746630671286:1822746630671596 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746630674086:1822746630675256 116414:116414 hsa_signal_destroy() = 0 +1822746630676696:1822746630677086 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746630677556:1822746630677856 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746630678886:1822746630679226 116414:116414 hsa_signal_destroy() = 0 +1822746630680246:1822746630680796 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746630681726:1822746630682256 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746630682876:1822746630683206 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746630683606:1822746630684016 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746630684496:1822746630684766 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746630685216:1822746630686296 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746630686716:1822746633065962 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746633692476:1822746633693056 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746633697606:1822746633698196 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746639735804:1822746639737084 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746639751994:1822746639752534 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746639755484:1822746639756014 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746639758044:1822746639759174 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746639759564:1822746639759914 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746639760504:1822746639761444 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746640374108:1822746640374488 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746640375758:1822746640378378 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746640378908:1822746641804707 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746641805107:1822746641805537 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746641806737:1822746641807267 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746641809497:1822746641810027 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746641832097:1822746641832637 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746641836087:1822746641836617 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746641843567:1822746641844287 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 52 +1822746641845317:1822746641845757 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 52 +1822746641846717:1822746641849367 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746641850027:1822746641850327 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746641851347:1822746641852167 116414:116414 hsa_signal_store_relaxed(, 52) = void +1822746641854187:1822746641854717 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746641858887:1822746641859417 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746641861667:1822746641862197 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746641863397:1822746641864007 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746641864397:1822746641864677 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 53 +1822746641865067:1822746641865337 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 52 +1822746641865987:1822746641866257 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746641866647:1822746641867097 116414:116414 hsa_signal_store_relaxed(, 53) = void +1822746641870807:1822746643124045 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746643129115:1822746643129635 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746643131215:1822746643135915 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746643136385:1822746643136695 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746643138755:1822746643139995 116414:116414 hsa_signal_destroy() = 0 +1822746643141135:1822746643141575 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746643142045:1822746643142345 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746643143296:1822746643143636 116414:116414 hsa_signal_destroy() = 0 +1822746643144706:1822746643145256 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746643146146:1822746643146676 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746643147406:1822746643147736 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746643148136:1822746643148556 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746643149026:1822746643149296 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746643149746:1822746643150896 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746643151316:1822746645470540 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746646091314:1822746646091894 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746646093634:1822746646094214 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746652531326:1822746652532706 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746652547876:1822746652548416 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746652551146:1822746652551676 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746652554056:1822746652554976 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746652555456:1822746652555866 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746652556516:1822746652557396 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746653166340:1822746653167060 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746653168300:1822746653170950 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746653171490:1822746654594819 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746654595219:1822746654595719 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746654597099:1822746654597629 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746654599599:1822746654600139 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746654625809:1822746654626349 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746654629729:1822746654630259 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746654637229:1822746654638149 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 54 +1822746654639099:1822746654639539 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 54 +1822746654640679:1822746654643609 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746654644329:1822746654644629 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746654645989:1822746654646819 116414:116414 hsa_signal_store_relaxed(, 54) = void +1822746654648799:1822746654649329 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746654653819:1822746654654349 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746654656199:1822746654656729 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746654657889:1822746654658669 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746654659059:1822746654659339 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 55 +1822746654659729:1822746654660009 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 54 +1822746654660829:1822746654661099 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746654661509:1822746654661949 116414:116414 hsa_signal_store_relaxed(, 55) = void +1822746654663549:1822746655926857 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746655931767:1822746655932547 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746655934117:1822746655938477 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746655938957:1822746655939277 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746655941467:1822746655942897 116414:116414 hsa_signal_destroy() = 0 +1822746655944027:1822746655944357 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746655944827:1822746655945137 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746655946177:1822746655946517 116414:116414 hsa_signal_destroy() = 0 +1822746655947587:1822746655948137 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746655949037:1822746655949567 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746655950357:1822746655950777 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746655951177:1822746655951587 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746655952077:1822746655952347 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746655955137:1822746655956267 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746655956707:1822746658290032 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746658915416:1822746658915996 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746658917696:1822746658918236 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746665358737:1822746665360097 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746665374977:1822746665375527 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746665377997:1822746665378537 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746665380517:1822746665381447 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746665381847:1822746665382197 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746665383017:1822746665383717 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746665991281:1822746665991841 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746665992981:1822746665995691 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746665996221:1822746667420900 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746667421310:1822746667421730 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746667422850:1822746667423380 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746667424930:1822746667425460 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746667439880:1822746667440420 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746667444000:1822746667444540 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746667450920:1822746667451840 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 56 +1822746667452590:1822746667453350 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 56 +1822746667454340:1822746667457050 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746667457680:1822746667457990 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746667459010:1822746667459820 116414:116414 hsa_signal_store_relaxed(, 56) = void +1822746667462310:1822746667462850 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746667466520:1822746667467060 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746667468670:1822746667469200 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746667470910:1822746667471520 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746667471920:1822746667472220 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 57 +1822746667472640:1822746667472940 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 56 +1822746667482650:1822746667482930 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746667483320:1822746667483780 116414:116414 hsa_signal_store_relaxed(, 57) = void +1822746667485200:1822746668743938 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746668749078:1822746668749598 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746668751038:1822746668755308 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746668755718:1822746668756038 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746668758288:1822746668759358 116414:116414 hsa_signal_destroy() = 0 +1822746668760538:1822746668760928 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746668761408:1822746668761708 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746668762798:1822746668763139 116414:116414 hsa_signal_destroy() = 0 +1822746668764299:1822746668764849 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746668765889:1822746668766419 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746668767109:1822746668767519 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746668767919:1822746668768339 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746668768949:1822746668769229 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746668769669:1822746668770799 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746668771219:1822746671117194 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746671737808:1822746671738388 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746671740248:1822746671740778 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746678186569:1822746678187769 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746678202569:1822746678203109 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746678206069:1822746678206599 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746678208999:1822746678209889 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746678210279:1822746678210909 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746678211809:1822746678212699 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746678818183:1822746678818663 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746678820023:1822746678822933 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746678823463:1822746680248062 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746680258082:1822746680258542 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746680259832:1822746680260362 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746680262252:1822746680262792 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746680277542:1822746680278082 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746680281582:1822746680282112 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746680289133:1822746680289863 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 58 +1822746680290753:1822746680291203 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 58 +1822746680292173:1822746680294933 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746680295573:1822746680295883 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746680296943:1822746680297773 116414:116414 hsa_signal_store_relaxed(, 58) = void +1822746680300133:1822746680300673 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746680304613:1822746680305153 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746680307543:1822746680308083 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746680309333:1822746680309933 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746680310323:1822746680310603 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 59 +1822746680311003:1822746680311273 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 58 +1822746680311883:1822746680312153 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746680312543:1822746680313003 116414:116414 hsa_signal_store_relaxed(, 59) = void +1822746680314443:1822746681576751 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746681581821:1822746681582391 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746681583881:1822746681588181 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746681588661:1822746681588971 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746681591291:1822746681592341 116414:116414 hsa_signal_destroy() = 0 +1822746681593441:1822746681593891 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746681594361:1822746681594661 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746681595791:1822746681596131 116414:116414 hsa_signal_destroy() = 0 +1822746681597341:1822746681597891 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746681598781:1822746681599311 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746681600021:1822746681600431 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746681603041:1822746681603541 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746681604151:1822746681604421 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746681604871:1822746681606031 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746681606461:1822746683967395 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746684595879:1822746684596469 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746684598349:1822746684598879 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746691018881:1822746691020041 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746691034891:1822746691035431 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746691038111:1822746691038641 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746691041021:1822746691041931 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746691042391:1822746691042941 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746691043631:1822746691044651 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746691651495:1822746691651945 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746691653085:1822746691655985 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746691656515:1822746693078814 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746693079254:1822746693079564 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746693080514:1822746693081054 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746693083074:1822746693083604 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746693098934:1822746693099474 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746693103024:1822746693103554 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746693110604:1822746693111334 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 60 +1822746693112114:1822746693112724 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 60 +1822746693113684:1822746693116094 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746693116674:1822746693116984 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746693118064:1822746693118884 116414:116414 hsa_signal_store_relaxed(, 60) = void +1822746693121024:1822746693121554 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746693125534:1822746693126074 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746693128184:1822746693128724 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746693138894:1822746693139614 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746693140004:1822746693140274 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 61 +1822746693140674:1822746693140944 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 60 +1822746693141534:1822746693141814 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746693142204:1822746693142654 116414:116414 hsa_signal_store_relaxed(, 61) = void +1822746693144294:1822746694398722 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746694404652:1822746694405352 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746694407262:1822746694411722 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746694412132:1822746694412442 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746694414762:1822746694415882 116414:116414 hsa_signal_destroy() = 0 +1822746694416872:1822746694417332 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746694417752:1822746694418052 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746694418942:1822746694419282 116414:116414 hsa_signal_destroy() = 0 +1822746694420372:1822746694420922 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746694421832:1822746694422372 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746694423082:1822746694423412 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746694423812:1822746694424232 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746694424712:1822746694424982 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746694425432:1822746694426582 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746694427002:1822746696790397 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746697413431:1822746697414011 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746697415731:1822746697416311 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746703837982:1822746703839232 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746703854402:1822746703854942 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746703857932:1822746703858472 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746703860432:1822746703861402 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746703861802:1822746703862072 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746703862722:1822746703863602 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746704484836:1822746704485416 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746704496636:1822746704499366 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746704500076:1822746705923615 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746705924015:1822746705924325 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746705925235:1822746705925765 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746705927815:1822746705928415 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746705944065:1822746705944605 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746705948265:1822746705948795 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746705956305:1822746705957035 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 62 +1822746705957965:1822746705958415 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 62 +1822746705959525:1822746705962476 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746705963126:1822746705963436 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746705964516:1822746705965346 116414:116414 hsa_signal_store_relaxed(, 62) = void +1822746705967636:1822746705968166 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746705974486:1822746705975016 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746705977586:1822746705978126 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746705979266:1822746705979906 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746705980306:1822746705980586 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 63 +1822746705980986:1822746705981266 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 62 +1822746705982126:1822746705982396 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746705982806:1822746705983256 116414:116414 hsa_signal_store_relaxed(, 63) = void +1822746705984836:1822746707245173 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746707250344:1822746707250864 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746707252454:1822746707256804 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746707257224:1822746707257534 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746707259584:1822746707260714 116414:116414 hsa_signal_destroy() = 0 +1822746707261964:1822746707262344 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746707262814:1822746707263114 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746707264114:1822746707264454 116414:116414 hsa_signal_destroy() = 0 +1822746707270784:1822746707271334 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746707272304:1822746707272834 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746707273904:1822746707274314 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746707274714:1822746707275124 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746707275604:1822746707275874 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746707276324:1822746707277404 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746707277814:1822746709639869 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746710262693:1822746710263273 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746710265283:1822746710265863 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746716756714:1822746716758214 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746716773575:1822746716774185 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746716776615:1822746716777215 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746716779315:1822746716780285 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746716780725:1822746716781115 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746716781775:1822746716782815 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746717381248:1822746717381818 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746717383408:1822746717386378 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746717386968:1822746718813308 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746718813718:1822746718814138 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746718815288:1822746718815818 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746718817418:1822746718817948 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746718832208:1822746718832738 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746718836108:1822746718836648 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746718842608:1822746718843418 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 64 +1822746718844168:1822746718844938 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 64 +1822746718846008:1822746718848428 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746718849018:1822746718849318 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746718850358:1822746718851178 116414:116414 hsa_signal_store_relaxed(, 64) = void +1822746718861408:1822746718861958 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746718865768:1822746718866308 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746718868148:1822746718868678 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746718869988:1822746718870598 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746718870988:1822746718871268 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 65 +1822746718871668:1822746718871948 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 64 +1822746718872548:1822746718872828 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746718873238:1822746718873688 116414:116414 hsa_signal_store_relaxed(, 65) = void +1822746718875208:1822746720136216 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746720140456:1822746720140986 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746720142566:1822746720146916 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746720147406:1822746720147716 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746720149836:1822746720150756 116414:116414 hsa_signal_destroy() = 0 +1822746720151866:1822746720152316 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746720152736:1822746720153036 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746720154066:1822746720154416 116414:116414 hsa_signal_destroy() = 0 +1822746720155436:1822746720155986 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746720156746:1822746720157286 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746720157976:1822746720158436 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746720158826:1822746720159256 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746720159816:1822746720160096 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746720160536:1822746720161566 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746720161986:1822746722483951 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746723103375:1822746723103965 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746723105935:1822746723106505 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746729578296:1822746729579826 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746729595516:1822746729596046 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746729598666:1822746729599196 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746729601386:1822746729602296 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746729613226:1822746729613736 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746729614376:1822746729615396 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746730220420:1822746730220780 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746730221940:1822746730224230 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746730224760:1822746731648649 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746731649049:1822746731649359 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746731650709:1822746731651239 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746731653309:1822746731653849 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746731668409:1822746731668939 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746731672369:1822746731672899 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746731680340:1822746731681060 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 66 +1822746731681810:1822746731682420 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 66 +1822746731683480:1822746731686270 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746731687060:1822746731687360 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746731688390:1822746731689200 116414:116414 hsa_signal_store_relaxed(, 66) = void +1822746731691770:1822746731692300 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746731696130:1822746731696670 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746731698640:1822746731699180 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746731700760:1822746731701360 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746731701750:1822746731702030 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 67 +1822746731702430:1822746731702710 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 66 +1822746731703310:1822746731703590 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746731703990:1822746731704440 116414:116414 hsa_signal_store_relaxed(, 67) = void +1822746731705990:1822746732968668 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746732973188:1822746732973768 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746732975378:1822746732979428 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746732979898:1822746732980208 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746732982538:1822746732983458 116414:116414 hsa_signal_destroy() = 0 +1822746732987348:1822746732987898 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746732988308:1822746732988608 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746732989488:1822746732989838 116414:116414 hsa_signal_destroy() = 0 +1822746732990938:1822746732991498 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746732992398:1822746732992928 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746732993658:1822746732994278 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746732994668:1822746732995088 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746732995488:1822746732995768 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746732996208:1822746732997308 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746732997728:1822746735349663 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746735976047:1822746735976637 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746735978247:1822746735978777 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746742045776:1822746742047656 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746742063606:1822746742064146 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746742066616:1822746742067146 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746742069216:1822746742070126 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746742070596:1822746742071226 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746742071866:1822746742073106 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746742677530:1822746742677970 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746742679690:1822746742682100 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746742682600:1822746744104179 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746744104609:1822746744105049 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746744106549:1822746744107089 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746744108779:1822746744109319 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746744132079:1822746744132619 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746744136219:1822746744136759 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746744143339:1822746744144049 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 68 +1822746744145019:1822746744145619 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 68 +1822746744146649:1822746744149309 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746744151869:1822746744152179 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746744153269:1822746744154099 116414:116414 hsa_signal_store_relaxed(, 68) = void +1822746744156559:1822746744157089 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746744161109:1822746744161639 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746744163719:1822746744164249 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746744165539:1822746744166149 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746744166549:1822746744166819 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 69 +1822746744167219:1822746744167499 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 68 +1822746744168269:1822746744168539 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746744168939:1822746744169389 116414:116414 hsa_signal_store_relaxed(, 69) = void +1822746744171319:1822746745432787 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746745437377:1822746745437897 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746745439447:1822746745444127 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746745444547:1822746745444857 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746745447517:1822746745448567 116414:116414 hsa_signal_destroy() = 0 +1822746745449757:1822746745450157 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746745450627:1822746745450937 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746745452067:1822746745452407 116414:116414 hsa_signal_destroy() = 0 +1822746745453567:1822746745454117 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746745455017:1822746745455557 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746745456407:1822746745456747 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746745457137:1822746745457557 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746745458037:1822746745458317 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746745458757:1822746745459857 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746745460297:1822746747819222 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746748465856:1822746748466466 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746748468546:1822746748469126 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746754526055:1822746754527215 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746754552505:1822746754553045 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746754556435:1822746754556965 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746754559265:1822746754560165 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746754560555:1822746754561205 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746754562015:1822746754562875 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746755168449:1822746755168819 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746755170379:1822746755172849 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746755173379:1822746756598178 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746756598648:1822746756599158 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746756600248:1822746756600778 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746756602708:1822746756603238 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746756619258:1822746756619798 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746756623758:1822746756624298 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746756631708:1822746756632418 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 70 +1822746756633348:1822746756633788 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 70 +1822746756634638:1822746756637358 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746756638218:1822746756638528 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746756639588:1822746756640308 116414:116414 hsa_signal_store_relaxed(, 70) = void +1822746756642738:1822746756643298 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746756647268:1822746756647798 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746756649948:1822746756650478 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746756651718:1822746756652348 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746756652738:1822746756653018 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 71 +1822746756653408:1822746756653688 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 70 +1822746756654278:1822746756654558 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746756654948:1822746756655398 116414:116414 hsa_signal_store_relaxed(, 71) = void +1822746756657188:1822746757917116 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746757921666:1822746757922246 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746757923966:1822746757928366 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746757932066:1822746757932406 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746757934906:1822746757935846 116414:116414 hsa_signal_destroy() = 0 +1822746757936986:1822746757937426 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746757937896:1822746757938206 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746757939276:1822746757939626 116414:116414 hsa_signal_destroy() = 0 +1822746757940586:1822746757941146 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746757942086:1822746757942616 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746757943396:1822746757943866 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746757944276:1822746757944686 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746757945256:1822746757945526 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746757945986:1822746757947166 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746757947596:1822746760327551 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746760950165:1822746760950775 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746760952685:1822746760953315 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746767380777:1822746767382127 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746767397527:1822746767398067 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746767400527:1822746767401057 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746767403067:1822746767404167 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746767404557:1822746767405187 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746767405827:1822746767406697 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746768026721:1822746768027231 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746768028791:1822746768031241 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746768031691:1822746769454000 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746769454400:1822746769454830 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746769455810:1822746769456340 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746769458610:1822746769459150 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746769474920:1822746769475480 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746769479030:1822746769479560 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746769495810:1822746769496540 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 72 +1822746769497450:1822746769497900 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 72 +1822746769498920:1822746769501560 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746769502230:1822746769502560 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746769504140:1822746769504840 116414:116414 hsa_signal_store_relaxed(, 72) = void +1822746769507210:1822746769507750 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746769512460:1822746769512990 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746769514660:1822746769515200 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746769516480:1822746769517220 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746769517610:1822746769517890 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 73 +1822746769518280:1822746769518560 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 72 +1822746769519170:1822746769519440 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746769519830:1822746769520280 116414:116414 hsa_signal_store_relaxed(, 73) = void +1822746769521810:1822746770780559 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746770785319:1822746770785879 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746770787429:1822746770791759 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746770792239:1822746770792549 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746770794659:1822746770796109 116414:116414 hsa_signal_destroy() = 0 +1822746770797139:1822746770797599 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746770798069:1822746770798379 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746770799499:1822746770799839 116414:116414 hsa_signal_destroy() = 0 +1822746770801009:1822746770801559 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746770802469:1822746770803009 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746770803729:1822746770804149 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746770804549:1822746770805119 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746770805529:1822746770805799 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746770806249:1822746770807469 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746770807889:1822746773192984 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746773811888:1822746773812478 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746773817938:1822746773818478 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746780262889:1822746780264379 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746780280029:1822746780280569 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746780283849:1822746780284389 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746780286459:1822746780287619 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746780288009:1822746780288419 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746780289079:1822746780289929 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746780896513:1822746780896953 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746780898323:1822746780900833 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746780901373:1822746782326702 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746782327102:1822746782327532 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746782328622:1822746782329162 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746782331322:1822746782331852 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746782354012:1822746782354552 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746782358192:1822746782358732 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746782365462:1822746782366182 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 74 +1822746782367152:1822746782367472 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 74 +1822746782368432:1822746782371252 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746782371912:1822746782372222 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746782373312:1822746782374122 116414:116414 hsa_signal_store_relaxed(, 74) = void +1822746782376252:1822746782376792 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746782380652:1822746782381192 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746782383962:1822746782384502 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746782385812:1822746782386522 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746782386922:1822746782387202 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 75 +1822746782387592:1822746782387882 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 74 +1822746782388472:1822746782388742 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746782389142:1822746782389592 116414:116414 hsa_signal_store_relaxed(, 75) = void +1822746782393272:1822746783657780 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746783662530:1822746783663440 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746783665031:1822746783669631 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746783670111:1822746783670411 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746783672541:1822746783673661 116414:116414 hsa_signal_destroy() = 0 +1822746783674801:1822746783675201 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746783675671:1822746783675971 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746783677151:1822746783677491 116414:116414 hsa_signal_destroy() = 0 +1822746783678581:1822746783679131 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746783680041:1822746783680571 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746783681371:1822746783681701 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746783682101:1822746783682511 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746783682931:1822746783683201 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746783683651:1822746783684861 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746783685271:1822746786031285 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746786656249:1822746786656829 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746786658739:1822746786659309 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746793106700:1822746793107870 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746793123070:1822746793123610 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746793126300:1822746793126830 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746793128981:1822746793129901 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746793130291:1822746793130701 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746793131341:1822746793132081 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746793741214:1822746793741724 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746793742954:1822746793746184 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746793746654:1822746795168774 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746795169184:1822746795169604 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746795170584:1822746795171114 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746795183214:1822746795183754 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746795199094:1822746795199634 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746795203544:1822746795204084 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746795210484:1822746795211224 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 76 +1822746795211994:1822746795212604 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 76 +1822746795213734:1822746795216464 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746795217244:1822746795217584 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746795218604:1822746795219454 116414:116414 hsa_signal_store_relaxed(, 76) = void +1822746795221414:1822746795221954 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746795226094:1822746795226624 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746795228734:1822746795229274 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746795230504:1822746795231114 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746795231514:1822746795231794 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 77 +1822746795232184:1822746795232464 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 76 +1822746795233074:1822746795233344 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746795233744:1822746795234194 116414:116414 hsa_signal_store_relaxed(, 77) = void +1822746795235674:1822746796492512 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746796497332:1822746796497912 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746796499482:1822746796503572 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746796504052:1822746796504362 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746796506782:1822746796507842 116414:116414 hsa_signal_destroy() = 0 +1822746796509012:1822746796509452 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746796509922:1822746796510232 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746796511212:1822746796511562 116414:116414 hsa_signal_destroy() = 0 +1822746796512682:1822746796513232 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746796514142:1822746796514672 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746796515392:1822746796515812 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746796516212:1822746796516632 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746796517112:1822746796517392 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746796520142:1822746796521442 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746796521882:1822746798851377 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746799483181:1822746799483841 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746799485891:1822746799486551 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746805731051:1822746805732541 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746805748601:1822746805749141 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746805751861:1822746805752401 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746805754581:1822746805755501 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746805755891:1822746805756361 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746805757011:1822746805758401 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746806367385:1822746806367895 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746806369645:1822746806372055 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746806372555:1822746807820344 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746807820744:1822746807821174 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746807822594:1822746807823134 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746807825384:1822746807825914 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746807840994:1822746807841534 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746807845024:1822746807845564 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746807853474:1822746807854204 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 78 +1822746807855094:1822746807855534 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 78 +1822746807856524:1822746807859244 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746807859894:1822746807860194 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746807861214:1822746807862044 116414:116414 hsa_signal_store_relaxed(, 78) = void +1822746807864354:1822746807864884 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746807868864:1822746807869444 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746807871445:1822746807871985 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746807873245:1822746807873935 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746807874325:1822746807874605 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 79 +1822746807888265:1822746807888545 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 78 +1822746807889225:1822746807889495 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746807889905:1822746807890365 116414:116414 hsa_signal_store_relaxed(, 79) = void +1822746807891875:1822746809134712 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746809139502:1822746809140022 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746809141602:1822746809146162 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746809146642:1822746809146952 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746809149202:1822746809150112 116414:116414 hsa_signal_destroy() = 0 +1822746809151252:1822746809151652 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746809152133:1822746809152433 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746809153503:1822746809153883 116414:116414 hsa_signal_destroy() = 0 +1822746809154853:1822746809155403 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746809156293:1822746809156833 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746809157553:1822746809157893 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746809158293:1822746809158703 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746809159183:1822746809159463 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746809159903:1822746809161013 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746809161443:1822746811520807 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746812160031:1822746812160611 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746812162381:1822746812162921 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746818654253:1822746818655703 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746818671863:1822746818672473 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746818675103:1822746818675703 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746818677923:1822746818679043 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746818679493:1822746818679883 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746818680483:1822746818681503 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746819275267:1822746819275787 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746819277117:1822746819279767 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746819280387:1822746820703026 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746820713396:1822746820713716 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746820714896:1822746820715426 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746820717506:1822746820718036 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746820732796:1822746820733336 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746820736426:1822746820736966 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746820742956:1822746820743686 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 80 +1822746820744436:1822746820744956 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 80 +1822746820745936:1822746820748366 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746820748966:1822746820749276 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746820750566:1822746820751396 116414:116414 hsa_signal_store_relaxed(, 80) = void +1822746820753466:1822746820754006 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746820758236:1822746820758766 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746820760957:1822746820761497 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746820762547:1822746820763197 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746820763597:1822746820763877 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 81 +1822746820764277:1822746820764557 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 80 +1822746820765167:1822746820765447 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746820765847:1822746820766297 116414:116414 hsa_signal_store_relaxed(, 81) = void +1822746820767887:1822746822027925 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746822032095:1822746822032605 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746822034155:1822746822038335 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746822038805:1822746822039115 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746822041675:1822746822042745 116414:116414 hsa_signal_destroy() = 0 +1822746822043935:1822746822044325 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746822044795:1822746822045105 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746822046125:1822746822046465 116414:116414 hsa_signal_destroy() = 0 +1822746822047545:1822746822048105 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746822048855:1822746822049385 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746822052395:1822746822052745 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746822053145:1822746822053555 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746822053965:1822746822054235 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746822054685:1822746822055715 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746822056155:1822746824422180 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746825041784:1822746825042364 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746825044174:1822746825044704 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746831155292:1822746831156632 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746831171193:1822746831171733 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746831174433:1822746831174973 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746831177083:1822746831178283 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746831178693:1822746831179043 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746831179683:1822746831180543 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746831786087:1822746831786447 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746831787497:1822746831790037 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746831790577:1822746833214316 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746833214836:1822746833215276 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746833216396:1822746833216926 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746833218526:1822746833219056 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746833234136:1822746833234676 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746833238486:1822746833239016 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746833245576:1822746833246316 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 82 +1822746833247216:1822746833247526 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 82 +1822746833248516:1822746833251166 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746833251936:1822746833252246 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746833253276:1822746833253986 116414:116414 hsa_signal_store_relaxed(, 82) = void +1822746833256106:1822746833256646 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746833261086:1822746833261626 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746833263476:1822746833264036 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746833272656:1822746833273266 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746833273666:1822746833273946 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 83 +1822746833274346:1822746833274626 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 82 +1822746833275226:1822746833275506 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746833275896:1822746833276356 116414:116414 hsa_signal_store_relaxed(, 83) = void +1822746833277976:1822746834546174 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746834550624:1822746834551194 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746834552784:1822746834557044 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746834557464:1822746834557774 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746834560314:1822746834561374 116414:116414 hsa_signal_destroy() = 0 +1822746834562444:1822746834562884 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746834563354:1822746834563654 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746834564734:1822746834565074 116414:116414 hsa_signal_destroy() = 0 +1822746834566174:1822746834566714 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746834567604:1822746834568134 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746834568774:1822746834569114 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746834569504:1822746834569924 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746834570394:1822746834570674 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746834571144:1822746834572204 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746834572624:1822746836944949 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746837569803:1822746837570403 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746837572333:1822746837572953 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746844025434:1822746844026894 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746844042014:1822746844042554 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746844045675:1822746844046205 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746844048195:1822746844049105 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746844049495:1822746844049895 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746844050465:1822746844051595 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746844665118:1822746844665698 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746844667178:1822746844670029 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746844670559:1822746846092528 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746846092928:1822746846093358 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746846094438:1822746846094978 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746846097038:1822746846097568 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746846112698:1822746846113238 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746846116588:1822746846117118 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746846123848:1822746846124578 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 84 +1822746846125318:1822746846125948 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 84 +1822746846127258:1822746846129938 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746846130608:1822746846130908 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746846131928:1822746846132778 116414:116414 hsa_signal_store_relaxed(, 84) = void +1822746846135088:1822746846135618 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746846142108:1822746846142648 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746846144538:1822746846145068 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746846146278:1822746846146998 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746846147398:1822746846147678 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 85 +1822746846148068:1822746846148358 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 84 +1822746846148968:1822746846149248 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746846149638:1822746846150088 116414:116414 hsa_signal_store_relaxed(, 85) = void +1822746846151458:1822746847406186 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746847410596:1822746847411116 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746847412806:1822746847417376 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746847417796:1822746847418106 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746847420576:1822746847421516 116414:116414 hsa_signal_destroy() = 0 +1822746847422766:1822746847423086 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746847423506:1822746847423806 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746847424976:1822746847425326 116414:116414 hsa_signal_destroy() = 0 +1822746847428856:1822746847429406 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746847430196:1822746847430726 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746847431466:1822746847431886 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746847432276:1822746847432696 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746847433106:1822746847433376 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746847433826:1822746847434886 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746847435316:1822746849768131 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746850391215:1822746850391795 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746850393775:1822746850394395 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746856852406:1822746856853586 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746856868066:1822746856868606 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746856872066:1822746856872596 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746856874866:1822746856875776 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746856876166:1822746856876576 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746856877426:1822746856878266 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746857489620:1822746857490130 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746857491390:1822746857493990 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746857494550:1822746858918679 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746858919079:1822746858919539 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746858920609:1822746858921139 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746858923559:1822746858924089 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746858939859:1822746858940389 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746858944009:1822746858944539 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746858951729:1822746858952469 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 86 +1822746858953469:1822746858953769 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 86 +1822746858954749:1822746858957290 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746858957950:1822746858958270 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746858959640:1822746858960470 116414:116414 hsa_signal_store_relaxed(, 86) = void +1822746858970970:1822746858971500 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746858976030:1822746858976560 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746858978680:1822746858979220 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746858980540:1822746858981250 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746858981650:1822746858981930 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 87 +1822746858982320:1822746858982600 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 86 +1822746858983420:1822746858983690 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746858984090:1822746858984570 116414:116414 hsa_signal_store_relaxed(, 87) = void +1822746858986020:1822746860230488 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746860235298:1822746860235828 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746860237348:1822746860241668 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746860242088:1822746860242398 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746860244518:1822746860246028 116414:116414 hsa_signal_destroy() = 0 +1822746860247208:1822746860247608 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746860248078:1822746860248388 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746860249328:1822746860249668 116414:116414 hsa_signal_destroy() = 0 +1822746860250638:1822746860251188 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746860252078:1822746860252618 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746860253388:1822746860253808 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746860254198:1822746860254618 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746860255098:1822746860255378 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746860255818:1822746860256938 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746860257358:1822746862607943 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746863231107:1822746863231687 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746863233507:1822746863234127 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746869387856:1822746869389636 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746869405026:1822746869405566 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746869408286:1822746869408816 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746869420636:1822746869421526 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746869421916:1822746869422586 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746869423316:1822746869424546 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746870032760:1822746870033400 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746870035010:1822746870037090 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746870037620:1822746871459859 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746871460259:1822746871460689 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746871461849:1822746871462389 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746871464859:1822746871465389 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746871480889:1822746871481429 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746871485009:1822746871485549 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746871492729:1822746871493469 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 88 +1822746871494339:1822746871494789 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 88 +1822746871495789:1822746871498709 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746871499359:1822746871499669 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746871500729:1822746871501379 116414:116414 hsa_signal_store_relaxed(, 88) = void +1822746871503609:1822746871504139 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746871508369:1822746871508949 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746871511009:1822746871511549 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746871513019:1822746871513629 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746871514019:1822746871514299 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 89 +1822746871514699:1822746871514979 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 88 +1822746871515909:1822746871516189 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746871516579:1822746871517029 116414:116414 hsa_signal_store_relaxed(, 89) = void +1822746871518659:1822746872784378 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746872788808:1822746872789388 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746872791098:1822746872795768 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746872796248:1822746872796558 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746872798778:1822746872799828 116414:116414 hsa_signal_destroy() = 0 +1822746872804078:1822746872804528 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746872804948:1822746872805248 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746872806368:1822746872806718 116414:116414 hsa_signal_destroy() = 0 +1822746872807798:1822746872808348 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746872809298:1822746872809828 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746872810548:1822746872810968 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746872811358:1822746872811768 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746872812178:1822746872812448 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746872812888:1822746872814058 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746872814478:1822746875155543 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746875777847:1822746875778427 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746875780377:1822746875780947 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746882238328:1822746882239608 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746882255148:1822746882255688 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746882258498:1822746882259038 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746882261138:1822746882262048 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746882262448:1822746882262948 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746882263638:1822746882264438 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746882871302:1822746882871852 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746882873162:1822746882876242 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746882876722:1822746884299251 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746884299701:1822746884300141 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746884301501:1822746884302031 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746884303921:1822746884304451 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746884319881:1822746884320421 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746884324411:1822746884324941 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746884331941:1822746884332661 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 90 +1822746884333861:1822746884334181 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 90 +1822746884343181:1822746884345901 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746884346521:1822746884346831 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746884347951:1822746884348741 116414:116414 hsa_signal_store_relaxed(, 90) = void +1822746884350981:1822746884351521 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746884355961:1822746884356491 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746884358331:1822746884358871 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746884360131:1822746884360841 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746884361241:1822746884361511 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 91 +1822746884361911:1822746884362191 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 90 +1822746884362991:1822746884363261 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746884363661:1822746884364111 116414:116414 hsa_signal_store_relaxed(, 91) = void +1822746884365661:1822746885631779 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746885636739:1822746885637369 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746885639099:1822746885643659 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746885644139:1822746885644459 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746885646689:1822746885647739 116414:116414 hsa_signal_destroy() = 0 +1822746885649039:1822746885649509 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746885649929:1822746885650229 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746885651169:1822746885651509 116414:116414 hsa_signal_destroy() = 0 +1822746885652599:1822746885653149 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746885654049:1822746885654589 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746885655309:1822746885655719 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746885656119:1822746885656529 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746885657169:1822746885657439 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746885657879:1822746885658999 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746885659429:1822746888043865 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746888671729:1822746888672309 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746888673919:1822746888674539 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746895108290:1822746895109550 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746895134610:1822746895135150 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746895138340:1822746895138870 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746895141530:1822746895142450 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746895142850:1822746895143490 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746895144150:1822746895144950 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746895750584:1822746895751034 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746895752444:1822746895755044 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746895755574:1822746897177163 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746897177593:1822746897178033 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746897179243:1822746897179783 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746897181893:1822746897182423 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746897198003:1822746897198553 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746897201833:1822746897202363 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746897209073:1822746897209793 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 92 +1822746897210703:1822746897211143 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 92 +1822746897212113:1822746897214673 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746897215303:1822746897215613 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746897216673:1822746897217523 116414:116414 hsa_signal_store_relaxed(, 92) = void +1822746897219693:1822746897220223 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746897224663:1822746897225193 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746897227533:1822746897228063 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746897229313:1822746897230263 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746897230653:1822746897230933 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 93 +1822746897231323:1822746897231603 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 92 +1822746897232403:1822746897232683 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746897233073:1822746897233523 116414:116414 hsa_signal_store_relaxed(, 93) = void +1822746897235083:1822746898515301 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746898519641:1822746898520161 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746898525071:1822746898529271 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746898529691:1822746898530001 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746898532421:1822746898533481 116414:116414 hsa_signal_destroy() = 0 +1822746898534651:1822746898535051 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746898535531:1822746898535831 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746898536891:1822746898537231 116414:116414 hsa_signal_destroy() = 0 +1822746898538421:1822746898538971 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746898540331:1822746898540861 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746898541641:1822746898542061 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746898542461:1822746898542871 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746898543431:1822746898543701 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746898544141:1822746898545221 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746898545641:1822746900927097 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746901547101:1822746901547691 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746901549681:1822746901550261 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746907993861:1822746907995191 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746908018061:1822746908018611 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746908021082:1822746908021622 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746908023722:1822746908024642 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746908025032:1822746908025672 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746908026332:1822746908027792 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746908648446:1822746908648866 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746908650156:1822746908653166 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746908653726:1822746910078175 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746910078575:1822746910079005 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746910080375:1822746910080905 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746910082705:1822746910083385 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746910099185:1822746910099725 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746910103995:1822746910104535 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746910120395:1822746910121155 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 94 +1822746910122145:1822746910122585 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 94 +1822746910123565:1822746910126375 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746910127035:1822746910127345 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746910128325:1822746910129045 116414:116414 hsa_signal_store_relaxed(, 94) = void +1822746910131535:1822746910132065 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746910136265:1822746910136805 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746910139015:1822746910139555 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746910140635:1822746910141255 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746910141645:1822746910141925 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 95 +1822746910142315:1822746910142595 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 94 +1822746910143195:1822746910143475 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746910143865:1822746910144315 116414:116414 hsa_signal_store_relaxed(, 95) = void +1822746910146125:1822746911420973 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746911424843:1822746911425413 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746911427033:1822746911431333 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746911431753:1822746911432063 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746911434633:1822746911435533 116414:116414 hsa_signal_destroy() = 0 +1822746911436773:1822746911437213 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746911437693:1822746911437993 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746911438873:1822746911439213 116414:116414 hsa_signal_destroy() = 0 +1822746911440263:1822746911440813 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746911441713:1822746911442243 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746911443094:1822746911443434 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746911443824:1822746911444244 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746911444654:1822746911444924 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746911445374:1822746911446474 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746911446904:1822746913785979 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746914414483:1822746914415063 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746914416733:1822746914417273 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746920859804:1822746920861184 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746920876184:1822746920876724 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746920879834:1822746920880364 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746920882294:1822746920883214 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746920883604:1822746920884014 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746920884874:1822746920885884 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746921472088:1822746921472608 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746921473758:1822746921476508 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746921477048:1822746922902037 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746922902437:1822746922902747 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746922903917:1822746922904447 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746922906457:1822746922906987 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746922922597:1822746922923147 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746922926337:1822746922926877 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746922933307:1822746922934037 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 96 +1822746922934787:1822746922935657 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 96 +1822746922936707:1822746922939297 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746922939917:1822746922940227 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746922941317:1822746922942137 116414:116414 hsa_signal_store_relaxed(, 96) = void +1822746922944607:1822746922945177 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746922949097:1822746922949637 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746922951997:1822746922952537 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746922953747:1822746922954457 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746922954917:1822746922955197 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 97 +1822746922955587:1822746922955877 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 96 +1822746922956477:1822746922956757 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746922957147:1822746922957597 116414:116414 hsa_signal_store_relaxed(, 97) = void +1822746922967767:1822746924234385 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746924238745:1822746924239375 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746924240935:1822746924245485 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746924245895:1822746924246215 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746924248375:1822746924249495 116414:116414 hsa_signal_destroy() = 0 +1822746924250585:1822746924251045 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746924251515:1822746924251825 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746924252885:1822746924253235 116414:116414 hsa_signal_destroy() = 0 +1822746924254355:1822746924254905 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746924255695:1822746924256225 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746924257035:1822746924257375 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746924257785:1822746924258195 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746924258605:1822746924258875 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746924259325:1822746924260325 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746924260745:1822746926621140 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746927241324:1822746927241904 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746927243574:1822746927244154 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746933708165:1822746933709725 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746933724805:1822746933725345 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746933728595:1822746933729126 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746933731296:1822746933732196 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746933732586:1822746933732996 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746933733646:1822746933735166 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746934339539:1822746934340079 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746934341449:1822746934344459 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746934345009:1822746935771158 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746935771558:1822746935771988 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746935773068:1822746935773598 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746935785688:1822746935786228 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746935801548:1822746935802088 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746935805628:1822746935806168 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746935813578:1822746935814378 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 98 +1822746935815298:1822746935815748 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 98 +1822746935816878:1822746935819669 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746935820319:1822746935820629 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746935821659:1822746935822489 116414:116414 hsa_signal_store_relaxed(, 98) = void +1822746935824839:1822746935825379 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746935829349:1822746935829889 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746935831679:1822746935832219 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746935833379:1822746935834349 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746935834739:1822746935835019 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 99 +1822746935835409:1822746935835689 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 98 +1822746935836289:1822746935836569 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746935836959:1822746935837409 116414:116414 hsa_signal_store_relaxed(, 99) = void +1822746935839079:1822746937100677 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746937105627:1822746937106237 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746937107767:1822746937112067 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746937112487:1822746937112797 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746937115007:1822746937116157 116414:116414 hsa_signal_destroy() = 0 +1822746937117317:1822746937117707 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746937118127:1822746937118427 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746937119357:1822746937119707 116414:116414 hsa_signal_destroy() = 0 +1822746937120767:1822746937121317 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746937122207:1822746937122737 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746937123547:1822746937123887 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746937124287:1822746937124697 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746937127607:1822746937127887 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746937128367:1822746937129447 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746937129867:1822746939469682 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746940117496:1822746940118096 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746940119716:1822746940120246 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746946565318:1822746946566488 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746946581488:1822746946582028 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746946584628:1822746946585168 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746946587488:1822746946588608 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746946588998:1822746946589408 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746946590228:1822746946591218 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746947199172:1822746947199532 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746947200972:1822746947203692 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746947204232:1822746948627031 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746948627521:1822746948627951 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746948629031:1822746948629561 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746948631701:1822746948632231 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746948647021:1822746948647561 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746948651391:1822746948651921 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746948658571:1822746948659451 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 100 +1822746948660681:1822746948660971 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 100 +1822746948661941:1822746948664551 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746948665201:1822746948665511 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746948666871:1822746948667571 116414:116414 hsa_signal_store_relaxed(, 100) = void +1822746948669801:1822746948670351 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746948674521:1822746948675051 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746948677331:1822746948677861 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746948678971:1822746948679871 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746948680261:1822746948680541 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 101 +1822746948690031:1822746948690321 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 100 +1822746948690951:1822746948691221 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746948691611:1822746948692061 116414:116414 hsa_signal_store_relaxed(, 101) = void +1822746948693581:1822746949940239 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746949945049:1822746949945569 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746949947379:1822746949951419 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746949951849:1822746949952159 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746949954269:1822746949955269 116414:116414 hsa_signal_destroy() = 0 +1822746949956409:1822746949956849 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746949957319:1822746949957619 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746949958519:1822746949958859 116414:116414 hsa_signal_destroy() = 0 +1822746949959929:1822746949960469 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746949961389:1822746949961919 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746949963059:1822746949963399 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746949963819:1822746949964229 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746949964779:1822746949965059 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746949965499:1822746949966679 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746949967099:1822746952299564 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746952922638:1822746952923228 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746952924868:1822746952925408 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746959363779:1822746959365019 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746959380169:1822746959380709 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746959383809:1822746959384349 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746959386749:1822746959387819 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746959388229:1822746959388639 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746959389289:1822746959390169 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746959994133:1822746959994563 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746959995993:1822746959999013 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746960017983:1822746961422332 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746961422752:1822746961423182 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746961424362:1822746961424892 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746961427242:1822746961427842 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746961445652:1822746961446182 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746961449662:1822746961450192 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746961457052:1822746961457792 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 102 +1822746961458722:1822746961459172 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 102 +1822746961460162:1822746961463092 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746961463822:1822746961464132 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746961465182:1822746961465982 116414:116414 hsa_signal_store_relaxed(, 102) = void +1822746961468112:1822746961468652 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746961472902:1822746961473432 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746961475482:1822746961476022 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746961477332:1822746961478182 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746961478572:1822746961478852 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 103 +1822746961479242:1822746961479522 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 102 +1822746961480342:1822746961480612 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746961481022:1822746961481472 116414:116414 hsa_signal_store_relaxed(, 103) = void +1822746961483072:1822746962756050 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746962760680:1822746962761250 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746962762820:1822746962767480 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746962767890:1822746962768210 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746962770470:1822746962771880 116414:116414 hsa_signal_destroy() = 0 +1822746962773120:1822746962773580 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746962774010:1822746962774310 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746962775290:1822746962775630 116414:116414 hsa_signal_destroy() = 0 +1822746962776620:1822746962777180 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746962778090:1822746962778620 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746962782030:1822746962782390 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746962782790:1822746962783200 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746962783610:1822746962783880 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746962784330:1822746962785520 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746962785950:1822746965189926 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746965811010:1822746965811590 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746965813360:1822746965813900 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746972276661:1822746972278131 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746972292691:1822746972293231 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746972296251:1822746972296781 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746972299201:1822746972300341 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746972300811:1822746972301221 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746972301791:1822746972302691 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746972909935:1822746972910445 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746972911875:1822746972914865 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746972915425:1822746974338154 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746974338554:1822746974338984 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746974339924:1822746974340454 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746974342314:1822746974342844 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746974359074:1822746974359624 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746974362965:1822746974363495 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746974370145:1822746974370875 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 104 +1822746974371935:1822746974372385 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 104 +1822746974373395:1822746974375995 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746974376685:1822746974376995 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746974378015:1822746974378825 116414:116414 hsa_signal_store_relaxed(, 104) = void +1822746974381035:1822746974381575 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746974386045:1822746974386615 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746974396275:1822746974396815 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746974398065:1822746974398785 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746974399175:1822746974399455 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 105 +1822746974399855:1822746974400125 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 104 +1822746974400805:1822746974401085 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746974401485:1822746974401935 116414:116414 hsa_signal_store_relaxed(, 105) = void +1822746974403715:1822746975678263 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746975683233:1822746975683803 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746975685323:1822746975689443 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746975689853:1822746975690163 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746975692393:1822746975693443 116414:116414 hsa_signal_destroy() = 0 +1822746975694723:1822746975695123 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746975695593:1822746975695893 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746975697003:1822746975697343 116414:116414 hsa_signal_destroy() = 0 +1822746975698433:1822746975698983 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746975699873:1822746975700413 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746975701163:1822746975701573 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746975701973:1822746975702383 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746975702793:1822746975703063 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746975703503:1822746975704673 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746975705093:1822746978072968 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746978696782:1822746978697362 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746978698872:1822746978699492 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746985152363:1822746985154233 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746985169943:1822746985170483 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746985173383:1822746985173913 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746985176063:1822746985176973 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746985177373:1822746985177773 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746985178583:1822746985179533 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746985797997:1822746985798547 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746985799757:1822746985802657 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746985803187:1822746987227196 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746987227596:1822746987228046 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746987228906:1822746987229446 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746987231546:1822746987232076 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746987248916:1822746987249466 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746987252917:1822746987253457 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822746987261187:1822746987261927 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 106 +1822746987262887:1822746987263207 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 106 +1822746987264177:1822746987266937 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822746987267567:1822746987267877 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746987268837:1822746987269737 116414:116414 hsa_signal_store_relaxed(, 106) = void +1822746987272127:1822746987272667 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822746987276477:1822746987277027 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746987279987:1822746987280527 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822746987281617:1822746987282247 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822746987282637:1822746987282917 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 107 +1822746987283307:1822746987283597 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 106 +1822746987284197:1822746987284467 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822746987284877:1822746987285327 116414:116414 hsa_signal_store_relaxed(, 107) = void +1822746987287147:1822746988556345 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822746988561295:1822746988561865 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822746988563435:1822746988567655 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746988568135:1822746988568445 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822746988570595:1822746988571655 116414:116414 hsa_signal_destroy() = 0 +1822746988572845:1822746988573285 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746988573765:1822746988574065 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822746988577395:1822746988577755 116414:116414 hsa_signal_destroy() = 0 +1822746988578735:1822746988579285 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746988580215:1822746988580755 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746988581715:1822746988582065 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746988582475:1822746988582885 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746988583365:1822746988583645 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746988584105:1822746988585295 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822746988585725:1822746990921010 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746991543623:1822746991544203 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822746991545723:1822746991546303 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746997995645:1822746997997115 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822746998013275:1822746998013815 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822746998016225:1822746998016755 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822746998018795:1822746998019715 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746998020115:1822746998020655 116414:116414 hsa_signal_store_screlease(, 0) = void +1822746998021185:1822746998022085 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822746998609429:1822746998609939 116414:116414 hsa_signal_store_screlease(, 1) = void +1822746998611359:1822746998613949 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822746998614499:1822747000036518 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747000036958:1822747000037388 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747000038508:1822747000039038 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747000040908:1822747000041438 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747000055908:1822747000056438 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747000060248:1822747000060778 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747000067508:1822747000068228 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 108 +1822747000069018:1822747000069648 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 108 +1822747000070608:1822747000073638 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747000074268:1822747000074568 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747000075838:1822747000076668 116414:116414 hsa_signal_store_relaxed(, 108) = void +1822747000087568:1822747000088108 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747000092158:1822747000092688 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747000094938:1822747000095468 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747000097118:1822747000097768 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747000098158:1822747000098438 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 109 +1822747000098828:1822747000099118 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 108 +1822747000099718:1822747000099988 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747000100378:1822747000100838 116414:116414 hsa_signal_store_relaxed(, 109) = void +1822747000102408:1822747001354776 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747001359306:1822747001360176 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747001361766:1822747001366106 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747001366526:1822747001366836 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747001369086:1822747001370076 116414:116414 hsa_signal_destroy() = 0 +1822747001371166:1822747001371626 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747001372096:1822747001372406 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747001373396:1822747001373726 116414:116414 hsa_signal_destroy() = 0 +1822747001374826:1822747001375376 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747001376136:1822747001376676 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747001377486:1822747001377836 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747001378246:1822747001378656 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747001379066:1822747001379346 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747001379796:1822747001380916 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747001381336:1822747003745491 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747004379125:1822747004379715 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747004381505:1822747004382085 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747010832127:1822747010833487 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747010848317:1822747010848867 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747010851947:1822747010852477 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747010868127:1822747010869027 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747010869437:1822747010870067 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747010870737:1822747010872107 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747011480291:1822747011480741 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747011481981:1822747011484441 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747011484921:1822747012910620 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747012911110:1822747012911580 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747012912740:1822747012913280 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747012915160:1822747012915700 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747012931010:1822747012931550 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747012935030:1822747012935570 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747012943030:1822747012943770 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 110 +1822747012944670:1822747012944980 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 110 +1822747012945960:1822747012948620 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747012949230:1822747012949530 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747012950560:1822747012951410 116414:116414 hsa_signal_store_relaxed(, 110) = void +1822747012953480:1822747012954020 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747012958110:1822747012958670 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747012960700:1822747012961240 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747012962470:1822747012963110 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747012963510:1822747012963790 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 111 +1822747012964180:1822747012964460 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 110 +1822747012965290:1822747012965560 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747012965960:1822747012966410 116414:116414 hsa_signal_store_relaxed(, 111) = void +1822747012968070:1822747014228138 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747014233458:1822747014234068 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747014235908:1822747014240168 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747014240578:1822747014240898 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747014246008:1822747014247128 116414:116414 hsa_signal_destroy() = 0 +1822747014248318:1822747014248698 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747014249178:1822747014249488 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747014250658:1822747014250998 116414:116414 hsa_signal_destroy() = 0 +1822747014252098:1822747014252648 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747014253548:1822747014254088 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747014254778:1822747014255188 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747014255598:1822747014256008 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747014256718:1822747014256988 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747014257428:1822747014258498 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747014258918:1822747016600083 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747017222227:1822747017222817 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747017224697:1822747017225317 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747023663198:1822747023664798 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747023679758:1822747023680298 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747023683568:1822747023684098 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747023686258:1822747023687158 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747023687548:1822747023687958 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747023688598:1822747023689608 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747024302822:1822747024303292 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747024304512:1822747024306982 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747024307512:1822747025730101 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747025730501:1822747025730931 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747025732031:1822747025732571 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747025734781:1822747025735311 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747025749872:1822747025750412 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747025754262:1822747025754802 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747025761722:1822747025762482 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 112 +1822747025763232:1822747025763852 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 112 +1822747025772682:1822747025775492 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747025776162:1822747025776472 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747025777472:1822747025778322 116414:116414 hsa_signal_store_relaxed(, 112) = void +1822747025780362:1822747025780892 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747025784962:1822747025785502 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747025787692:1822747025788232 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747025789562:1822747025790162 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747025790562:1822747025790842 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 113 +1822747025791232:1822747025791512 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 112 +1822747025792322:1822747025792602 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747025793002:1822747025793462 116414:116414 hsa_signal_store_relaxed(, 113) = void +1822747025795352:1822747027047410 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747027052100:1822747027052680 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747027054540:1822747027058870 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747027059300:1822747027059610 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747027062220:1822747027063450 116414:116414 hsa_signal_destroy() = 0 +1822747027064560:1822747027065000 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747027065470:1822747027065770 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747027066890:1822747027067230 116414:116414 hsa_signal_destroy() = 0 +1822747027068310:1822747027068850 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747027069840:1822747027070370 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747027071110:1822747027071520 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747027071910:1822747027072330 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747027072740:1822747027073010 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747027073450:1822747027074630 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747027075050:1822747029417945 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747030045319:1822747030045899 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747030047559:1822747030048089 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747036502340:1822747036503610 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747036518860:1822747036519400 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747036522260:1822747036522790 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747036525060:1822747036526240 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747036526640:1822747036526910 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747036527570:1822747036528820 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747037138354:1822747037138794 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747037140294:1822747037142764 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747037143304:1822747038567123 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747038567523:1822747038567823 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747038568973:1822747038569503 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747038571373:1822747038571973 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747038586983:1822747038587523 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747038590993:1822747038591523 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747038598303:1822747038599023 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 114 +1822747038599933:1822747038600373 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 114 +1822747038601353:1822747038604133 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747038604793:1822747038605093 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747038606113:1822747038606933 116414:116414 hsa_signal_store_relaxed(, 114) = void +1822747038609163:1822747038609693 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747038613543:1822747038614083 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747038616713:1822747038617273 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747038618273:1822747038618963 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747038619353:1822747038619633 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 115 +1822747038620023:1822747038620303 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 114 +1822747038621183:1822747038621453 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747038621843:1822747038622293 116414:116414 hsa_signal_store_relaxed(, 115) = void +1822747038623943:1822747039876201 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747039881682:1822747039882252 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747039892852:1822747039897112 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747039897602:1822747039897912 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747039900502:1822747039901552 116414:116414 hsa_signal_destroy() = 0 +1822747039902672:1822747039902992 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747039903472:1822747039903772 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747039904742:1822747039905122 116414:116414 hsa_signal_destroy() = 0 +1822747039906052:1822747039906612 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747039907572:1822747039908102 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747039908812:1822747039909152 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747039909542:1822747039909962 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747039910442:1822747039910712 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747039911162:1822747039912272 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747039912692:1822747042310027 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747042932861:1822747042933451 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747042935701:1822747042936321 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747049388052:1822747049389602 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747049405452:1822747049405992 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747049409042:1822747049409582 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747049411762:1822747049412682 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747049413072:1822747049413432 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747049414002:1822747049415042 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747050020126:1822747050020586 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747050022046:1822747050025176 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747050025736:1822747051447575 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747051447975:1822747051448405 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747051449225:1822747051449755 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747051452225:1822747051452755 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747051467625:1822747051468165 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747051480035:1822747051480565 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747051487525:1822747051488245 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 116 +1822747051489165:1822747051489605 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 116 +1822747051490895:1822747051493375 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747051494015:1822747051494325 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747051495365:1822747051496215 116414:116414 hsa_signal_store_relaxed(, 116) = void +1822747051498835:1822747051499365 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747051504715:1822747051505245 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747051507535:1822747051508075 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747051509115:1822747051509955 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747051510355:1822747051510635 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 117 +1822747051511025:1822747051511305 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 116 +1822747051512085:1822747051512365 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747051512755:1822747051513205 116414:116414 hsa_signal_store_relaxed(, 117) = void +1822747051514885:1822747052784144 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747052789064:1822747052789594 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747052791074:1822747052795334 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747052795744:1822747052796054 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747052798504:1822747052799624 116414:116414 hsa_signal_destroy() = 0 +1822747052800874:1822747052801264 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747052801684:1822747052801994 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747052802914:1822747052803254 116414:116414 hsa_signal_destroy() = 0 +1822747052804384:1822747052804934 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747052805844:1822747052806384 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747052807104:1822747052807434 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747052807834:1822747052808254 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747052808664:1822747052808934 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747052809384:1822747052810524 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747052810944:1822747055134709 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747055757653:1822747055758263 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747055760213:1822747055760833 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747062231124:1822747062232654 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747062247034:1822747062247574 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747062250934:1822747062251464 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747062253534:1822747062254724 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747062255114:1822747062255524 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747062256084:1822747062256994 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747062842497:1822747062842857 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747062843987:1822747062846467 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747062847037:1822747064271997 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747064272437:1822747064272757 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747064274107:1822747064274637 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747064277217:1822747064277747 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747064293047:1822747064293577 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747064297397:1822747064297937 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747064304827:1822747064305457 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 118 +1822747064306217:1822747064306827 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 118 +1822747064307787:1822747064310407 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747064311047:1822747064311357 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747064312447:1822747064313257 116414:116414 hsa_signal_store_relaxed(, 118) = void +1822747064315537:1822747064316067 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747064320007:1822747064320547 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747064322577:1822747064323117 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747064324157:1822747064324747 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747064325147:1822747064325417 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 119 +1822747064325807:1822747064326097 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 118 +1822747064326687:1822747064326967 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747064336217:1822747064336677 116414:116414 hsa_signal_store_relaxed(, 119) = void +1822747064338177:1822747065595965 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747065600725:1822747065601245 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747065602905:1822747065607185 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747065607665:1822747065607975 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747065610205:1822747065611135 116414:116414 hsa_signal_destroy() = 0 +1822747065612205:1822747065612645 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747065613115:1822747065613415 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747065614475:1822747065614815 116414:116414 hsa_signal_destroy() = 0 +1822747065615905:1822747065616455 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747065617225:1822747065617755 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747065618515:1822747065618935 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747065619335:1822747065619755 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747065620315:1822747065620585 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747065621035:1822747065622235 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747065622655:1822747067947050 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747068572314:1822747068572914 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747068575194:1822747068575724 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747075131106:1822747075132396 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747075146486:1822747075147026 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747075149456:1822747075149996 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747075152256:1822747075153376 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747075153846:1822747075154256 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747075154806:1822747075156126 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747075742730:1822747075743090 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747075744450:1822747075747010 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747075747520:1822747077171229 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747077171809:1822747077172119 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747077173449:1822747077173979 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747077186079:1822747077186619 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747077201729:1822747077202269 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747077205809:1822747077206349 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747077213259:1822747077213979 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 120 +1822747077214739:1822747077215349 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 120 +1822747077216299:1822747077218709 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747077219309:1822747077219619 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747077220659:1822747077221859 116414:116414 hsa_signal_store_relaxed(, 120) = void +1822747077224029:1822747077224569 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747077228399:1822747077228939 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747077231219:1822747077231749 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747077232949:1822747077233639 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747077234029:1822747077234309 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 121 +1822747077234699:1822747077234979 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 120 +1822747077235579:1822747077235849 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747077236249:1822747077236699 116414:116414 hsa_signal_store_relaxed(, 121) = void +1822747077238139:1822747078505777 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747078510517:1822747078511087 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747078512497:1822747078516467 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747078516887:1822747078517197 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747078519197:1822747078520377 116414:116414 hsa_signal_destroy() = 0 +1822747078521477:1822747078521797 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747078522267:1822747078522567 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747078523517:1822747078523857 116414:116414 hsa_signal_destroy() = 0 +1822747078524957:1822747078525497 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747078526257:1822747078526787 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747078527627:1822747078527967 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747078528377:1822747078528787 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747078531577:1822747078531857 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747078532317:1822747078533387 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747078533807:1822747080866312 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747081489966:1822747081490556 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747081492896:1822747081493466 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747087693976:1822747087695126 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747087709606:1822747087710146 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747087712836:1822747087713366 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747087715316:1822747087716646 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747087717046:1822747087717446 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747087718036:1822747087719006 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747088336630:1822747088337270 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747088338880:1822747088342060 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747088342650:1822747089766259 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747089766659:1822747089767309 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747089768269:1822747089768799 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747089770829:1822747089771359 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747089787509:1822747089788049 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747089791589:1822747089792119 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747089799039:1822747089799749 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 122 +1822747089800649:1822747089801089 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 122 +1822747089801939:1822747089804469 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747089805139:1822747089805449 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747089806629:1822747089807479 116414:116414 hsa_signal_store_relaxed(, 122) = void +1822747089809909:1822747089810439 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747089815029:1822747089815569 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747089818039:1822747089818579 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747089819839:1822747089820459 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747089829029:1822747089829309 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 123 +1822747089829719:1822747089829989 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 122 +1822747089830769:1822747089831049 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747089831439:1822747089831889 116414:116414 hsa_signal_store_relaxed(, 123) = void +1822747089833409:1822747091087987 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747091092947:1822747091093467 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747091095027:1822747091099257 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747091099677:1822747091099987 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747091102407:1822747091103477 116414:116414 hsa_signal_destroy() = 0 +1822747091104647:1822747091105037 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747091105457:1822747091105757 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747091106807:1822747091107157 116414:116414 hsa_signal_destroy() = 0 +1822747091108117:1822747091108667 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747091109557:1822747091110097 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747091110907:1822747091111307 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747091111707:1822747091112127 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747091112677:1822747091112947 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747091113397:1822747091114547 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747091114967:1822747093471153 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747094092797:1822747094093377 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747094095137:1822747094095717 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747100520497:1822747100521827 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747100537657:1822747100538187 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747100540947:1822747100541477 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747100543497:1822747100544417 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747100544807:1822747100545217 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747100545877:1822747100546967 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747101169891:1822747101170431 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747101171771:1822747101174731 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747101184901:1822747102597750 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747102598180:1822747102598640 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747102599680:1822747102600220 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747102602110:1822747102602640 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747102618541:1822747102619081 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747102622481:1822747102623021 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747102629441:1822747102630171 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 124 +1822747102630921:1822747102631521 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 124 +1822747102632501:1822747102635171 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747102635831:1822747102636141 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747102637201:1822747102638031 116414:116414 hsa_signal_store_relaxed(, 124) = void +1822747102640301:1822747102640841 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747102644681:1822747102645221 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747102647301:1822747102647841 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747102649041:1822747102649651 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747102650041:1822747102650321 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 125 +1822747102650711:1822747102650991 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 124 +1822747102652031:1822747102652311 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747102652701:1822747102653151 116414:116414 hsa_signal_store_relaxed(, 125) = void +1822747102655101:1822747103911509 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747103916359:1822747103917229 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747103918719:1822747103923059 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747103923479:1822747103923789 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747103926169:1822747103927279 116414:116414 hsa_signal_destroy() = 0 +1822747103928469:1822747103928909 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747103929389:1822747103929689 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747103930659:1822747103930999 116414:116414 hsa_signal_destroy() = 0 +1822747103932159:1822747103932709 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747103935809:1822747103936349 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747103937229:1822747103937639 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747103938039:1822747103938459 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747103939009:1822747103939279 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747103939729:1822747103941029 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747103941449:1822747106306964 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747106928668:1822747106929248 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747106931288:1822747106931818 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747113390879:1822747113392469 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747113407569:1822747113408119 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747113411029:1822747113411569 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747113414219:1822747113415139 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747113415539:1822747113415889 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747113416479:1822747113417259 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747114023683:1822747114024523 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747114025753:1822747114028553 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747114029043:1822747115453532 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747115453932:1822747115454362 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747115455302:1822747115455832 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747115458262:1822747115458802 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747115474172:1822747115474712 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747115478052:1822747115478592 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747115485802:1822747115486552 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 126 +1822747115487452:1822747115487762 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 126 +1822747115488692:1822747115491372 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747115492012:1822747115492322 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747115493383:1822747115494183 116414:116414 hsa_signal_store_relaxed(, 126) = void +1822747115496583:1822747115497143 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747115501323:1822747115501853 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747115516563:1822747115517103 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747115518513:1822747115519243 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747115519633:1822747115519913 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 127 +1822747115520313:1822747115520583 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 126 +1822747115521243:1822747115521523 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747115521923:1822747115522373 116414:116414 hsa_signal_store_relaxed(, 127) = void +1822747115523903:1822747116776801 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747116781301:1822747116781941 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747116783521:1822747116787711 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747116788121:1822747116788451 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747116790911:1822747116791961 116414:116414 hsa_signal_destroy() = 0 +1822747116793051:1822747116793511 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747116793981:1822747116794281 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747116795381:1822747116795721 116414:116414 hsa_signal_destroy() = 0 +1822747116796811:1822747116797361 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747116798261:1822747116798791 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747116799811:1822747116800141 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747116800541:1822747116800951 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747116801431:1822747116801711 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747116802151:1822747116803231 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747116803661:1822747119138136 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747119756450:1822747119757030 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747119758950:1822747119759520 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747126221861:1822747126223611 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747126238511:1822747126239051 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747126242201:1822747126242731 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747126245001:1822747126245971 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747126246431:1822747126246711 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747126257351:1822747126258701 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747126867345:1822747126867805 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747126869205:1822747126871795 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747126872335:1822747128295954 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747128296424:1822747128296744 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747128298114:1822747128298654 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747128300714:1822747128301244 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747128318804:1822747128319344 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747128323174:1822747128323714 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747128330324:1822747128331214 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 128 +1822747128332424:1822747128332724 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 128 +1822747128333814:1822747128336474 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747128337104:1822747128337414 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747128338684:1822747128339514 116414:116414 hsa_signal_store_relaxed(, 128) = void +1822747128342054:1822747128342614 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747128347104:1822747128347634 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747128349854:1822747128350394 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747128351644:1822747128352324 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747128352714:1822747128352994 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 129 +1822747128353394:1822747128353664 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 128 +1822747128354294:1822747128354574 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747128354964:1822747128355424 116414:116414 hsa_signal_store_relaxed(, 129) = void +1822747128357154:1822747129632403 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747129637083:1822747129637603 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747129639123:1822747129643353 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747129643833:1822747129644143 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747129646303:1822747129647443 116414:116414 hsa_signal_destroy() = 0 +1822747129648953:1822747129649353 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747129649773:1822747129650073 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747129653353:1822747129653703 116414:116414 hsa_signal_destroy() = 0 +1822747129654813:1822747129655363 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747129656283:1822747129656823 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747129657593:1822747129658013 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747129658413:1822747129658833 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747129659303:1822747129659583 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747129660033:1822747129661133 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747129661563:1822747131998808 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747132639252:1822747132639832 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747132641442:1822747132641982 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747139089553:1822747139091223 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747139106603:1822747139107143 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747139110433:1822747139110973 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747139113253:1822747139114363 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747139114753:1822747139115393 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747139116123:1822747139116993 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747139725597:1822747139726057 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747139727577:1822747139730567 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747139731067:1822747141155726 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747141156266:1822747141156736 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747141157606:1822747141158146 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747141159926:1822747141160456 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747141174806:1822747141175346 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747141179056:1822747141179596 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747141187216:1822747141188076 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 130 +1822747141188826:1822747141189296 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 130 +1822747141190486:1822747141192756 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747141193386:1822747141193696 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747141203106:1822747141203846 116414:116414 hsa_signal_store_relaxed(, 130) = void +1822747141206006:1822747141206546 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747141210636:1822747141211166 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747141213606:1822747141214146 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747141215446:1822747141215926 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747141216316:1822747141216586 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 131 +1822747141216986:1822747141217256 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 130 +1822747141217876:1822747141218146 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747141218546:1822747141218996 116414:116414 hsa_signal_store_relaxed(, 131) = void +1822747141220506:1822747142475084 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747142479574:1822747142480154 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747142481754:1822747142486074 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747142486554:1822747142486864 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747142488974:1822747142490484 116414:116414 hsa_signal_destroy() = 0 +1822747142491814:1822747142492264 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747142492734:1822747142493044 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747142493984:1822747142494324 116414:116414 hsa_signal_destroy() = 0 +1822747142495304:1822747142495854 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747142496744:1822747142497284 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747142498014:1822747142498434 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747142498844:1822747142499254 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747142499734:1822747142500004 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747142500474:1822747142501614 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747142502034:1822747144833659 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747145458183:1822747145458753 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747145460333:1822747145460953 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747151563893:1822747151565403 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747151581003:1822747151581543 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747151584973:1822747151585503 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747151598283:1822747151599403 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747151599793:1822747151600443 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747151601103:1822747151602223 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747152222447:1822747152223197 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747152224577:1822747152227107 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747152227587:1822747153649646 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747153650046:1822747153650466 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747153651166:1822747153651696 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747153654416:1822747153654946 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747153670146:1822747153670686 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747153674376:1822747153674906 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747153682766:1822747153683496 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 132 +1822747153684436:1822747153684886 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 132 +1822747153685926:1822747153688936 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747153689616:1822747153689926 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747153690906:1822747153691786 116414:116414 hsa_signal_store_relaxed(, 132) = void +1822747153693986:1822747153694526 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747153698816:1822747153699356 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747153701386:1822747153701926 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747153703046:1822747153703686 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747153704076:1822747153704356 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 133 +1822747153704746:1822747153705026 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 132 +1822747153705626:1822747153705906 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747153706296:1822747153706756 116414:116414 hsa_signal_store_relaxed(, 133) = void +1822747153708476:1822747154960334 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747154964944:1822747154965734 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747154967274:1822747154971714 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747154972144:1822747154972454 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747154977944:1822747154979084 116414:116414 hsa_signal_destroy() = 0 +1822747154980124:1822747154980444 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747154980924:1822747154981224 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747154982104:1822747154982484 116414:116414 hsa_signal_destroy() = 0 +1822747154983554:1822747154984104 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747154985044:1822747154985574 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747154986294:1822747154986864 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747154987274:1822747154987684 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747154988254:1822747154988524 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747154988974:1822747154990134 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747154990574:1822747157342599 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747157965233:1822747157965823 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747157968053:1822747157968673 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747164419714:1822747164420954 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747164436544:1822747164437084 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747164440114:1822747164440644 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747164442964:1822747164443855 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747164444315:1822747164444995 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747164445635:1822747164446425 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747165051308:1822747165051848 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747165053268:1822747165056038 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747165056578:1822747166479547 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747166479957:1822747166480387 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747166481647:1822747166482177 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747166483957:1822747166484487 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747166500317:1822747166500867 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747166504407:1822747166504947 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747166511917:1822747166512647 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 134 +1822747166522087:1822747166522397 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 134 +1822747166523527:1822747166525987 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747166526627:1822747166526937 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747166527987:1822747166528837 116414:116414 hsa_signal_store_relaxed(, 134) = void +1822747166531517:1822747166532057 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747166536328:1822747166536858 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747166538688:1822747166539228 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747166540418:1822747166541168 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747166541568:1822747166541848 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 135 +1822747166542238:1822747166542518 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 134 +1822747166543328:1822747166543608 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747166544018:1822747166544468 116414:116414 hsa_signal_store_relaxed(, 135) = void +1822747166545898:1822747167808875 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747167813335:1822747167813905 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747167815475:1822747167819846 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747167820266:1822747167820576 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747167822906:1822747167824076 116414:116414 hsa_signal_destroy() = 0 +1822747167825486:1822747167825876 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747167826356:1822747167826656 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747167827646:1822747167827986 116414:116414 hsa_signal_destroy() = 0 +1822747167829066:1822747167829616 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747167830526:1822747167831056 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747167831906:1822747167832316 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747167832706:1822747167833196 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747167833676:1822747167833946 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747167834386:1822747167835546 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747167835966:1822747170214841 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747170835495:1822747170836085 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747170838005:1822747170838535 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747177292986:1822747177294116 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747177309586:1822747177310126 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747177313386:1822747177313916 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747177316186:1822747177317066 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747177317456:1822747177318106 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747177318776:1822747177319636 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747177926930:1822747177927470 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747177929290:1822747177931750 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747177932300:1822747179354989 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747179355389:1822747179355819 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747179356979:1822747179357519 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747179359409:1822747179359939 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747179383059:1822747179383599 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747179387069:1822747179387609 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747179394179:1822747179395009 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 136 +1822747179395919:1822747179396529 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 136 +1822747179397499:1822747179400329 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747179400969:1822747179401269 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747179402209:1822747179402949 116414:116414 hsa_signal_store_relaxed(, 136) = void +1822747179405519:1822747179406059 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747179410499:1822747179411039 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747179412929:1822747179413469 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747179414809:1822747179415709 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747179416229:1822747179416509 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 137 +1822747179416899:1822747179417179 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 136 +1822747179417899:1822747179418179 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747179418569:1822747179419019 116414:116414 hsa_signal_store_relaxed(, 137) = void +1822747179420789:1822747180678047 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747180685447:1822747180686037 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747180687637:1822747180691857 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747180692277:1822747180692587 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747180695307:1822747180696367 116414:116414 hsa_signal_destroy() = 0 +1822747180697617:1822747180698057 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747180698477:1822747180698787 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747180699797:1822747180700147 116414:116414 hsa_signal_destroy() = 0 +1822747180701217:1822747180701767 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747180702677:1822747180703217 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747180704007:1822747180704347 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747180704737:1822747180705157 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747180705567:1822747180705837 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747180706287:1822747180707417 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747180707837:1822747183076073 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747183697157:1822747183697737 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747183699937:1822747183700517 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747190150058:1822747190151358 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747190166648:1822747190167188 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747190170198:1822747190170738 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747190172898:1822747190173808 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747190174198:1822747190174598 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747190175248:1822747190176348 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747190782482:1822747190782842 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747190784282:1822747190786942 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747190787482:1822747192211641 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747192212081:1822747192212521 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747192213791:1822747192214321 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747192216561:1822747192217151 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747192232721:1822747192233251 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747192245171:1822747192245701 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747192252741:1822747192253461 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 138 +1822747192254501:1822747192254811 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 138 +1822747192255821:1822747192258332 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747192258982:1822747192259282 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747192260502:1822747192261322 116414:116414 hsa_signal_store_relaxed(, 138) = void +1822747192263452:1822747192263982 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747192271002:1822747192271532 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747192273482:1822747192274012 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747192275072:1822747192275902 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747192276292:1822747192276572 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 139 +1822747192276962:1822747192277252 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 138 +1822747192278022:1822747192278292 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747192278682:1822747192279142 116414:116414 hsa_signal_store_relaxed(, 139) = void +1822747192280682:1822747193537839 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747193542510:1822747193543130 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747193544750:1822747193549160 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747193549580:1822747193549890 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747193552240:1822747193553380 116414:116414 hsa_signal_destroy() = 0 +1822747193554510:1822747193554970 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747193555390:1822747193555690 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747193556650:1822747193556990 116414:116414 hsa_signal_destroy() = 0 +1822747193558050:1822747193558600 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747193559500:1822747193560040 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747193560780:1822747193561120 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747193561510:1822747193561980 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747193562400:1822747193562670 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747193563110:1822747193564550 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747193567160:1822747195923394 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747196564078:1822747196564688 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747196566338:1822747196566868 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747203022800:1822747203024170 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747203039570:1822747203040110 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747203043150:1822747203043690 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747203046010:1822747203046910 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747203047300:1822747203047950 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747203048600:1822747203049580 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747203656664:1822747203657024 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747203658244:1822747203660804 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747203661374:1822747205083573 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747205084033:1822747205084473 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747205085563:1822747205086093 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747205088123:1822747205088653 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747205103763:1822747205104303 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747205107763:1822747205108293 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747205115423:1822747205116163 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 140 +1822747205117063:1822747205117513 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 140 +1822747205118503:1822747205121233 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747205121873:1822747205122183 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747205123253:1822747205124003 116414:116414 hsa_signal_store_relaxed(, 140) = void +1822747205126423:1822747205126953 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747205130963:1822747205131503 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747205134563:1822747205135103 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747205136143:1822747205136864 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747205137264:1822747205137544 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 141 +1822747205137934:1822747205138214 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 140 +1822747205139064:1822747205139334 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747205151794:1822747205152254 116414:116414 hsa_signal_store_relaxed(, 141) = void +1822747205153854:1822747206391402 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747206396562:1822747206397132 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747206398952:1822747206403352 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747206403832:1822747206404142 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747206406422:1822747206407472 116414:116414 hsa_signal_destroy() = 0 +1822747206408652:1822747206409042 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747206409522:1822747206409822 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747206410682:1822747206411022 116414:116414 hsa_signal_destroy() = 0 +1822747206412002:1822747206412552 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747206413462:1822747206414002 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747206414772:1822747206415192 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747206415592:1822747206416002 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747206416552:1822747206416832 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747206417272:1822747206418372 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747206418782:1822747208759447 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747209394101:1822747209394761 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747209396581:1822747209397281 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747215858682:1822747215859742 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747215874122:1822747215874662 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747215878022:1822747215878552 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747215880652:1822747215881542 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747215882012:1822747215882422 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747215883072:1822747215884092 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747216496526:1822747216496976 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747216498206:1822747216501056 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747216501586:1822747217925555 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747217925955:1822747217926385 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747217937135:1822747217937675 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747217939735:1822747217940265 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747217955455:1822747217955995 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747217959885:1822747217960415 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747217967425:1822747217968315 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 142 +1822747217969515:1822747217969825 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 142 +1822747217970775:1822747217973445 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747217974095:1822747217974405 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747217975705:1822747217976515 116414:116414 hsa_signal_store_relaxed(, 142) = void +1822747217978865:1822747217979405 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747217983495:1822747217984025 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747217986495:1822747217987025 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747217988085:1822747217988705 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747217989095:1822747217989375 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 143 +1822747217989775:1822747217990045 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 142 +1822747217990925:1822747217991205 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747217991595:1822747217992055 116414:116414 hsa_signal_store_relaxed(, 143) = void +1822747217993525:1822747219276764 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747219281414:1822747219282004 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747219283614:1822747219288174 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747219288594:1822747219288904 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747219291554:1822747219292614 116414:116414 hsa_signal_destroy() = 0 +1822747219293834:1822747219294284 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747219294754:1822747219295054 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747219296244:1822747219296594 116414:116414 hsa_signal_destroy() = 0 +1822747219297684:1822747219298224 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747219299134:1822747219299674 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747219300404:1822747219300734 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747219301134:1822747219301544 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747219304324:1822747219304604 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747219305054:1822747219306114 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747219306534:1822747221652168 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747222272712:1822747222273282 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747222275222:1822747222275792 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747228733103:1822747228734824 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747228749614:1822747228750154 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747228753894:1822747228754424 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747228756484:1822747228757384 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747228757854:1822747228758204 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747228758984:1822747228760104 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747229370368:1822747229370798 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747229372108:1822747229375238 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747229375768:1822747230798937 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747230799337:1822747230799767 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747230801177:1822747230801707 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747230803977:1822747230804507 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747230819817:1822747230820347 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747230823717:1822747230824247 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747230830897:1822747230831647 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 144 +1822747230832537:1822747230833007 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 144 +1822747230834077:1822747230836797 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747230837457:1822747230837757 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747230838947:1822747230839737 116414:116414 hsa_signal_store_relaxed(, 144) = void +1822747230841907:1822747230842437 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747230846317:1822747230846857 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747230848777:1822747230849327 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747230850957:1822747230851647 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747230860367:1822747230860647 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 145 +1822747230861047:1822747230861317 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 144 +1822747230862007:1822747230862277 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747230862677:1822747230863117 116414:116414 hsa_signal_store_relaxed(, 145) = void +1822747230864737:1822747232102035 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747232106995:1822747232107625 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747232109235:1822747232113425 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747232113845:1822747232114155 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747232116335:1822747232117395 116414:116414 hsa_signal_destroy() = 0 +1822747232118425:1822747232118755 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747232119225:1822747232119535 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747232120395:1822747232120735 116414:116414 hsa_signal_destroy() = 0 +1822747232121845:1822747232122405 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747232123305:1822747232123845 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747232124545:1822747232124875 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747232125275:1822747232125685 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747232126175:1822747232126445 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747232126895:1822747232127975 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747232128395:1822747234463530 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747235084494:1822747235085084 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747235086744:1822747235087324 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747241168533:1822747241169903 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747241186333:1822747241186873 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747241190093:1822747241190623 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747241193083:1822747241193983 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747241194383:1822747241195283 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747241195933:1822747241196843 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747241805457:1822747241805967 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747241816797:1822747241819377 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747241819867:1822747243240476 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747243240866:1822747243241306 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747243242896:1822747243243436 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747243245246:1822747243245776 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747243260386:1822747243260916 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747243264276:1822747243264806 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747243271696:1822747243272356 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 146 +1822747243273126:1822747243273606 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 146 +1822747243274586:1822747243277406 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747243278066:1822747243278366 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747243279626:1822747243280446 116414:116414 hsa_signal_store_relaxed(, 146) = void +1822747243282646:1822747243283176 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747243287486:1822747243288016 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747243290136:1822747243290696 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747243291816:1822747243292536 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747243292936:1822747243293206 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 147 +1822747243293596:1822747243293876 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 146 +1822747243294496:1822747243294766 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747243295156:1822747243295606 116414:116414 hsa_signal_store_relaxed(, 147) = void +1822747243297076:1822747244556874 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747244561504:1822747244562084 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747244563654:1822747244568084 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747244568554:1822747244568874 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747244571004:1822747244572084 116414:116414 hsa_signal_destroy() = 0 +1822747244573324:1822747244573704 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747244574124:1822747244574424 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747244575374:1822747244575724 116414:116414 hsa_signal_destroy() = 0 +1822747244576834:1822747244577374 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747244581045:1822747244581595 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747244582355:1822747244582775 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747244583175:1822747244583595 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747244584005:1822747244584285 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747244584725:1822747244585855 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747244586275:1822747246902889 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747247524713:1822747247525303 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747247527363:1822747247527893 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747253977674:1822747253979224 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747253994274:1822747253994814 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747253997704:1822747253998234 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747254000314:1822747254001244 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747254001714:1822747254002124 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747254002694:1822747254004174 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747254604618:1822747254605128 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747254606798:1822747254610208 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747254610658:1822747256031757 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747256032267:1822747256032727 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747256034167:1822747256034707 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747256037297:1822747256037837 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747256053107:1822747256053647 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747256057277:1822747256057807 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747256065227:1822747256065967 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 148 +1822747256067018:1822747256067638 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 148 +1822747256068608:1822747256071008 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747256071608:1822747256071908 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747256072918:1822747256073738 116414:116414 hsa_signal_store_relaxed(, 148) = void +1822747256076238:1822747256076778 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747256089358:1822747256089888 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747256091958:1822747256092498 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747256093768:1822747256094398 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747256094788:1822747256095068 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 149 +1822747256095478:1822747256095748 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 148 +1822747256096368:1822747256096638 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747256097038:1822747256097488 116414:116414 hsa_signal_store_relaxed(, 149) = void +1822747256099148:1822747257357096 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747257362016:1822747257362546 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747257364256:1822747257368646 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747257369066:1822747257369376 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747257371436:1822747257372566 116414:116414 hsa_signal_destroy() = 0 +1822747257373796:1822747257374236 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747257374656:1822747257374966 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747257375846:1822747257376186 116414:116414 hsa_signal_destroy() = 0 +1822747257377146:1822747257377696 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747257378596:1822747257379126 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747257379936:1822747257380346 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747257380746:1822747257381166 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747257381646:1822747257381916 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747257382366:1822747257383426 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747257383846:1822747259725291 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747260356225:1822747260356815 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747260358565:1822747260359185 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747266812886:1822747266814156 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747266829546:1822747266830086 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747266833586:1822747266834116 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747266836196:1822747266837086 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747266837486:1822747266838376 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747266846136:1822747266847466 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747267456710:1822747267457070 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747267458040:1822747267460660 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747267461190:1822747268886439 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747268886889:1822747268887329 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747268888179:1822747268888709 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747268890639:1822747268891169 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747268907169:1822747268907709 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747268911279:1822747268911809 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747268918319:1822747268919029 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 150 +1822747268919969:1822747268920419 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 150 +1822747268921399:1822747268924259 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747268924899:1822747268925229 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747268926319:1822747268927169 116414:116414 hsa_signal_store_relaxed(, 150) = void +1822747268929309:1822747268929849 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747268933979:1822747268934509 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747268936649:1822747268937189 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747268938459:1822747268939079 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747268939479:1822747268939749 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 151 +1822747268940149:1822747268940429 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 150 +1822747268941259:1822747268941529 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747268941939:1822747268942389 116414:116414 hsa_signal_store_relaxed(, 151) = void +1822747268944319:1822747270209748 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747270214998:1822747270215518 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747270217388:1822747270221948 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747270222358:1822747270222678 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747270224968:1822747270225968 116414:116414 hsa_signal_destroy() = 0 +1822747270227228:1822747270227678 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747270231388:1822747270231698 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747270232778:1822747270233158 116414:116414 hsa_signal_destroy() = 0 +1822747270234228:1822747270234768 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747270235678:1822747270236218 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747270236978:1822747270237318 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747270237708:1822747270238128 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747270238668:1822747270238948 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747270239388:1822747270240518 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747270240938:1822747272572323 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747273193617:1822747273194187 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747273196597:1822747273197127 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747279635857:1822747279637127 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747279652107:1822747279652657 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747279656038:1822747279656568 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747279659048:1822747279659958 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747279660348:1822747279660758 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747279661398:1822747279662328 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747280284031:1822747280284491 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747280286051:1822747280289102 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747280289632:1822747281714101 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747281714501:1822747281714931 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747281716311:1822747281716851 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747281719121:1822747281719651 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747281735021:1822747281735561 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747281738911:1822747281739441 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747281746971:1822747281747711 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 152 +1822747281748801:1822747281749401 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 152 +1822747281750391:1822747281752621 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747281753261:1822747281753571 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747281763471:1822747281764311 116414:116414 hsa_signal_store_relaxed(, 152) = void +1822747281766661:1822747281767191 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747281771141:1822747281771671 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747281773391:1822747281773931 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747281775291:1822747281775991 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747281776381:1822747281776661 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 153 +1822747281777051:1822747281777341 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 152 +1822747281777941:1822747281778211 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747281778621:1822747281779071 116414:116414 hsa_signal_store_relaxed(, 153) = void +1822747281780641:1822747283045889 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747283050609:1822747283051199 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747283053059:1822747283057149 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747283057629:1822747283057939 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747283060229:1822747283061379 116414:116414 hsa_signal_destroy() = 0 +1822747283062569:1822747283062959 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747283063429:1822747283063739 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747283064809:1822747283065159 116414:116414 hsa_signal_destroy() = 0 +1822747283066249:1822747283066799 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747283067709:1822747283068249 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747283069039:1822747283069369 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747283069769:1822747283070189 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747283070709:1822747283070989 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747283071429:1822747283072599 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747283073029:1822747285416594 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747286041978:1822747286042558 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747286044508:1822747286045088 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747292083976:1822747292085747 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747292099477:1822747292100017 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747292114167:1822747292114707 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747292116907:1822747292117807 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747292118207:1822747292119057 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747292119627:1822747292120867 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747292741371:1822747292741781 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747292743521:1822747292746191 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747292746711:1822747294169160 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747294169560:1822747294169980 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747294170940:1822747294171470 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747294173640:1822747294174180 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747294189440:1822747294189980 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747294193720:1822747294194260 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747294201180:1822747294201830 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 154 +1822747294203050:1822747294203350 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 154 +1822747294204340:1822747294207010 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747294207670:1822747294207980 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747294209220:1822747294209950 116414:116414 hsa_signal_store_relaxed(, 154) = void +1822747294212500:1822747294213050 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747294217180:1822747294217720 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747294219860:1822747294220400 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747294221580:1822747294222240 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747294222660:1822747294222940 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 155 +1822747294223330:1822747294223610 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 154 +1822747294224490:1822747294224770 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747294225160:1822747294225610 116414:116414 hsa_signal_store_relaxed(, 155) = void +1822747294227390:1822747295483438 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747295487918:1822747295488498 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747295490198:1822747295494358 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747295494838:1822747295495148 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747295500198:1822747295501338 116414:116414 hsa_signal_destroy() = 0 +1822747295502538:1822747295502978 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747295503448:1822747295503748 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747295504678:1822747295505018 116414:116414 hsa_signal_destroy() = 0 +1822747295506198:1822747295506758 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747295507668:1822747295508198 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747295509008:1822747295509489 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747295509889:1822747295510309 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747295511119:1822747295511389 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747295511839:1822747295513019 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747295513439:1822747297858244 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747298475668:1822747298476248 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747298478098:1822747298478678 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747304921009:1822747304922479 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747304937109:1822747304937649 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747304940569:1822747304941109 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747304943299:1822747304944229 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747304944619:1822747304945029 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747304945769:1822747304946999 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747305554193:1822747305554633 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747305556043:1822747305558503 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747305558913:1822747306982502 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747306982902:1822747306983332 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747306984792:1822747306985322 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747306987262:1822747306987792 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747307003372:1822747307003912 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747307007322:1822747307007862 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747307014802:1822747307015542 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 156 +1822747307024842:1822747307025482 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 156 +1822747307026772:1822747307029292 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747307029932:1822747307030322 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747307031392:1822747307032212 116414:116414 hsa_signal_store_relaxed(, 156) = void +1822747307034322:1822747307034862 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747307038732:1822747307039262 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747307042052:1822747307042592 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747307043922:1822747307044542 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747307044932:1822747307045212 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 157 +1822747307045622:1822747307045902 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 156 +1822747307046502:1822747307046782 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747307047172:1822747307047622 116414:116414 hsa_signal_store_relaxed(, 157) = void +1822747307049152:1822747308299690 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747308304430:1822747308305080 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747308306950:1822747308311410 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747308311830:1822747308312140 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747308314460:1822747308315510 116414:116414 hsa_signal_destroy() = 0 +1822747308316620:1822747308316940 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747308317410:1822747308317710 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747308318510:1822747308318850 116414:116414 hsa_signal_destroy() = 0 +1822747308319820:1822747308320370 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747308321270:1822747308321800 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747308322520:1822747308322850 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747308323250:1822747308323670 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747308324230:1822747308324500 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747308324950:1822747308326050 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747308326480:1822747310682835 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747311301239:1822747311301829 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747311313139:1822747311313719 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747317788010:1822747317789730 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747317804481:1822747317805021 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747317808141:1822747317808671 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747317811181:1822747317812101 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747317812491:1822747317813141 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747317813781:1822747317814991 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747318421794:1822747318422334 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747318423984:1822747318427174 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747318427684:1822747319864703 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747319865103:1822747319865533 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747319866903:1822747319867433 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747319869553:1822747319870083 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747319886273:1822747319886813 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747319890134:1822747319890664 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747319897724:1822747319898454 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 158 +1822747319899234:1822747319899844 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 158 +1822747319900954:1822747319903684 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747319904354:1822747319904654 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747319905744:1822747319906574 116414:116414 hsa_signal_store_relaxed(, 158) = void +1822747319908934:1822747319909474 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747319913374:1822747319913904 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747319916264:1822747319916804 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747319918234:1822747319918874 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747319919264:1822747319919544 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 159 +1822747319919944:1822747319920214 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 158 +1822747319921044:1822747319921314 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747319921704:1822747319922164 116414:116414 hsa_signal_store_relaxed(, 159) = void +1822747319923574:1822747321186652 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747321199972:1822747321200542 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747321202072:1822747321206432 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747321206912:1822747321207222 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747321209422:1822747321210892 116414:116414 hsa_signal_destroy() = 0 +1822747321211992:1822747321212372 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747321212792:1822747321213092 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747321214032:1822747321214372 116414:116414 hsa_signal_destroy() = 0 +1822747321215542:1822747321216092 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747321217002:1822747321217532 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747321218262:1822747321218682 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747321219082:1822747321219502 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747321220022:1822747321220292 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747321220742:1822747321221822 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747321222252:1822747323556667 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747324199791:1822747324200361 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747324202041:1822747324202581 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747330640423:1822747330641583 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747330656613:1822747330657153 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747330660303:1822747330660833 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747330663293:1822747330664193 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747330664663:1822747330665013 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747330665533:1822747330666643 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747331257277:1822747331257657 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747331259227:1822747331261857 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747331262417:1822747332686656 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747332687116:1822747332687436 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747332688416:1822747332688946 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747332691306:1822747332691846 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747332715596:1822747332716136 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747332719696:1822747332720226 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747332727106:1822747332728006 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 160 +1822747332728766:1822747332729406 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 160 +1822747332730456:1822747332732976 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747332733626:1822747332733936 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747332734966:1822747332735836 116414:116414 hsa_signal_store_relaxed(, 160) = void +1822747332738256:1822747332738786 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747332743236:1822747332743766 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747332745526:1822747332746056 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747332747256:1822747332747876 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747332748266:1822747332748546 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 161 +1822747332748936:1822747332749206 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 160 +1822747332749946:1822747332750226 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747332750616:1822747332751066 116414:116414 hsa_signal_store_relaxed(, 161) = void +1822747332752836:1822747334013604 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747334018064:1822747334018644 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747334020214:1822747334024584 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747334025014:1822747334025324 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747334027524:1822747334028424 116414:116414 hsa_signal_destroy() = 0 +1822747334029824:1822747334030264 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747334030684:1822747334030984 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747334032014:1822747334032354 116414:116414 hsa_signal_destroy() = 0 +1822747334033434:1822747334033984 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747334034754:1822747334035294 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747334036004:1822747334036334 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747334036734:1822747334037244 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747334037724:1822747334038004 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747334038444:1822747334039524 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747334042324:1822747336405499 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747337032653:1822747337033243 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747337035163:1822747337035743 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747343478674:1822747343480134 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747343495274:1822747343495814 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747343498864:1822747343499394 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747343501894:1822747343503104 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747343503504:1822747343503904 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747343504564:1822747343505364 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747344120968:1822747344121458 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747344123148:1822747344125798 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747344126398:1822747345549997 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747345550397:1822747345550827 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747345552207:1822747345552747 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747345554667:1822747345555207 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747345570397:1822747345570927 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747345574847:1822747345575377 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747345582337:1822747345583067 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 162 +1822747345583807:1822747345584417 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 162 +1822747345585387:1822747345588457 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747345589107:1822747345589417 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747345590687:1822747345591507 116414:116414 hsa_signal_store_relaxed(, 162) = void +1822747345593708:1822747345594248 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747345598348:1822747345598928 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747345601228:1822747345601768 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747345603078:1822747345603958 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747345604348:1822747345604628 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 163 +1822747345605028:1822747345605298 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 162 +1822747345614918:1822747345615208 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747345615608:1822747345616058 116414:116414 hsa_signal_store_relaxed(, 163) = void +1822747345617498:1822747346883706 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747346888546:1822747346889076 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747346890636:1822747346894856 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747346895276:1822747346895586 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747346897726:1822747346898716 116414:116414 hsa_signal_destroy() = 0 +1822747346899806:1822747346900126 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747346900596:1822747346900906 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747346901986:1822747346902376 116414:116414 hsa_signal_destroy() = 0 +1822747346903486:1822747346904036 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747346904936:1822747346905476 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747346906246:1822747346906666 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747346907066:1822747346907476 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747346907896:1822747346908166 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747346908606:1822747346909686 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747346910106:1822747349243160 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747349868534:1822747349869124 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747349870964:1822747349871545 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747355968424:1822747355969684 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747355983664:1822747355984204 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747355986904:1822747355987434 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747355989524:1822747355990414 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747355990814:1822747355991214 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747355992034:1822747355992994 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747356603948:1822747356604468 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747356605848:1822747356608698 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747356609238:1822747358031147 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747358031547:1822747358031977 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747358042997:1822747358043537 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747358046057:1822747358046587 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747358062077:1822747358062607 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747358066367:1822747358066897 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747358073547:1822747358074267 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 164 +1822747358075177:1822747358075627 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 164 +1822747358076587:1822747358079097 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747358079737:1822747358080067 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747358081157:1822747358081997 116414:116414 hsa_signal_store_relaxed(, 164) = void +1822747358084297:1822747358084827 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747358089627:1822747358090167 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747358092797:1822747358093337 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747358094377:1822747358095027 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747358095417:1822747358095697 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 165 +1822747358096087:1822747358096367 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 164 +1822747358097307:1822747358097587 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747358097987:1822747358098437 116414:116414 hsa_signal_store_relaxed(, 165) = void +1822747358100217:1822747359369396 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747359374096:1822747359374616 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747359376306:1822747359380706 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747359381126:1822747359381436 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747359384016:1822747359385026 116414:116414 hsa_signal_destroy() = 0 +1822747359386476:1822747359386866 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747359387336:1822747359387646 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747359388996:1822747359389336 116414:116414 hsa_signal_destroy() = 0 +1822747359390326:1822747359390886 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747359391786:1822747359392326 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747359393046:1822747359393466 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747359396026:1822747359396456 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747359396876:1822747359397146 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747359397596:1822747359398826 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747359399266:1822747361766251 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747362394314:1822747362394904 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747362396834:1822747362397374 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747368848266:1822747368849746 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747368865536:1822747368866076 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747368869656:1822747368870186 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747368872226:1822747368873366 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747368873766:1822747368874396 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747368875106:1822747368876116 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747369464620:1822747369465070 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747369466390:1822747369469530 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747369470060:1822747370894919 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747370895319:1822747370895629 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747370896799:1822747370897349 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747370898899:1822747370899429 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747370915029:1822747370915569 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747370918959:1822747370919489 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747370925879:1822747370926619 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 166 +1822747370927379:1822747370927849 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 166 +1822747370928819:1822747370931779 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747370932419:1822747370932719 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747370934019:1822747370934829 116414:116414 hsa_signal_store_relaxed(, 166) = void +1822747370937079:1822747370937609 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747370941669:1822747370942199 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747370944089:1822747370944649 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747370946039:1822747370946649 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747370955409:1822747370955699 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 167 +1822747370956089:1822747370956359 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 166 +1822747370957169:1822747370957449 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747370957839:1822747370958289 116414:116414 hsa_signal_store_relaxed(, 167) = void +1822747370960199:1822747372201607 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747372206417:1822747372206997 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747372208567:1822747372212737 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747372213157:1822747372213467 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747372215587:1822747372216647 116414:116414 hsa_signal_destroy() = 0 +1822747372217697:1822747372218137 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747372218547:1822747372218857 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747372219767:1822747372220107 116414:116414 hsa_signal_destroy() = 0 +1822747372221137:1822747372221687 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747372222447:1822747372222987 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747372223817:1822747372224157 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747372224557:1822747372224967 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747372225377:1822747372225647 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747372226087:1822747372227287 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747372227727:1822747374594882 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747375217216:1822747375217786 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747375219696:1822747375220246 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747381678487:1822747381680067 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747381696247:1822747381696777 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747381699827:1822747381700357 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747381702407:1822747381703637 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747381704037:1822747381704667 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747381705317:1822747381706617 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747382310581:1822747382311131 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747382322081:1822747382325111 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747382325591:1822747383748301 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747383748701:1822747383749131 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747383750461:1822747383750991 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747383752691:1822747383753231 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747383767671:1822747383768211 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747383771551:1822747383772091 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747383778731:1822747383779461 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 168 +1822747383780351:1822747383780801 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 168 +1822747383781771:1822747383784881 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747383785581:1822747383785891 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747383786951:1822747383787791 116414:116414 hsa_signal_store_relaxed(, 168) = void +1822747383789941:1822747383790471 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747383794381:1822747383794921 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747383796851:1822747383797411 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747383798681:1822747383799471 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747383799891:1822747383800161 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 169 +1822747383800561:1822747383800841 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 168 +1822747383801701:1822747383801971 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747383802371:1822747383802821 116414:116414 hsa_signal_store_relaxed(, 169) = void +1822747383804491:1822747385053749 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747385058219:1822747385058749 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747385060359:1822747385064519 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747385064989:1822747385065299 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747385067559:1822747385068449 116414:116414 hsa_signal_destroy() = 0 +1822747385069489:1822747385069899 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747385070369:1822747385070669 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747385071619:1822747385071959 116414:116414 hsa_signal_destroy() = 0 +1822747385075309:1822747385075859 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747385076799:1822747385077329 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747385078079:1822747385078499 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747385078909:1822747385079319 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747385079879:1822747385080149 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747385080619:1822747385081769 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747385082179:1822747387448754 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747388088508:1822747388089088 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747388090908:1822747388091478 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747394532749:1822747394534149 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747394549769:1822747394550309 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747394553779:1822747394554309 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747394556439:1822747394557369 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747394557769:1822747394558039 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747394558689:1822747394559949 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747395168593:1822747395168973 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747395170573:1822747395173243 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747395173783:1822747396597472 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747396597952:1822747396598272 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747396599142:1822747396599682 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747396601712:1822747396602242 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747396625413:1822747396625973 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747396629763:1822747396630303 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747396637173:1822747396637893 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 170 +1822747396638683:1822747396639293 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 170 +1822747396640243:1822747396642713 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747396643343:1822747396643653 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747396644783:1822747396645623 116414:116414 hsa_signal_store_relaxed(, 170) = void +1822747396647763:1822747396648303 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747396655543:1822747396656073 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747396658033:1822747396658563 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747396659613:1822747396660313 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747396660703:1822747396660983 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 171 +1822747396661373:1822747396661653 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 170 +1822747396662263:1822747396662533 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747396662923:1822747396663373 116414:116414 hsa_signal_store_relaxed(, 171) = void +1822747396664923:1822747397937491 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747397942331:1822747397942851 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747397944481:1822747397948841 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747397949251:1822747397949571 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747397951881:1822747397952861 116414:116414 hsa_signal_destroy() = 0 +1822747397954041:1822747397954431 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747397954841:1822747397955151 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747397956041:1822747397956381 116414:116414 hsa_signal_destroy() = 0 +1822747397957431:1822747397957981 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747397958891:1822747397959431 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747397960151:1822747397960481 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747397960881:1822747397961301 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747397961711:1822747397961991 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747397962431:1822747397963611 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747397964041:1822747400283186 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747400906210:1822747400906790 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747400908720:1822747400909260 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747407363081:1822747407364221 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747407379351:1822747407379891 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747407383081:1822747407383611 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747407385761:1822747407386681 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747407400571:1822747407401191 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747407401851:1822747407403391 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747408015165:1822747408015525 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747408016615:1822747408019655 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747408020185:1822747409441924 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747409442324:1822747409442624 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747409443714:1822747409444244 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747409446594:1822747409447134 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747409463154:1822747409463714 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747409467124:1822747409467664 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747409474504:1822747409475384 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 172 +1822747409476314:1822747409476924 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 172 +1822747409477914:1822747409480924 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747409481654:1822747409482044 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747409483114:1822747409483944 116414:116414 hsa_signal_store_relaxed(, 172) = void +1822747409486434:1822747409486974 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747409491044:1822747409491604 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747409493344:1822747409493904 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747409495164:1822747409495764 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747409496154:1822747409496434 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 173 +1822747409496824:1822747409497104 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 172 +1822747409497704:1822747409497984 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747409498384:1822747409498834 116414:116414 hsa_signal_store_relaxed(, 173) = void +1822747409500394:1822747410771183 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747410775703:1822747410776283 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747410777873:1822747410782063 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747410782483:1822747410782793 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747410785263:1822747410786383 116414:116414 hsa_signal_destroy() = 0 +1822747410787443:1822747410787883 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747410791373:1822747410791683 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747410792553:1822747410792903 116414:116414 hsa_signal_destroy() = 0 +1822747410793983:1822747410794533 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747410795463:1822747410796003 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747410796713:1822747410797343 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747410797743:1822747410798593 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747410799153:1822747410799423 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747410799873:1822747410801303 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747410801733:1822747413145028 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747413766281:1822747413766871 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747413768571:1822747413769111 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747419811450:1822747419812680 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747419828690:1822747419829240 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747419832350:1822747419832880 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747419835180:1822747419836070 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747419836470:1822747419836910 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747419837890:1822747419838660 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747420449934:1822747420450334 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747420451884:1822747420454544 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747420455024:1822747421879173 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747421879573:1822747421880003 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747421881123:1822747421881663 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747421883693:1822747421884223 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747421899813:1822747421900343 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747421904133:1822747421904673 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747421911193:1822747421911983 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 174 +1822747421912773:1822747421913373 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 174 +1822747421914433:1822747421916873 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747421926333:1822747421926653 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747421928003:1822747421928873 116414:116414 hsa_signal_store_relaxed(, 174) = void +1822747421931043:1822747421931573 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747421935674:1822747421936204 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747421939254:1822747421939794 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747421941134:1822747421941874 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747421942264:1822747421942544 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 175 +1822747421942934:1822747421943214 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 174 +1822747421943884:1822747421944164 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747421944554:1822747421945004 116414:116414 hsa_signal_store_relaxed(, 175) = void +1822747421946604:1822747423202352 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747423207202:1822747423207762 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747423209352:1822747423213702 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747423214192:1822747423214502 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747423216912:1822747423218092 116414:116414 hsa_signal_destroy() = 0 +1822747423219142:1822747423219462 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747423219932:1822747423220232 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747423221322:1822747423221662 116414:116414 hsa_signal_destroy() = 0 +1822747423222762:1822747423223312 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747423224222:1822747423224752 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747423225582:1822747423225992 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747423226392:1822747423226812 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747423227282:1822747423227552 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747423228002:1822747423229102 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747423229522:1822747425591667 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747426213221:1822747426213811 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747426215551:1822747426216081 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747432670002:1822747432671332 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747432686562:1822747432687102 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747432700412:1822747432700942 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747432703402:1822747432704332 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747432704722:1822747432705122 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747432705852:1822747432707092 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747433315886:1822747433316316 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747433317686:1822747433320016 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747433320576:1822747434743075 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747434743485:1822747434743945 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747434745185:1822747434745725 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747434747455:1822747434747995 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747434762215:1822747434762755 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747434766285:1822747434766825 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747434773885:1822747434774625 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 176 +1822747434775515:1822747434775825 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 176 +1822747434776875:1822747434779745 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747434780435:1822747434780745 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747434781815:1822747434782625 116414:116414 hsa_signal_store_relaxed(, 176) = void +1822747434784755:1822747434785295 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747434789155:1822747434789695 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747434791895:1822747434792465 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747434793495:1822747434794155 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747434794565:1822747434794865 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 177 +1822747434795265:1822747434795545 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 176 +1822747434796345:1822747434796625 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747434797025:1822747434797475 116414:116414 hsa_signal_store_relaxed(, 177) = void +1822747434799165:1822747436053983 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747436059313:1822747436059913 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747436061343:1822747436065353 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747436068584:1822747436068924 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747436071054:1822747436072104 116414:116414 hsa_signal_destroy() = 0 +1822747436073194:1822747436073644 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747436074114:1822747436074414 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747436075204:1822747436075544 116414:116414 hsa_signal_destroy() = 0 +1822747436076504:1822747436077044 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747436077984:1822747436078524 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747436079244:1822747436079664 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747436080074:1822747436080484 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747436081054:1822747436081324 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747436081774:1822747436082854 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747436083284:1822747438463489 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747439084533:1822747439085123 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747439087033:1822747439087653 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747445541734:1822747445543304 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747445558074:1822747445558614 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747445561634:1822747445562164 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747445564424:1822747445565354 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747445565744:1822747445566104 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747445566754:1822747445567874 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747446174108:1822747446174868 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747446176158:1822747446179338 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747446179888:1822747447603417 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747447603807:1822747447604237 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747447605937:1822747447606467 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747447607967:1822747447608497 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747447623677:1822747447624217 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747447627777:1822747447628307 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747447635007:1822747447635907 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 178 +1822747447642987:1822747447643457 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 178 +1822747447644437:1822747447646907 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747447647537:1822747447647847 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747447648867:1822747447649667 116414:116414 hsa_signal_store_relaxed(, 178) = void +1822747447651917:1822747447652477 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747447656377:1822747447656907 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747447659137:1822747447659677 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747447660897:1822747447661477 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747447661877:1822747447662157 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 179 +1822747447662567:1822747447662857 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 178 +1822747447663447:1822747447663717 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747447664107:1822747447664557 116414:116414 hsa_signal_store_relaxed(, 179) = void +1822747447666517:1822747448927695 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747448932255:1822747448932785 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747448934365:1822747448939155 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747448939635:1822747448939945 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747448942065:1822747448943225 116414:116414 hsa_signal_destroy() = 0 +1822747448944325:1822747448944765 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747448945235:1822747448945545 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747448946575:1822747448946915 116414:116414 hsa_signal_destroy() = 0 +1822747448947985:1822747448948545 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747448949435:1822747448949975 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747448950895:1822747448951235 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747448951635:1822747448952045 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747448952455:1822747448952735 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747448953175:1822747448954225 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747448954646:1822747451328661 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747451950155:1822747451950745 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747451955875:1822747451956415 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747458402416:1822747458403976 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747458418866:1822747458419406 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747458422506:1822747458423036 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747458425386:1822747458426586 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747458426986:1822747458427336 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747458427896:1822747458428886 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747459017480:1822747459017940 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747459019430:1822747459021880 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747459022440:1822747460443019 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747460443479:1822747460443799 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747460445289:1822747460445829 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747460448999:1822747460449539 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747460465279:1822747460465859 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747460469299:1822747460469839 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747460476339:1822747460477109 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 180 +1822747460477859:1822747460478469 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 180 +1822747460479539:1822747460482619 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747460483269:1822747460483569 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747460484819:1822747460485529 116414:116414 hsa_signal_store_relaxed(, 180) = void +1822747460488159:1822747460488699 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747460492479:1822747460493009 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747460494629:1822747460495169 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747460496379:1822747460497079 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747460497619:1822747460497899 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 181 +1822747460498299:1822747460498589 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 180 +1822747460499169:1822747460499449 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747460499839:1822747460500289 116414:116414 hsa_signal_store_relaxed(, 181) = void +1822747460507589:1822747461765257 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747461769817:1822747461770387 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747461772187:1822747461776447 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747461776867:1822747461777177 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747461779427:1822747461780467 116414:116414 hsa_signal_destroy() = 0 +1822747461781657:1822747461782197 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747461782677:1822747461782977 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747461783927:1822747461784267 116414:116414 hsa_signal_destroy() = 0 +1822747461785387:1822747461785937 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747461786707:1822747461787237 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747461788007:1822747461788427 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747461788817:1822747461789237 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747461789717:1822747461789987 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747461790427:1822747461791627 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747461792047:1822747464116062 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747464739636:1822747464740216 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747464742116:1822747464742646 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747471176137:1822747471177607 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747471191627:1822747471192167 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747471195187:1822747471195727 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747471197957:1822747471198927 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747471199317:1822747471199727 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747471200387:1822747471201347 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747471808981:1822747471809351 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747471810701:1822747471813461 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747471813961:1822747473238480 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747473239020:1822747473239460 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747473240610:1822747473241150 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747473243560:1822747473244100 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747473269550:1822747473270090 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747473273660:1822747473274200 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747473281750:1822747473282470 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 182 +1822747473283350:1822747473283960 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 182 +1822747473284950:1822747473287550 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747473288200:1822747473288510 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747473289600:1822747473290330 116414:116414 hsa_signal_store_relaxed(, 182) = void +1822747473292380:1822747473292910 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747473297020:1822747473297560 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747473299750:1822747473300290 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747473301630:1822747473302330 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747473302720:1822747473303000 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 183 +1822747473303390:1822747473303670 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 182 +1822747473304310:1822747473304590 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747473304990:1822747473305440 116414:116414 hsa_signal_store_relaxed(, 183) = void +1822747473307160:1822747474579159 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747474583939:1822747474584539 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747474586099:1822747474590349 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747474590759:1822747474591069 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747474593189:1822747474594249 116414:116414 hsa_signal_destroy() = 0 +1822747474595429:1822747474595819 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747474596229:1822747474596539 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747474597749:1822747474598089 116414:116414 hsa_signal_destroy() = 0 +1822747474599179:1822747474599729 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747474600619:1822747474601149 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747474601869:1822747474602289 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747474602689:1822747474603099 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747474603659:1822747474603929 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747474606409:1822747474607559 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747474607989:1822747476962604 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747477587348:1822747477587938 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747477589838:1822747477590448 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747484025008:1822747484026458 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747484041599:1822747484042129 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747484045149:1822747484045679 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747484048069:1822747484048959 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747484049429:1822747484049839 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747484050409:1822747484051629 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747484658012:1822747484658582 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747484660222:1822747484663153 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747484663733:1822747486086062 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747486086462:1822747486086892 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747486087922:1822747486088452 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747486090552:1822747486091092 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747486105892:1822747486106432 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747486109742:1822747486110272 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747486117472:1822747486118192 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 184 +1822747486119082:1822747486119712 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 184 +1822747486120682:1822747486123442 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747486124322:1822747486124632 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747486125672:1822747486126532 116414:116414 hsa_signal_store_relaxed(, 184) = void +1822747486129012:1822747486129552 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747486133512:1822747486134042 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747486136192:1822747486136732 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747486137962:1822747486138572 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747486138962:1822747486139242 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 185 +1822747486139642:1822747486139922 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 184 +1822747486149012:1822747486149302 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747486149702:1822747486150152 116414:116414 hsa_signal_store_relaxed(, 185) = void +1822747486151812:1822747487403120 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747487407620:1822747487408250 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747487410060:1822747487414460 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747487414880:1822747487415190 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747487417730:1822747487418780 116414:116414 hsa_signal_destroy() = 0 +1822747487419970:1822747487420420 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747487420890:1822747487421190 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747487422220:1822747487422560 116414:116414 hsa_signal_destroy() = 0 +1822747487423520:1822747487424080 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747487424840:1822747487425370 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747487426070:1822747487426480 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747487426880:1822747487427290 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747487427770:1822747487428050 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747487428490:1822747487429650 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747487430060:1822747489795855 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747490415289:1822747490415869 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747490417619:1822747490418199 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747496862251:1822747496863481 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747496878261:1822747496878801 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747496881831:1822747496882371 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747496884921:1822747496885841 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747496886231:1822747496886861 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747496887501:1822747496888241 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747497497055:1822747497497605 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747497498885:1822747497501975 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747497502515:1822747498927444 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747498937874:1822747498938334 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747498939134:1822747498939664 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747498941654:1822747498942184 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747498957574:1822747498958104 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747498961514:1822747498962054 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747498969024:1822747498969814 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 186 +1822747498970744:1822747498971054 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 186 +1822747498972054:1822747498974644 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747498975274:1822747498975584 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747498976664:1822747498977514 116414:116414 hsa_signal_store_relaxed(, 186) = void +1822747498979684:1822747498980214 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747498983984:1822747498984514 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747498986544:1822747498987084 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747498988514:1822747498989144 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747498989534:1822747498989814 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 187 +1822747498990214:1822747498990494 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 186 +1822747498991304:1822747498991584 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747498991984:1822747498992434 116414:116414 hsa_signal_store_relaxed(, 187) = void +1822747498993894:1822747500258382 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747500263282:1822747500264162 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747500265782:1822747500270052 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747500270542:1822747500270852 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747500272972:1822747500274432 116414:116414 hsa_signal_destroy() = 0 +1822747500275552:1822747500275872 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747500276292:1822747500276592 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747500277552:1822747500277892 116414:116414 hsa_signal_destroy() = 0 +1822747500279042:1822747500279592 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747500280492:1822747500281022 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747500281982:1822747500282322 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747500284962:1822747500285392 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747500285932:1822747500286202 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747500286652:1822747500287812 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747500288242:1822747502645347 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747503264531:1822747503265121 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747503267071:1822747503267611 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747509753333:1822747509754743 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747509770333:1822747509770873 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747509774193:1822747509774723 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747509776953:1822747509777883 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747509778273:1822747509779133 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747509779793:1822747509780663 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747510386477:1822747510386917 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747510388007:1822747510390857 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747510391407:1822747511812186 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747511812586:1822747511813016 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747511814456:1822747511814986 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747511816886:1822747511817426 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747511832126:1822747511832656 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747511836166:1822747511836706 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747511843496:1822747511844226 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 188 +1822747511845426:1822747511845876 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 188 +1822747511846846:1822747511849156 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747511849796:1822747511850106 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747511851106:1822747511851896 116414:116414 hsa_signal_store_relaxed(, 188) = void +1822747511854196:1822747511854746 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747511858906:1822747511859446 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747511861736:1822747511862276 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747511875197:1822747511875887 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747511876297:1822747511876577 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 189 +1822747511876967:1822747511877257 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 188 +1822747511877847:1822747511878127 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747511878517:1822747511878977 116414:116414 hsa_signal_store_relaxed(, 189) = void +1822747511880477:1822747513129574 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747513134834:1822747513135404 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747513136914:1822747513141424 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747513141904:1822747513142214 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747513144404:1822747513145454 116414:116414 hsa_signal_destroy() = 0 +1822747513146504:1822747513146894 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747513147314:1822747513147614 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747513148544:1822747513148884 116414:116414 hsa_signal_destroy() = 0 +1822747513149984:1822747513150534 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747513151434:1822747513151974 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747513152674:1822747513153014 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747513153404:1822747513153814 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747513154294:1822747513154574 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747513155004:1822747513156104 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747513156525:1822747515497939 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747516146013:1822747516146653 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747516148463:1822747516149003 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747522594135:1822747522595385 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747522611015:1822747522611555 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747522614685:1822747522615225 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747522617605:1822747522618505 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747522618895:1822747522619525 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747522620165:1822747522621235 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747523226019:1822747523226499 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747523237889:1822747523241039 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747523241589:1822747524665478 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747524665918:1822747524666348 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747524667228:1822747524667768 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747524669538:1822747524670068 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747524684468:1822747524684998 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747524688518:1822747524689058 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747524696238:1822747524696888 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 190 +1822747524697658:1822747524698118 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 190 +1822747524699098:1822747524701698 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747524702328:1822747524702638 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747524703718:1822747524704548 116414:116414 hsa_signal_store_relaxed(, 190) = void +1822747524706838:1822747524707398 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747524711478:1822747524712018 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747524714038:1822747524714578 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747524715638:1822747524716348 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747524716748:1822747524717018 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 191 +1822747524717408:1822747524717688 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 190 +1822747524718528:1822747524718808 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747524719198:1822747524719648 116414:116414 hsa_signal_store_relaxed(, 191) = void +1822747524721218:1822747525985736 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747525990426:1822747525990956 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747525992476:1822747525996896 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747525997316:1822747525997626 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747525999896:1822747526000956 116414:116414 hsa_signal_destroy() = 0 +1822747526001996:1822747526002436 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747526002906:1822747526003216 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747526004216:1822747526004556 116414:116414 hsa_signal_destroy() = 0 +1822747526008196:1822747526008756 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747526009706:1822747526010236 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747526011126:1822747526011556 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747526011956:1822747526012426 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747526013036:1822747526013306 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747526013746:1822747526014846 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747526015266:1822747528357531 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747528984065:1822747528984645 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747528986585:1822747528987215 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747535044764:1822747535045994 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747535060964:1822747535061514 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747535064534:1822747535065064 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747535067164:1822747535068054 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747535068454:1822747535068864 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747535069454:1822747535070354 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747535678118:1822747535678628 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747535680068:1822747535683038 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747535683578:1822747537107137 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747537107567:1822747537108007 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747537109137:1822747537109667 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747537111687:1822747537112217 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747537137927:1822747537138457 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747537142337:1822747537142867 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747537149667:1822747537150407 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 192 +1822747537151207:1822747537151677 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 192 +1822747537152797:1822747537155297 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747537156137:1822747537156467 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747537157647:1822747537158467 116414:116414 hsa_signal_store_relaxed(, 192) = void +1822747537162397:1822747537162937 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747537167057:1822747537167587 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747537169747:1822747537170277 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747537171557:1822747537172187 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747537172577:1822747537172857 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 193 +1822747537173247:1822747537173527 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 192 +1822747537174317:1822747537174597 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747537174987:1822747537175437 116414:116414 hsa_signal_store_relaxed(, 193) = void +1822747537177207:1822747538439885 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747538444565:1822747538445135 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747538446615:1822747538450925 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747538451355:1822747538451665 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747538453865:1822747538454915 116414:116414 hsa_signal_destroy() = 0 +1822747538455995:1822747538456535 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747538457005:1822747538457305 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747538458245:1822747538458585 116414:116414 hsa_signal_destroy() = 0 +1822747538459555:1822747538460105 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747538460995:1822747538461535 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747538462195:1822747538462775 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747538463175:1822747538463585 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747538464065:1822747538464335 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747538464785:1822747538465845 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747538466265:1822747540808780 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747541432674:1822747541433254 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747541435114:1822747541435644 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747547531423:1822747547532633 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747547548043:1822747547548583 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747547551563:1822747547552093 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747547554193:1822747547555123 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747547566913:1822747547567333 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747547567993:1822747547569223 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747548178497:1822747548178997 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747548180577:1822747548183267 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747548183777:1822747549606527 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747549606927:1822747549607237 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747549608217:1822747549608747 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747549610687:1822747549611217 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747549626467:1822747549627047 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747549630997:1822747549631527 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747549638487:1822747549639367 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 194 +1822747549640617:1822747549641257 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 194 +1822747549642287:1822747549645047 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747549645687:1822747549645997 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747549647037:1822747549647857 116414:116414 hsa_signal_store_relaxed(, 194) = void +1822747549649997:1822747549650527 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747549654597:1822747549655177 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747549657517:1822747549658057 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747549659287:1822747549659987 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747549660377:1822747549660647 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 195 +1822747549661047:1822747549661317 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 194 +1822747549662117:1822747549662397 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747549662797:1822747549663237 116414:116414 hsa_signal_store_relaxed(, 195) = void +1822747549664867:1822747550927885 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747550933125:1822747550933645 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747550935495:1822747550939675 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747550940145:1822747550940465 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747550942785:1822747550943905 116414:116414 hsa_signal_destroy() = 0 +1822747550948075:1822747550948645 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747550949075:1822747550949375 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747550950265:1822747550950615 116414:116414 hsa_signal_destroy() = 0 +1822747550951655:1822747550952205 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747550953115:1822747550953645 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747550954395:1822747550954975 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747550955375:1822747550956205 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747550956615:1822747550956895 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747550957335:1822747550958685 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747550959105:1822747553304780 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747553929754:1822747553930334 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747553932394:1822747553932964 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747560387065:1822747560388415 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747560403595:1822747560404135 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747560407325:1822747560407865 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747560410065:1822747560410975 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747560411365:1822747560411955 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747560412595:1822747560413595 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747561020609:1822747561021049 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747561022349:1822747561025409 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747561025969:1822747562448308 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747562448708:1822747562449138 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747562450148:1822747562450678 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747562452378:1822747562452918 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747562468408:1822747562468948 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747562472768:1822747562473298 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747562480028:1822747562480978 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 196 +1822747562481918:1822747562482718 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 196 +1822747562483748:1822747562486578 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747562496329:1822747562496649 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747562497669:1822747562498579 116414:116414 hsa_signal_store_relaxed(, 196) = void +1822747562500889:1822747562501429 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747562505259:1822747562505799 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747562507479:1822747562508009 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747562509599:1822747562510189 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747562510579:1822747562510859 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 197 +1822747562511259:1822747562511539 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 196 +1822747562512149:1822747562512429 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747562512819:1822747562513279 116414:116414 hsa_signal_store_relaxed(, 197) = void +1822747562514809:1822747563784907 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747563789447:1822747563790037 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747563791757:1822747563796357 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747563796827:1822747563797137 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747563799477:1822747563800707 116414:116414 hsa_signal_destroy() = 0 +1822747563802017:1822747563802457 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747563802867:1822747563803167 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747563804297:1822747563804637 116414:116414 hsa_signal_destroy() = 0 +1822747563805727:1822747563806277 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747563807167:1822747563807707 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747563808517:1822747563808857 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747563809267:1822747563809677 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747563810087:1822747563810357 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747563810807:1822747563812007 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747563812417:1822747566191552 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747566814226:1822747566814806 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747566816706:1822747566817276 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747572864634:1822747572866034 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747572892975:1822747572893515 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747572896535:1822747572897065 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747572899315:1822747572900215 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747572900605:1822747572901015 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747572901655:1822747572902605 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747573508058:1822747573508508 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747573509898:1822747573512568 116414:116414 hsa_amd_memory_async_copy(0x7f074e800000, , 0x7f0760400000, , , , 0, ) = 0 +1822747573513088:1822747574936418 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747574936818:1822747574937278 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747574938488:1822747574939028 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747574941028:1822747574941558 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747574957348:1822747574957888 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747574961318:1822747574961858 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6580) = 0 +1822747574968798:1822747574969528 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 198 +1822747574970418:1822747574970858 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 198 +1822747574971968:1822747574974708 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c61f0) = 0 +1822747574975348:1822747574975658 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747574976638:1822747574977578 116414:116414 hsa_signal_store_relaxed(, 198) = void +1822747574979978:1822747574980518 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6590) = 0 +1822747574984598:1822747574985138 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747574987368:1822747574987928 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6150) = 0 +1822747574989078:1822747574989788 116414:116414 hsa_signal_create(1, , 0, 0x7ffcc96c5e30) = 0 +1822747574990178:1822747574990458 116414:116414 hsa_queue_load_write_index_relaxed(0x7f077bf02000) = 199 +1822747574990848:1822747574991128 116414:116414 hsa_queue_load_read_index_scacquire(0x7f077bf02000) = 198 +1822747574991948:1822747574992218 116414:116414 hsa_queue_store_write_index_relaxed(0x7f077bf02000, ) = void +1822747574992618:1822747574993068 116414:116414 hsa_signal_store_relaxed(, 199) = void +1822747574994438:1822747576251726 116414:116414 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +1822747576256386:1822747576256966 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822747576258546:1822747576262856 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747576266286:1822747576266706 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5fb8) = 0 +1822747576269366:1822747576270476 116414:116414 hsa_signal_destroy() = 0 +1822747576271746:1822747576272206 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747576272616:1822747576272916 116414:116414 hsa_amd_profiling_get_dispatch_time(, , 0x7ffcc96c5ec8) = 0 +1822747576273966:1822747576274346 116414:116414 hsa_signal_destroy() = 0 +1822747576275496:1822747576276036 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6380) = 0 +1822747576276956:1822747576277496 116414:116414 hsa_system_get_info(2, 0x7ffcc96c63c8) = 0 +1822747576278226:1822747576278636 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747576279046:1822747576279466 116414:116414 hsa_signal_store_screlease(, 0) = void +1822747576280026:1822747576280306 116414:116414 hsa_signal_store_screlease(, 1) = void +1822747576280746:1822747576281906 116414:116414 hsa_amd_memory_async_copy(0x7f074f400000, , 0x7f074e200000, , , , 0, ) = 0 +1822747576282336:1822747578641251 116414:116414 hsa_signal_wait_scacquire(, 2, 1, , 1) = 0 +1822747579259055:1822747579259635 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6270) = 0 +1822747579261365:1822747579261935 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747585400924:1822747585402374 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747585422634:1822747585424114 116414:116414 hsa_signal_load_scacquire() = 0 +1822747585429354:1822747585503685 116414:116414 hsa_amd_memory_pool_free(0x7f074e800000) = 0 +1822747585510455:1822747585510995 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747585512935:1822747585513475 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747585514955:1822747585515295 116414:116414 hsa_signal_load_scacquire() = 0 +1822747585515825:1822747585527825 116414:116414 hsa_amd_memory_pool_free(0x7f074e200000) = 0 +1822747585529925:1822747585530465 116414:116414 hsa_system_get_info(2, 0x7ffcc96c6730) = 0 +1822747585548115:1822747585573865 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585574725:1822747585577005 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585578145:1822747585580245 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585581055:1822747585582885 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585583675:1822747585585765 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585586525:1822747585588735 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585597575:1822747585599805 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585600725:1822747585602665 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585603415:1822747585605635 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585606455:1822747585608375 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585609525:1822747585611475 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585612375:1822747585614545 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585615405:1822747585617345 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585618635:1822747585620675 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585621465:1822747585623735 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585624536:1822747585626626 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585627286:1822747585629366 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585629996:1822747585631916 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585632616:1822747585634656 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585635296:1822747585637346 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585638376:1822747585640376 116414:116414 hsa_code_object_reader_destroy() = 0 +1822747585641546:1822747585643406 116414:116414 hsa_code_object_reader_destroy() = 0 +1822745854975538 116414:116414 0:"before hipLaunchKernel" +1822745854987608 116414:116414 1:"hipLaunchKernel" +1822746303445573 116414:116414 0:"after hipLaunchKernel" +1822746303447393 116414:116414 1:"hipMemcpy" +1822746307822981 116414:116414 2:"" +1822746307824171 116414:116414 2:"" +1822746322787926 116414:116414 0:"before hipLaunchKernel" +1822746322789216 116414:116414 1:"hipLaunchKernel" +1822746322831267 116414:116414 0:"after hipLaunchKernel" +1822746322831937 116414:116414 1:"hipMemcpy" +1822746327110704 116414:116414 2:"" +1822746327111214 116414:116414 2:"" +1822746335664418 116414:116414 0:"before hipLaunchKernel" +1822746335666208 116414:116414 1:"hipLaunchKernel" +1822746335700419 116414:116414 0:"after hipLaunchKernel" +1822746335701109 116414:116414 1:"hipMemcpy" +1822746340062306 116414:116414 2:"" +1822746340062946 116414:116414 2:"" +1822746348570521 116414:116414 0:"before hipLaunchKernel" +1822746348571691 116414:116414 1:"hipLaunchKernel" +1822746348612761 116414:116414 0:"after hipLaunchKernel" +1822746348613511 116414:116414 1:"hipMemcpy" +1822746352908008 116414:116414 2:"" +1822746352908648 116414:116414 2:"" +1822746361409792 116414:116414 0:"before hipLaunchKernel" +1822746361411282 116414:116414 1:"hipLaunchKernel" +1822746361452822 116414:116414 0:"after hipLaunchKernel" +1822746361453632 116414:116414 1:"hipMemcpy" +1822746365745219 116414:116414 2:"" +1822746365745819 116414:116414 2:"" +1822746374273854 116414:116414 0:"before hipLaunchKernel" +1822746374275264 116414:116414 1:"hipLaunchKernel" +1822746374318815 116414:116414 0:"after hipLaunchKernel" +1822746374319505 116414:116414 1:"hipMemcpy" +1822746378595931 116414:116414 2:"" +1822746378596562 116414:116414 2:"" +1822746386726273 116414:116414 0:"before hipLaunchKernel" +1822746386728083 116414:116414 1:"hipLaunchKernel" +1822746386763224 116414:116414 0:"after hipLaunchKernel" +1822746386764104 116414:116414 1:"hipMemcpy" +1822746391049231 116414:116414 2:"" +1822746391049781 116414:116414 2:"" +1822746399189143 116414:116414 0:"before hipLaunchKernel" +1822746399190593 116414:116414 1:"hipLaunchKernel" +1822746399225293 116414:116414 0:"after hipLaunchKernel" +1822746399225973 116414:116414 1:"hipMemcpy" +1822746403530731 116414:116414 2:"" +1822746403531411 116414:116414 2:"" +1822746412060765 116414:116414 0:"before hipLaunchKernel" +1822746412062005 116414:116414 1:"hipLaunchKernel" +1822746412096325 116414:116414 0:"after hipLaunchKernel" +1822746412097335 116414:116414 1:"hipMemcpy" +1822746416388452 116414:116414 2:"" +1822746416389002 116414:116414 2:"" +1822746424900556 116414:116414 0:"before hipLaunchKernel" +1822746424901856 116414:116414 1:"hipLaunchKernel" +1822746424935537 116414:116414 0:"after hipLaunchKernel" +1822746424936147 116414:116414 1:"hipMemcpy" +1822746429218754 116414:116414 2:"" +1822746429219394 116414:116414 2:"" +1822746437732398 116414:116414 0:"before hipLaunchKernel" +1822746437733798 116414:116414 1:"hipLaunchKernel" +1822746437771248 116414:116414 0:"after hipLaunchKernel" +1822746437771858 116414:116414 1:"hipMemcpy" +1822746442028356 116414:116414 2:"" +1822746442028896 116414:116414 2:"" +1822746450161817 116414:116414 0:"before hipLaunchKernel" +1822746450163067 116414:116414 1:"hipLaunchKernel" +1822746450198447 116414:116414 0:"after hipLaunchKernel" +1822746450199117 116414:116414 1:"hipMemcpy" +1822746454504065 116414:116414 2:"" +1822746454504665 116414:116414 2:"" +1822746463006129 116414:116414 0:"before hipLaunchKernel" +1822746463007299 116414:116414 1:"hipLaunchKernel" +1822746463050979 116414:116414 0:"after hipLaunchKernel" +1822746463051589 116414:116414 1:"hipMemcpy" +1822746467336937 116414:116414 2:"" +1822746467337447 116414:116414 2:"" +1822746475886201 116414:116414 0:"before hipLaunchKernel" +1822746475887511 116414:116414 1:"hipLaunchKernel" +1822746475921661 116414:116414 0:"after hipLaunchKernel" +1822746475922411 116414:116414 1:"hipMemcpy" +1822746480225449 116414:116414 2:"" +1822746480226089 116414:116414 2:"" +1822746488740732 116414:116414 0:"before hipLaunchKernel" +1822746488742122 116414:116414 1:"hipLaunchKernel" +1822746488784243 116414:116414 0:"after hipLaunchKernel" +1822746488785013 116414:116414 1:"hipMemcpy" +1822746493098030 116414:116414 2:"" +1822746493098580 116414:116414 2:"" +1822746501602385 116414:116414 0:"before hipLaunchKernel" +1822746501604095 116414:116414 1:"hipLaunchKernel" +1822746501649305 116414:116414 0:"after hipLaunchKernel" +1822746501649925 116414:116414 1:"hipMemcpy" +1822746505928982 116414:116414 2:"" +1822746505929612 116414:116414 2:"" +1822746514461686 116414:116414 0:"before hipLaunchKernel" +1822746514462916 116414:116414 1:"hipLaunchKernel" +1822746514497227 116414:116414 0:"after hipLaunchKernel" +1822746514497897 116414:116414 1:"hipMemcpy" +1822746518742374 116414:116414 2:"" +1822746518742994 116414:116414 2:"" +1822746527262578 116414:116414 0:"before hipLaunchKernel" +1822746527273538 116414:116414 1:"hipLaunchKernel" +1822746527309978 116414:116414 0:"after hipLaunchKernel" +1822746527310798 116414:116414 1:"hipMemcpy" +1822746531586925 116414:116414 2:"" +1822746531587445 116414:116414 2:"" +1822746540127990 116414:116414 0:"before hipLaunchKernel" +1822746540129470 116414:116414 1:"hipLaunchKernel" +1822746540164820 116414:116414 0:"after hipLaunchKernel" +1822746540165560 116414:116414 1:"hipMemcpy" +1822746544478227 116414:116414 2:"" +1822746544478907 116414:116414 2:"" +1822746552974642 116414:116414 0:"before hipLaunchKernel" +1822746552976122 116414:116414 1:"hipLaunchKernel" +1822746553011042 116414:116414 0:"after hipLaunchKernel" +1822746553011832 116414:116414 1:"hipMemcpy" +1822746557333510 116414:116414 2:"" +1822746557334020 116414:116414 2:"" +1822746565850204 116414:116414 0:"before hipLaunchKernel" +1822746565851604 116414:116414 1:"hipLaunchKernel" +1822746565886044 116414:116414 0:"after hipLaunchKernel" +1822746565886794 116414:116414 1:"hipMemcpy" +1822746570197791 116414:116414 2:"" +1822746570198451 116414:116414 2:"" +1822746578336243 116414:116414 0:"before hipLaunchKernel" +1822746578337593 116414:116414 1:"hipLaunchKernel" +1822746578380923 116414:116414 0:"after hipLaunchKernel" +1822746578381683 116414:116414 1:"hipMemcpy" +1822746582643601 116414:116414 2:"" +1822746582644111 116414:116414 2:"" +1822746591161555 116414:116414 0:"before hipLaunchKernel" +1822746591163265 116414:116414 1:"hipLaunchKernel" +1822746591197655 116414:116414 0:"after hipLaunchKernel" +1822746591198265 116414:116414 1:"hipMemcpy" +1822746595502803 116414:116414 2:"" +1822746595503443 116414:116414 2:"" +1822746604019077 116414:116414 0:"before hipLaunchKernel" +1822746604020797 116414:116414 1:"hipLaunchKernel" +1822746604063007 116414:116414 0:"after hipLaunchKernel" +1822746604063787 116414:116414 1:"hipMemcpy" +1822746608329344 116414:116414 2:"" +1822746608329904 116414:116414 2:"" +1822746616473316 116414:116414 0:"before hipLaunchKernel" +1822746616474706 116414:116414 1:"hipLaunchKernel" +1822746616508206 116414:116414 0:"after hipLaunchKernel" +1822746616508816 116414:116414 1:"hipMemcpy" +1822746620826424 116414:116414 2:"" +1822746620826974 116414:116414 2:"" +1822746629333318 116414:116414 0:"before hipLaunchKernel" +1822746629334808 116414:116414 1:"hipLaunchKernel" +1822746629377048 116414:116414 0:"after hipLaunchKernel" +1822746629377788 116414:116414 1:"hipMemcpy" +1822746633699786 116414:116414 2:"" +1822746633700336 116414:116414 2:"" +1822746641821417 116414:116414 0:"before hipLaunchKernel" +1822746641822817 116414:116414 1:"hipLaunchKernel" +1822746641857047 116414:116414 0:"after hipLaunchKernel" +1822746641857937 116414:116414 1:"hipMemcpy" +1822746646095824 116414:116414 2:"" +1822746646096334 116414:116414 2:"" +1822746654614869 116414:116414 0:"before hipLaunchKernel" +1822746654616489 116414:116414 1:"hipLaunchKernel" +1822746654652079 116414:116414 0:"after hipLaunchKernel" +1822746654652809 116414:116414 1:"hipMemcpy" +1822746658919976 116414:116414 2:"" +1822746658920616 116414:116414 2:"" +1822746667430060 116414:116414 0:"before hipLaunchKernel" +1822746667431310 116414:116414 1:"hipLaunchKernel" +1822746667465260 116414:116414 0:"after hipLaunchKernel" +1822746667465870 116414:116414 1:"hipMemcpy" +1822746671742458 116414:116414 2:"" +1822746671742968 116414:116414 2:"" +1822746680267302 116414:116414 0:"before hipLaunchKernel" +1822746680268782 116414:116414 1:"hipLaunchKernel" +1822746680303053 116414:116414 0:"after hipLaunchKernel" +1822746680303803 116414:116414 1:"hipMemcpy" +1822746684600499 116414:116414 2:"" +1822746684601029 116414:116414 2:"" +1822746693088044 116414:116414 0:"before hipLaunchKernel" +1822746693089474 116414:116414 1:"hipLaunchKernel" +1822746693123884 116414:116414 0:"after hipLaunchKernel" +1822746693124644 116414:116414 1:"hipMemcpy" +1822746697418081 116414:116414 2:"" +1822746697418641 116414:116414 2:"" +1822746705933515 116414:116414 0:"before hipLaunchKernel" +1822746705934975 116414:116414 1:"hipLaunchKernel" +1822746705972696 116414:116414 0:"after hipLaunchKernel" +1822746705973596 116414:116414 1:"hipMemcpy" +1822746710267423 116414:116414 2:"" +1822746710268023 116414:116414 2:"" +1822746718822338 116414:116414 0:"before hipLaunchKernel" +1822746718823618 116414:116414 1:"hipLaunchKernel" +1822746718864278 116414:116414 0:"after hipLaunchKernel" +1822746718864968 116414:116414 1:"hipMemcpy" +1822746723108095 116414:116414 2:"" +1822746723108605 116414:116414 2:"" +1822746731658299 116414:116414 0:"before hipLaunchKernel" +1822746731659809 116414:116414 1:"hipLaunchKernel" +1822746731694730 116414:116414 0:"after hipLaunchKernel" +1822746731695340 116414:116414 1:"hipMemcpy" +1822746735980407 116414:116414 2:"" +1822746735980997 116414:116414 2:"" +1822746744113829 116414:116414 0:"before hipLaunchKernel" +1822746744123879 116414:116414 1:"hipLaunchKernel" +1822746744159579 116414:116414 0:"after hipLaunchKernel" +1822746744160189 116414:116414 1:"hipMemcpy" +1822746748470806 116414:116414 2:"" +1822746748471316 116414:116414 2:"" +1822746756607968 116414:116414 0:"before hipLaunchKernel" +1822746756609468 116414:116414 1:"hipLaunchKernel" +1822746756645858 116414:116414 0:"after hipLaunchKernel" +1822746756646558 116414:116414 1:"hipMemcpy" +1822746760955005 116414:116414 2:"" +1822746760955645 116414:116414 2:"" +1822746769464290 116414:116414 0:"before hipLaunchKernel" +1822746769465720 116414:116414 1:"hipLaunchKernel" +1822746769510720 116414:116414 0:"after hipLaunchKernel" +1822746769511470 116414:116414 1:"hipMemcpy" +1822746773820048 116414:116414 2:"" +1822746773820638 116414:116414 2:"" +1822746782343662 116414:116414 0:"before hipLaunchKernel" +1822746782344962 116414:116414 1:"hipLaunchKernel" +1822746782379212 116414:116414 0:"after hipLaunchKernel" +1822746782379922 116414:116414 1:"hipMemcpy" +1822746786661019 116414:116414 2:"" +1822746786661529 116414:116414 2:"" +1822746795188364 116414:116414 0:"before hipLaunchKernel" +1822746795189874 116414:116414 1:"hipLaunchKernel" +1822746795224264 116414:116414 0:"after hipLaunchKernel" +1822746795224934 116414:116414 1:"hipMemcpy" +1822746799488501 116414:116414 2:"" +1822746799489171 116414:116414 2:"" +1822746807830504 116414:116414 0:"before hipLaunchKernel" +1822746807832274 116414:116414 1:"hipLaunchKernel" +1822746807867394 116414:116414 0:"after hipLaunchKernel" +1822746807868064 116414:116414 1:"hipMemcpy" +1822746812164681 116414:116414 2:"" +1822746812165231 116414:116414 2:"" +1822746820722496 116414:116414 0:"before hipLaunchKernel" +1822746820723886 116414:116414 1:"hipLaunchKernel" +1822746820756366 116414:116414 0:"after hipLaunchKernel" +1822746820757286 116414:116414 1:"hipMemcpy" +1822746825046294 116414:116414 2:"" +1822746825046954 116414:116414 2:"" +1822746833223776 116414:116414 0:"before hipLaunchKernel" +1822746833225106 116414:116414 1:"hipLaunchKernel" +1822746833259056 116414:116414 0:"after hipLaunchKernel" +1822746833259996 116414:116414 1:"hipMemcpy" +1822746837574493 116414:116414 2:"" +1822746837575043 116414:116414 2:"" +1822746846102378 116414:116414 0:"before hipLaunchKernel" +1822746846104068 116414:116414 1:"hipLaunchKernel" +1822746846140448 116414:116414 0:"after hipLaunchKernel" +1822746846141318 116414:116414 1:"hipMemcpy" +1822746850396045 116414:116414 2:"" +1822746850396685 116414:116414 2:"" +1822746858929349 116414:116414 0:"before hipLaunchKernel" +1822746858930929 116414:116414 1:"hipLaunchKernel" +1822746858974000 116414:116414 0:"after hipLaunchKernel" +1822746858975060 116414:116414 1:"hipMemcpy" +1822746863235857 116414:116414 2:"" +1822746863236417 116414:116414 2:"" +1822746871469829 116414:116414 0:"before hipLaunchKernel" +1822746871471599 116414:116414 1:"hipLaunchKernel" +1822746871506509 116414:116414 0:"after hipLaunchKernel" +1822746871507269 116414:116414 1:"hipMemcpy" +1822746875782647 116414:116414 2:"" +1822746875783527 116414:116414 2:"" +1822746884309081 116414:116414 0:"before hipLaunchKernel" +1822746884310891 116414:116414 1:"hipLaunchKernel" +1822746884353891 116414:116414 0:"after hipLaunchKernel" +1822746884355141 116414:116414 1:"hipMemcpy" +1822746888676259 116414:116414 2:"" +1822746888676809 116414:116414 2:"" +1822746897186943 116414:116414 0:"before hipLaunchKernel" +1822746897188273 116414:116414 1:"hipLaunchKernel" +1822746897222683 116414:116414 0:"after hipLaunchKernel" +1822746897223593 116414:116414 1:"hipMemcpy" +1822746901551981 116414:116414 2:"" +1822746901552501 116414:116414 2:"" +1822746910088165 116414:116414 0:"before hipLaunchKernel" +1822746910089685 116414:116414 1:"hipLaunchKernel" +1822746910134435 116414:116414 0:"after hipLaunchKernel" +1822746910135325 116414:116414 1:"hipMemcpy" +1822746914420963 116414:116414 2:"" +1822746914421563 116414:116414 2:"" +1822746922911487 116414:116414 0:"before hipLaunchKernel" +1822746922912937 116414:116414 1:"hipLaunchKernel" +1822746922947557 116414:116414 0:"after hipLaunchKernel" +1822746922948317 116414:116414 1:"hipMemcpy" +1822746927246104 116414:116414 2:"" +1822746927246624 116414:116414 2:"" +1822746935790968 116414:116414 0:"before hipLaunchKernel" +1822746935792308 116414:116414 1:"hipLaunchKernel" +1822746935827819 116414:116414 0:"after hipLaunchKernel" +1822746935828559 116414:116414 1:"hipMemcpy" +1822746940122006 116414:116414 2:"" +1822746940122596 116414:116414 2:"" +1822746948636931 116414:116414 0:"before hipLaunchKernel" +1822746948638371 116414:116414 1:"hipLaunchKernel" +1822746948672781 116414:116414 0:"after hipLaunchKernel" +1822746948673531 116414:116414 1:"hipMemcpy" +1822746952927188 116414:116414 2:"" +1822746952927708 116414:116414 2:"" +1822746961432932 116414:116414 0:"before hipLaunchKernel" +1822746961435752 116414:116414 1:"hipLaunchKernel" +1822746961471142 116414:116414 0:"after hipLaunchKernel" +1822746961471802 116414:116414 1:"hipMemcpy" +1822746965815570 116414:116414 2:"" +1822746965816100 116414:116414 2:"" +1822746974347674 116414:116414 0:"before hipLaunchKernel" +1822746974349324 116414:116414 1:"hipLaunchKernel" +1822746974384045 116414:116414 0:"after hipLaunchKernel" +1822746974385025 116414:116414 1:"hipMemcpy" +1822746978701042 116414:116414 2:"" +1822746978701592 116414:116414 2:"" +1822746987238836 116414:116414 0:"before hipLaunchKernel" +1822746987240226 116414:116414 1:"hipLaunchKernel" +1822746987274997 116414:116414 0:"after hipLaunchKernel" +1822746987275707 116414:116414 1:"hipMemcpy" +1822746991547893 116414:116414 2:"" +1822746991548494 116414:116414 2:"" +1822747000045978 116414:116414 0:"before hipLaunchKernel" +1822747000047348 116414:116414 1:"hipLaunchKernel" +1822747000090598 116414:116414 0:"after hipLaunchKernel" +1822747000091268 116414:116414 1:"hipMemcpy" +1822747004383755 116414:116414 2:"" +1822747004384265 116414:116414 2:"" +1822747012920530 116414:116414 0:"before hipLaunchKernel" +1822747012922090 116414:116414 1:"hipLaunchKernel" +1822747012956500 116414:116414 0:"after hipLaunchKernel" +1822747012957150 116414:116414 1:"hipMemcpy" +1822747017227137 116414:116414 2:"" +1822747017227777 116414:116414 2:"" +1822747025739591 116414:116414 0:"before hipLaunchKernel" +1822747025741081 116414:116414 1:"hipLaunchKernel" +1822747025783142 116414:116414 0:"after hipLaunchKernel" +1822747025783922 116414:116414 1:"hipMemcpy" +1822747030052989 116414:116414 2:"" +1822747030053759 116414:116414 2:"" +1822747038576853 116414:116414 0:"before hipLaunchKernel" +1822747038578503 116414:116414 1:"hipLaunchKernel" +1822747038612073 116414:116414 0:"after hipLaunchKernel" +1822747038612833 116414:116414 1:"hipMemcpy" +1822747042937871 116414:116414 2:"" +1822747042938471 116414:116414 2:"" +1822747051456945 116414:116414 0:"before hipLaunchKernel" +1822747051458345 116414:116414 1:"hipLaunchKernel" +1822747051503015 116414:116414 0:"after hipLaunchKernel" +1822747051503705 116414:116414 1:"hipMemcpy" +1822747055762813 116414:116414 2:"" +1822747055763443 116414:116414 2:"" +1822747064282657 116414:116414 0:"before hipLaunchKernel" +1822747064284077 116414:116414 1:"hipLaunchKernel" +1822747064318447 116414:116414 0:"after hipLaunchKernel" +1822747064319197 116414:116414 1:"hipMemcpy" +1822747068577384 116414:116414 2:"" +1822747068577934 116414:116414 2:"" +1822747077191129 116414:116414 0:"before hipLaunchKernel" +1822747077192549 116414:116414 1:"hipLaunchKernel" +1822747077226949 116414:116414 0:"after hipLaunchKernel" +1822747077227719 116414:116414 1:"hipMemcpy" +1822747081495256 116414:116414 2:"" +1822747081495776 116414:116414 2:"" +1822747089776589 116414:116414 0:"before hipLaunchKernel" +1822747089777999 116414:116414 1:"hipLaunchKernel" +1822747089813449 116414:116414 0:"after hipLaunchKernel" +1822747089814139 116414:116414 1:"hipMemcpy" +1822747094097527 116414:116414 2:"" +1822747094098047 116414:116414 2:"" +1822747102607691 116414:116414 0:"before hipLaunchKernel" +1822747102609421 116414:116414 1:"hipLaunchKernel" +1822747102643231 116414:116414 0:"after hipLaunchKernel" +1822747102643911 116414:116414 1:"hipMemcpy" +1822747106933368 116414:116414 2:"" +1822747106933978 116414:116414 2:"" +1822747115463482 116414:116414 0:"before hipLaunchKernel" +1822747115465012 116414:116414 1:"hipLaunchKernel" +1822747115499573 116414:116414 0:"after hipLaunchKernel" +1822747115500483 116414:116414 1:"hipMemcpy" +1822747119761130 116414:116414 2:"" +1822747119761640 116414:116414 2:"" +1822747128308084 116414:116414 0:"before hipLaunchKernel" +1822747128309904 116414:116414 1:"hipLaunchKernel" +1822747128345134 116414:116414 0:"after hipLaunchKernel" +1822747128346204 116414:116414 1:"hipMemcpy" +1822747132643762 116414:116414 2:"" +1822747132644392 116414:116414 2:"" +1822747141164966 116414:116414 0:"before hipLaunchKernel" +1822747141166346 116414:116414 1:"hipLaunchKernel" +1822747141208846 116414:116414 0:"after hipLaunchKernel" +1822747141209526 116414:116414 1:"hipMemcpy" +1822747145462743 116414:116414 2:"" +1822747145463293 116414:116414 2:"" +1822747153659646 116414:116414 0:"before hipLaunchKernel" +1822747153661386 116414:116414 1:"hipLaunchKernel" +1822747153697026 116414:116414 0:"after hipLaunchKernel" +1822747153697946 116414:116414 1:"hipMemcpy" +1822747157970553 116414:116414 2:"" +1822747157971203 116414:116414 2:"" +1822747166489167 116414:116414 0:"before hipLaunchKernel" +1822747166490847 116414:116414 1:"hipLaunchKernel" +1822747166534498 116414:116414 0:"after hipLaunchKernel" +1822747166535248 116414:116414 1:"hipMemcpy" +1822747170843355 116414:116414 2:"" +1822747170844005 116414:116414 2:"" +1822747179364369 116414:116414 0:"before hipLaunchKernel" +1822747179366319 116414:116414 1:"hipLaunchKernel" +1822747179408579 116414:116414 0:"after hipLaunchKernel" +1822747179409199 116414:116414 1:"hipMemcpy" +1822747183702187 116414:116414 2:"" +1822747183702787 116414:116414 2:"" +1822747192222161 116414:116414 0:"before hipLaunchKernel" +1822747192223991 116414:116414 1:"hipLaunchKernel" +1822747192269142 116414:116414 0:"after hipLaunchKernel" +1822747192269822 116414:116414 1:"hipMemcpy" +1822747196568598 116414:116414 2:"" +1822747196569168 116414:116414 2:"" +1822747205092893 116414:116414 0:"before hipLaunchKernel" +1822747205094473 116414:116414 1:"hipLaunchKernel" +1822747205129393 116414:116414 0:"after hipLaunchKernel" +1822747205130083 116414:116414 1:"hipMemcpy" +1822747209399201 116414:116414 2:"" +1822747209399821 116414:116414 2:"" +1822747217944995 116414:116414 0:"before hipLaunchKernel" +1822747217946345 116414:116414 1:"hipLaunchKernel" +1822747217981665 116414:116414 0:"after hipLaunchKernel" +1822747217982525 116414:116414 1:"hipMemcpy" +1822747222277472 116414:116414 2:"" +1822747222278072 116414:116414 2:"" +1822747230808677 116414:116414 0:"before hipLaunchKernel" +1822747230810017 116414:116414 1:"hipLaunchKernel" +1822747230844757 116414:116414 0:"after hipLaunchKernel" +1822747230845487 116414:116414 1:"hipMemcpy" +1822747235088884 116414:116414 2:"" +1822747235089394 116414:116414 2:"" +1822747243249936 116414:116414 0:"before hipLaunchKernel" +1822747243251626 116414:116414 1:"hipLaunchKernel" +1822747243285766 116414:116414 0:"after hipLaunchKernel" +1822747243286516 116414:116414 1:"hipMemcpy" +1822747247529393 116414:116414 2:"" +1822747247530013 116414:116414 2:"" +1822747256043087 116414:116414 0:"before hipLaunchKernel" +1822747256044427 116414:116414 1:"hipLaunchKernel" +1822747256087698 116414:116414 0:"after hipLaunchKernel" +1822747256088488 116414:116414 1:"hipMemcpy" +1822747260364015 116414:116414 2:"" +1822747260364585 116414:116414 2:"" +1822747268896409 116414:116414 0:"before hipLaunchKernel" +1822747268897949 116414:116414 1:"hipLaunchKernel" +1822747268932309 116414:116414 0:"after hipLaunchKernel" +1822747268933119 116414:116414 1:"hipMemcpy" +1822747273198687 116414:116414 2:"" +1822747273199287 116414:116414 2:"" +1822747281724171 116414:116414 0:"before hipLaunchKernel" +1822747281725431 116414:116414 1:"hipLaunchKernel" +1822747281769611 116414:116414 0:"after hipLaunchKernel" +1822747281770251 116414:116414 1:"hipMemcpy" +1822747286046789 116414:116414 2:"" +1822747286047509 116414:116414 2:"" +1822747294179420 116414:116414 0:"before hipLaunchKernel" +1822747294180750 116414:116414 1:"hipLaunchKernel" +1822747294215440 116414:116414 0:"after hipLaunchKernel" +1822747294216190 116414:116414 1:"hipMemcpy" +1822747298480488 116414:116414 2:"" +1822747298481088 116414:116414 2:"" +1822747306992672 116414:116414 0:"before hipLaunchKernel" +1822747306994192 116414:116414 1:"hipLaunchKernel" +1822747307037212 116414:116414 0:"after hipLaunchKernel" +1822747307037882 116414:116414 1:"hipMemcpy" +1822747311315539 116414:116414 2:"" +1822747311316169 116414:116414 2:"" +1822747319874703 116414:116414 0:"before hipLaunchKernel" +1822747319876163 116414:116414 1:"hipLaunchKernel" +1822747319911874 116414:116414 0:"after hipLaunchKernel" +1822747319912624 116414:116414 1:"hipMemcpy" +1822747324204331 116414:116414 2:"" +1822747324204961 116414:116414 2:"" +1822747332705286 116414:116414 0:"before hipLaunchKernel" +1822747332706706 116414:116414 1:"hipLaunchKernel" +1822747332741176 116414:116414 0:"after hipLaunchKernel" +1822747332741956 116414:116414 1:"hipMemcpy" +1822747337037743 116414:116414 2:"" +1822747337038363 116414:116414 2:"" +1822747345559747 116414:116414 0:"before hipLaunchKernel" +1822747345561087 116414:116414 1:"hipLaunchKernel" +1822747345596618 116414:116414 0:"after hipLaunchKernel" +1822747345597448 116414:116414 1:"hipMemcpy" +1822747349873355 116414:116414 2:"" +1822747349873885 116414:116414 2:"" +1822747358051257 116414:116414 0:"before hipLaunchKernel" +1822747358052777 116414:116414 1:"hipLaunchKernel" +1822747358087627 116414:116414 0:"after hipLaunchKernel" +1822747358088377 116414:116414 1:"hipMemcpy" +1822747362399145 116414:116414 2:"" +1822747362399835 116414:116414 2:"" +1822747370904859 116414:116414 0:"before hipLaunchKernel" +1822747370906179 116414:116414 1:"hipLaunchKernel" +1822747370939949 116414:116414 0:"after hipLaunchKernel" +1822747370940629 116414:116414 1:"hipMemcpy" +1822747375221976 116414:116414 2:"" +1822747375222496 116414:116414 2:"" +1822747383758011 116414:116414 0:"before hipLaunchKernel" +1822747383759461 116414:116414 1:"hipLaunchKernel" +1822747383792951 116414:116414 0:"after hipLaunchKernel" +1822747383793631 116414:116414 1:"hipMemcpy" +1822747388093298 116414:116414 2:"" +1822747388093808 116414:116414 2:"" +1822747396606582 116414:116414 0:"before hipLaunchKernel" +1822747396608512 116414:116414 1:"hipLaunchKernel" +1822747396653613 116414:116414 0:"after hipLaunchKernel" +1822747396654593 116414:116414 1:"hipMemcpy" +1822747400910840 116414:116414 2:"" +1822747400911400 116414:116414 2:"" +1822747409452094 116414:116414 0:"before hipLaunchKernel" +1822747409453434 116414:116414 1:"hipLaunchKernel" +1822747409489224 116414:116414 0:"after hipLaunchKernel" +1822747409489944 116414:116414 1:"hipMemcpy" +1822747413770832 116414:116414 2:"" +1822747413771422 116414:116414 2:"" +1822747421888943 116414:116414 0:"before hipLaunchKernel" +1822747421890693 116414:116414 1:"hipLaunchKernel" +1822747421933914 116414:116414 0:"after hipLaunchKernel" +1822747421934664 116414:116414 1:"hipMemcpy" +1822747426217861 116414:116414 2:"" +1822747426218411 116414:116414 2:"" +1822747434752365 116414:116414 0:"before hipLaunchKernel" +1822747434753675 116414:116414 1:"hipLaunchKernel" +1822747434787675 116414:116414 0:"after hipLaunchKernel" +1822747434788355 116414:116414 1:"hipMemcpy" +1822747439089323 116414:116414 2:"" +1822747439089873 116414:116414 2:"" +1822747447612967 116414:116414 0:"before hipLaunchKernel" +1822747447614377 116414:116414 1:"hipLaunchKernel" +1822747447654907 116414:116414 0:"after hipLaunchKernel" +1822747447655657 116414:116414 1:"hipMemcpy" +1822747451958285 116414:116414 2:"" +1822747451958855 116414:116414 2:"" +1822747460454349 116414:116414 0:"before hipLaunchKernel" +1822747460456039 116414:116414 1:"hipLaunchKernel" +1822747460491099 116414:116414 0:"after hipLaunchKernel" +1822747460491699 116414:116414 1:"hipMemcpy" +1822747464744336 116414:116414 2:"" +1822747464744886 116414:116414 2:"" +1822747473259650 116414:116414 0:"before hipLaunchKernel" +1822747473261100 116414:116414 1:"hipLaunchKernel" +1822747473295340 116414:116414 0:"after hipLaunchKernel" +1822747473296320 116414:116414 1:"hipMemcpy" +1822747477592178 116414:116414 2:"" +1822747477592778 116414:116414 2:"" +1822747486095772 116414:116414 0:"before hipLaunchKernel" +1822747486097132 116414:116414 1:"hipLaunchKernel" +1822747486131912 116414:116414 0:"after hipLaunchKernel" +1822747486132722 116414:116414 1:"hipMemcpy" +1822747490419909 116414:116414 2:"" +1822747490420420 116414:116414 2:"" +1822747498947114 116414:116414 0:"before hipLaunchKernel" +1822747498948454 116414:116414 1:"hipLaunchKernel" +1822747498982554 116414:116414 0:"after hipLaunchKernel" +1822747498983314 116414:116414 1:"hipMemcpy" +1822747503269211 116414:116414 2:"" +1822747503269801 116414:116414 2:"" +1822747511821906 116414:116414 0:"before hipLaunchKernel" +1822747511823506 116414:116414 1:"hipLaunchKernel" +1822747511857306 116414:116414 0:"after hipLaunchKernel" +1822747511858026 116414:116414 1:"hipMemcpy" +1822747516150773 116414:116414 2:"" +1822747516151333 116414:116414 2:"" +1822747524674428 116414:116414 0:"before hipLaunchKernel" +1822747524675968 116414:116414 1:"hipLaunchKernel" +1822747524709788 116414:116414 0:"after hipLaunchKernel" +1822747524710798 116414:116414 1:"hipMemcpy" +1822747528988735 116414:116414 2:"" +1822747528989295 116414:116414 2:"" +1822747537127717 116414:116414 0:"before hipLaunchKernel" +1822747537129107 116414:116414 1:"hipLaunchKernel" +1822747537165427 116414:116414 0:"after hipLaunchKernel" +1822747537166147 116414:116414 1:"hipMemcpy" +1822747541437164 116414:116414 2:"" +1822747541437674 116414:116414 2:"" +1822747549616007 116414:116414 0:"before hipLaunchKernel" +1822747549617497 116414:116414 1:"hipLaunchKernel" +1822747549652847 116414:116414 0:"after hipLaunchKernel" +1822747549653597 116414:116414 1:"hipMemcpy" +1822747553934464 116414:116414 2:"" +1822747553935054 116414:116414 2:"" +1822747562457678 116414:116414 0:"before hipLaunchKernel" +1822747562459548 116414:116414 1:"hipLaunchKernel" +1822747562503719 116414:116414 0:"after hipLaunchKernel" +1822747562504369 116414:116414 1:"hipMemcpy" +1822747566818976 116414:116414 2:"" +1822747566819486 116414:116414 2:"" +1822747574946208 116414:116414 0:"before hipLaunchKernel" +1822747574947718 116414:116414 1:"hipLaunchKernel" +1822747574982938 116414:116414 0:"after hipLaunchKernel" +1822747574983698 116414:116414 1:"hipMemcpy" +1822747579263685 116414:116414 2:"" +1822747579264285 116414:116414 2:"" +1822745846694606:1822745854958588 0:0 hcMemcpyHostToDevice:4 +1822746303429824:1822746304643366 0:0 hcCommandKernel:6 +1822746304795192:1822746307813551 0:0 hcMemcpyDeviceToHost:8 +1822746320723013:1822746322780696 0:0 hcMemcpyHostToDevice:9 +1822746322836451:1822746324030881 0:0 hcCommandKernel:11 +1822746304656289:1822746304698662 0:0 hcCommandMarker:8 +1822746324124125:1822746327106804 0:0 hcMemcpyDeviceToHost:13 +1822746333603475:1822746335656778 0:0 hcMemcpyHostToDevice:14 +1822746335705194:1822746336927625 0:0 hcCommandKernel:16 +1822746324035875:1822746324067433 0:0 hcCommandMarker:13 +1822746337021117:1822746340058236 0:0 hcMemcpyDeviceToHost:18 +1822746346523298:1822746348563591 0:0 hcMemcpyHostToDevice:19 +1822746348617706:1822746349814210 0:0 hcCommandKernel:21 +1822746336932682:1822746336964388 0:0 hcCommandMarker:18 +1822746349904929:1822746352899698 0:0 hcMemcpyDeviceToHost:23 +1822746359361629:1822746361400262 0:0 hcMemcpyHostToDevice:24 +1822746361450267:1822746362634919 0:0 hcCommandKernel:26 +1822746349819318:1822746349850875 0:0 hcCommandMarker:23 +1822746362727320:1822746365741009 0:0 hcMemcpyDeviceToHost:28 +1822746372218591:1822746374265654 0:0 hcMemcpyHostToDevice:29 +1822746374324206:1822746375517450 0:0 hcCommandKernel:31 +1822746362640070:1822746362671182 0:0 hcCommandMarker:28 +1822746375611153:1822746378591671 0:0 hcMemcpyDeviceToHost:33 +1822746384677870:1822746386718163 0:0 hcMemcpyHostToDevice:34 +1822746386768129:1822746387975152 0:0 hcCommandKernel:36 +1822746375522532:1822746375553645 0:0 hcCommandMarker:33 +1822746388063982:1822746391045151 0:0 hcMemcpyDeviceToHost:38 +1822746397130819:1822746399181603 0:0 hcMemcpyHostToDevice:39 +1822746399230436:1822746400431829 0:0 hcCommandKernel:41 +1822746387980100:1822746388011657 0:0 hcCommandMarker:38 +1822746400525301:1822746403526701 0:0 hcMemcpyDeviceToHost:43 +1822746410010991:1822746412053745 0:0 hcMemcpyHostToDevice:44 +1822746412101455:1822746413300181 0:0 hcCommandKernel:46 +1822746400437024:1822746400468582 0:0 hcCommandMarker:43 +1822746413389643:1822746416384192 0:0 hcMemcpyDeviceToHost:48 +1822746422842763:1822746424893916 0:0 hcMemcpyHostToDevice:49 +1822746424940744:1822746426133988 0:0 hcCommandKernel:51 +1822746413305352:1822746413337206 0:0 hcCommandMarker:48 +1822746426224225:1822746429214624 0:0 hcMemcpyDeviceToHost:53 +1822746435693165:1822746437717408 0:0 hcMemcpyHostToDevice:54 +1822746437774256:1822746438967204 0:0 hcCommandKernel:56 +1822746426139161:1822746426170866 0:0 hcCommandMarker:53 +1822746439056356:1822746442024226 0:0 hcMemcpyDeviceToHost:58 +1822746448099264:1822746450154407 0:0 hcMemcpyHostToDevice:59 +1822746450203751:1822746451407810 0:0 hcCommandKernel:61 +1822746438972231:1822746439004529 0:0 hcCommandMarker:58 +1822746451504346:1822746454499105 0:0 hcMemcpyDeviceToHost:63 +1822746460959016:1822746462998779 0:0 hcMemcpyHostToDevice:64 +1822746463055996:1822746464260649 0:0 hcCommandKernel:66 +1822746451412900:1822746451444753 0:0 hcCommandMarker:63 +1822746464350677:1822746467332667 0:0 hcMemcpyDeviceToHost:68 +1822746473833308:1822746475879361 0:0 hcMemcpyHostToDevice:69 +1822746475926642:1822746477121072 0:0 hcCommandKernel:71 +1822746464265472:1822746464296881 0:0 hcCommandMarker:68 +1822746477215419:1822746480220979 0:0 hcMemcpyDeviceToHost:73 +1822746486696960:1822746488734042 0:0 hcMemcpyHostToDevice:74 +1822746488789228:1822746489970324 0:0 hcCommandKernel:76 +1822746477126132:1822746477157837 0:0 hcCommandMarker:73 +1822746490060621:1822746493090540 0:0 hcMemcpyDeviceToHost:78 +1822746499548162:1822746501594625 0:0 hcMemcpyHostToDevice:79 +1822746501644245:1822746502848156 0:0 hcCommandKernel:81 +1822746489975370:1822746490006927 0:0 hcCommandMarker:78 +1822746502941603:1822746505924812 0:0 hcMemcpyDeviceToHost:83 +1822746512386853:1822746514441866 0:0 hcMemcpyHostToDevice:84 +1822746514502279:1822746515697005 0:0 hcCommandKernel:86 +1822746502853256:1822746502884961 0:0 hcCommandMarker:83 +1822746515786755:1822746518737674 0:0 hcMemcpyDeviceToHost:88 +1822746525208945:1822746527254418 0:0 hcMemcpyHostToDevice:89 +1822746527314585:1822746528529015 0:0 hcCommandKernel:91 +1822746515702008:1822746515733862 0:0 hcCommandMarker:88 +1822746528618736:1822746531582475 0:0 hcMemcpyDeviceToHost:93 +1822746538066317:1822746540119810 0:0 hcMemcpyHostToDevice:94 +1822746540169674:1822746541362622 0:0 hcCommandKernel:96 +1822746528533986:1822746528565692 0:0 hcCommandMarker:93 +1822746541452028:1822746544473877 0:0 hcMemcpyDeviceToHost:98 +1822746550920939:1822746552966602 0:0 hcMemcpyHostToDevice:99 +1822746553016227:1822746554220435 0:0 hcCommandKernel:101 +1822746541367502:1822746541398763 0:0 hcCommandMarker:98 +1822746554311330:1822746557328730 0:0 hcMemcpyDeviceToHost:103 +1822746563780720:1822746565842464 0:0 hcMemcpyHostToDevice:104 +1822746565891124:1822746567105259 0:0 hcCommandKernel:106 +1822746554225509:1822746554257214 0:0 hcCommandMarker:103 +1822746567198362:1822746570191461 0:0 hcMemcpyDeviceToHost:108 +1822746576284980:1822746578329193 0:0 hcMemcpyHostToDevice:109 +1822746578378206:1822746579570858 0:0 hcCommandKernel:111 +1822746567110536:1822746567142537 0:0 hcCommandMarker:108 +1822746579665522:1822746582639151 0:0 hcMemcpyDeviceToHost:113 +1822746589095511:1822746591153645 0:0 hcMemcpyHostToDevice:114 +1822746591202562:1822746592414029 0:0 hcCommandKernel:116 +1822746579575616:1822746579607321 0:0 hcCommandMarker:113 +1822746592512113:1822746595498623 0:0 hcMemcpyDeviceToHost:118 +1822746601964713:1822746604011647 0:0 hcMemcpyHostToDevice:119 +1822746604068569:1822746605275592 0:0 hcCommandKernel:121 +1822746592419251:1822746592450956 0:0 hcCommandMarker:118 +1822746605366435:1822746608325004 0:0 hcMemcpyDeviceToHost:123 +1822746614421063:1822746616465356 0:0 hcMemcpyHostToDevice:124 +1822746616513523:1822746617722176 0:0 hcCommandKernel:126 +1822746605280818:1822746605312523 0:0 hcCommandMarker:123 +1822746617819294:1822746620821664 0:0 hcMemcpyDeviceToHost:128 +1822746627278435:1822746629325708 0:0 hcMemcpyHostToDevice:129 +1822746629382265:1822746630589287 0:0 hcCommandKernel:131 +1822746617727168:1822746617758429 0:0 hcCommandMarker:128 +1822746630681996:1822746633692796 0:0 hcMemcpyDeviceToHost:133 +1822746639755754:1822746641806997 0:0 hcMemcpyHostToDevice:134 +1822746641862485:1822746643058248 0:0 hcCommandKernel:136 +1822746630594519:1822746630626669 0:0 hcCommandMarker:133 +1822746643146416:1822746646091634 0:0 hcMemcpyDeviceToHost:138 +1822746652551416:1822746654597369 0:0 hcMemcpyHostToDevice:139 +1822746654657047:1822746655860810 0:0 hcCommandKernel:141 +1822746643063731:1822746643095288 0:0 hcCommandMarker:138 +1822746655949307:1822746658915726 0:0 hcMemcpyDeviceToHost:143 +1822746665378267:1822746667423120 0:0 hcMemcpyHostToDevice:144 +1822746667470322:1822746668671419 0:0 hcCommandKernel:146 +1822746655865746:1822746655897451 0:0 hcCommandMarker:143 +1822746668766159:1822746671738128 0:0 hcMemcpyDeviceToHost:148 +1822746678206339:1822746680260102 0:0 hcMemcpyHostToDevice:149 +1822746680308232:1822746681508292 0:0 hcCommandKernel:151 +1822746668676544:1822746668708250 0:0 hcCommandMarker:148 +1822746681599051:1822746684596209 0:0 hcMemcpyDeviceToHost:153 +1822746691038381:1822746693080794 0:0 hcMemcpyHostToDevice:154 +1822746693129097:1822746694329749 0:0 hcCommandKernel:156 +1822746681513411:1822746681545116 0:0 hcCommandMarker:153 +1822746694422112:1822746697413751 0:0 hcMemcpyDeviceToHost:158 +1822746703858202:1822746705925495 0:0 hcMemcpyHostToDevice:159 +1822746705975818:1822746707175878 0:0 hcCommandKernel:161 +1822746694334649:1822746694366503 0:0 hcCommandMarker:158 +1822746707272574:1822746710263013 0:0 hcMemcpyDeviceToHost:163 +1822746716776915:1822746718815558 0:0 hcMemcpyHostToDevice:164 +1822746718861486:1822746720065694 0:0 hcCommandKernel:166 +1822746707180907:1822746707212316 0:0 hcCommandMarker:163 +1822746720157016:1822746723103705 0:0 hcMemcpyDeviceToHost:168 +1822746729598936:1822746731650979 0:0 hcMemcpyHostToDevice:169 +1822746731699480:1822746732898798 0:0 hcCommandKernel:171 +1822746720070755:1822746720102757 0:0 hcCommandMarker:168 +1822746732992668:1822746735976367 0:0 hcMemcpyDeviceToHost:173 +1822746742066876:1822746744106829 0:0 hcMemcpyHostToDevice:174 +1822746744164465:1822746745363784 0:0 hcCommandKernel:176 +1822746732903906:1822746732935759 0:0 hcCommandMarker:173 +1822746745455297:1822746748466206 0:0 hcMemcpyDeviceToHost:178 +1822746754556705:1822746756600518 0:0 hcMemcpyHostToDevice:179 +1822746756650492:1822746757849514 0:0 hcCommandKernel:181 +1822746745368748:1822746745401045 0:0 hcCommandMarker:178 +1822746757942356:1822746760950505 0:0 hcMemcpyDeviceToHost:183 +1822746767400787:1822746769456080 0:0 hcMemcpyHostToDevice:184 +1822746769515356:1822746770712897 0:0 hcCommandKernel:186 +1822746757854629:1822746757886186 0:0 hcCommandMarker:183 +1822746770802739:1822746773812208 0:0 hcMemcpyDeviceToHost:188 +1822746780284119:1822746782328902 0:0 hcMemcpyHostToDevice:189 +1822746782384783:1822746783584102 0:0 hcCommandKernel:191 +1822746770717687:1822746770749837 0:0 hcCommandMarker:188 +1822746783680311:1822746786656569 0:0 hcMemcpyDeviceToHost:193 +1822746793126570:1822746795170844 0:0 hcMemcpyHostToDevice:194 +1822746795229846:1822746796419535 0:0 hcCommandKernel:196 +1822746783589268:1822746783621714 0:0 hcCommandMarker:193 +1822746796514412:1822746799483541 0:0 hcMemcpyDeviceToHost:198 +1822746805752131:1822746807822864 0:0 hcMemcpyHostToDevice:199 +1822746807872258:1822746809066836 0:0 hcCommandKernel:201 +1822746796424432:1822746796456285 0:0 hcCommandMarker:198 +1822746809156563:1822746812160341 0:0 hcMemcpyDeviceToHost:203 +1822746818675413:1822746820715166 0:0 hcMemcpyHostToDevice:204 +1822746820761636:1822746821961547 0:0 hcCommandKernel:206 +1822746809071724:1822746809103577 0:0 hcCommandMarker:203 +1822746822049125:1822746825042094 0:0 hcMemcpyDeviceToHost:208 +1822746831174713:1822746833216666 0:0 hcMemcpyHostToDevice:209 +1822746833264354:1822746834474636 0:0 hcCommandKernel:211 +1822746821966609:1822746821998315 0:0 hcCommandMarker:208 +1822746834567874:1822746837570143 0:0 hcMemcpyDeviceToHost:213 +1822746844045945:1822746846094708 0:0 hcMemcpyHostToDevice:214 +1822746846143047:1822746847339107 0:0 hcCommandKernel:216 +1822746834479803:1822746834511657 0:0 hcCommandMarker:213 +1822746847430466:1822746850391535 0:0 hcMemcpyDeviceToHost:218 +1822746856872336:1822746858920879 0:0 hcMemcpyHostToDevice:219 +1822746858970905:1822746860163557 0:0 hcCommandKernel:221 +1822746847344106:1822746847375663 0:0 hcCommandMarker:218 +1822746860252348:1822746863231427 0:0 hcMemcpyDeviceToHost:223 +1822746869408556:1822746871462119 0:0 hcMemcpyHostToDevice:224 +1822746871511819:1822746872712620 0:0 hcCommandKernel:226 +1822746860168590:1822746860200147 0:0 hcCommandMarker:223 +1822746872809568:1822746875778157 0:0 hcMemcpyDeviceToHost:228 +1822746882258768:1822746884301771 0:0 hcMemcpyHostToDevice:229 +1822746884359118:1822746885560511 0:0 hcCommandKernel:231 +1822746872717651:1822746872748912 0:0 hcCommandMarker:228 +1822746885654319:1822746888672049 0:0 hcMemcpyDeviceToHost:233 +1822746895138610:1822746897179513 0:0 hcMemcpyHostToDevice:234 +1822746897227988:1822746898442271 0:0 hcCommandKernel:236 +1822746885565336:1822746885596449 0:0 hcCommandMarker:233 +1822746898540601:1822746901547421 0:0 hcMemcpyDeviceToHost:238 +1822746908021352:1822746910080635 0:0 hcMemcpyHostToDevice:239 +1822746910139374:1822746911351286 0:0 hcCommandKernel:241 +1822746898447386:1822746898478795 0:0 hcCommandMarker:238 +1822746911441983:1822746914414793 0:0 hcMemcpyDeviceToHost:243 +1822746920880104:1822746922904187 0:0 hcMemcpyHostToDevice:244 +1822746922952505:1822746924164417 0:0 hcCommandKernel:246 +1822746911356227:1822746911388229 0:0 hcCommandMarker:243 +1822746924255965:1822746927241634 0:0 hcMemcpyDeviceToHost:248 +1822746933728855:1822746935773338 0:0 hcMemcpyHostToDevice:249 +1822746935832849:1822746937031279 0:0 hcCommandKernel:251 +1822746924169308:1822746924201162 0:0 hcCommandMarker:248 +1822746937122477:1822746940117836 0:0 hcMemcpyDeviceToHost:253 +1822746946584908:1822746948629301 0:0 hcMemcpyHostToDevice:254 +1822746948677959:1822746949871056 0:0 hcCommandKernel:256 +1822746937036345:1822746937068199 0:0 hcCommandMarker:253 +1822746949961659:1822746952922958 0:0 hcMemcpyDeviceToHost:258 +1822746959384079:1822746961424632 0:0 hcMemcpyHostToDevice:259 +1822746961476400:1822746962686682 0:0 hcCommandKernel:261 +1822746949876121:1822746949907974 0:0 hcCommandMarker:258 +1822746962778350:1822746965811330 0:0 hcMemcpyDeviceToHost:263 +1822746972296521:1822746974340194 0:0 hcMemcpyHostToDevice:264 +1822746974389187:1822746975606581 0:0 hcCommandKernel:266 +1822746962691718:1822746962723423 0:0 hcCommandMarker:263 +1822746975700143:1822746978697102 0:0 hcMemcpyDeviceToHost:268 +1822746985173653:1822746987229176 0:0 hcMemcpyHostToDevice:269 +1822746987280002:1822746988484358 0:0 hcCommandKernel:271 +1822746975611572:1822746975643426 0:0 hcCommandMarker:268 +1822746988580485:1822746991543943 0:0 hcMemcpyDeviceToHost:273 +1822746998016495:1822747000038778 0:0 hcMemcpyHostToDevice:274 +1822747000087046:1822747001287995 0:0 hcCommandKernel:276 +1822746988489582:1822746988521436 0:0 hcCommandMarker:273 +1822747001376406:1822747004379455 0:0 hcMemcpyDeviceToHost:278 +1822747010852217:1822747012913010 0:0 hcMemcpyHostToDevice:279 +1822747012961691:1822747014161158 0:0 hcCommandKernel:281 +1822747001292965:1822747001324818 0:0 hcCommandMarker:278 +1822747014253818:1822747017222547 0:0 hcMemcpyDeviceToHost:283 +1822747023683838:1822747025732301 0:0 hcMemcpyHostToDevice:284 +1822747025788996:1822747026979574 0:0 hcCommandKernel:286 +1822747014166198:1822747014198052 0:0 hcCommandMarker:283 +1822747027070100:1822747030045629 0:0 hcMemcpyDeviceToHost:288 +1822747036522520:1822747038569243 0:0 hcMemcpyHostToDevice:289 +1822747038617312:1822747039808778 0:0 hcCommandKernel:291 +1822747026984734:1822747027016736 0:0 hcCommandMarker:288 +1822747039907842:1822747042933181 0:0 hcMemcpyDeviceToHost:293 +1822747049409322:1822747051449495 0:0 hcMemcpyHostToDevice:294 +1822747051506634:1822747052713805 0:0 hcCommandKernel:296 +1822747039813758:1822747039845760 0:0 hcCommandMarker:293 +1822747052806114:1822747055758003 0:0 hcMemcpyDeviceToHost:298 +1822747062251204:1822747064274377 0:0 hcMemcpyHostToDevice:299 +1822747064323523:1822747065521952 0:0 hcCommandKernel:301 +1822747052718948:1822747052751394 0:0 hcCommandMarker:298 +1822747065617495:1822747068572654 0:0 hcMemcpyDeviceToHost:303 +1822747075149726:1822747077173719 0:0 hcMemcpyHostToDevice:304 +1822747077232222:1822747078433170 0:0 hcCommandKernel:306 +1822747065527049:1822747065558902 0:0 hcCommandMarker:303 +1822747078526527:1822747081490286 0:0 hcMemcpyDeviceToHost:308 +1822747087713106:1822747089768539 0:0 hcMemcpyHostToDevice:309 +1822747089818113:1822747091020691 0:0 hcCommandKernel:311 +1822747078437994:1822747078469551 0:0 hcCommandMarker:308 +1822747091109837:1822747094093117 0:0 hcMemcpyDeviceToHost:313 +1822747100541217:1822747102599950 0:0 hcMemcpyHostToDevice:314 +1822747102648562:1822747103843436 0:0 hcCommandKernel:316 +1822747091025764:1822747091057617 0:0 hcCommandMarker:313 +1822747103936089:1822747106928978 0:0 hcMemcpyDeviceToHost:318 +1822747113411299:1822747115455572 0:0 hcMemcpyHostToDevice:319 +1822747115504503:1822747116704118 0:0 hcCommandKernel:321 +1822747103848517:1822747103880371 0:0 hcCommandMarker:318 +1822747116798531:1822747119756760 0:0 hcMemcpyDeviceToHost:323 +1822747126242471:1822747128298384 0:0 hcMemcpyHostToDevice:324 +1822747128349774:1822747129559908 0:0 hcCommandKernel:326 +1822747116709198:1822747116741051 0:0 hcCommandMarker:323 +1822747129656553:1822747132639572 0:0 hcMemcpyDeviceToHost:328 +1822747139110713:1822747141157876 0:0 hcMemcpyHostToDevice:329 +1822747141214126:1822747142402037 0:0 hcCommandKernel:331 +1822747129564956:1822747129596513 0:0 hcCommandMarker:328 +1822747142497014:1822747145458493 0:0 hcMemcpyDeviceToHost:333 +1822747151585243:1822747153651436 0:0 hcMemcpyHostToDevice:334 +1822747153701988:1822747154890936 0:0 hcCommandKernel:336 +1822747142407059:1822747142438764 0:0 hcCommandMarker:333 +1822747154985314:1822747157965553 0:0 hcMemcpyDeviceToHost:338 +1822747164440384:1822747166481917 0:0 hcMemcpyHostToDevice:339 +1822747166539009:1822747167736549 0:0 hcCommandKernel:341 +1822747154895913:1822747154927914 0:0 hcCommandMarker:338 +1822747167830796:1822747170835815 0:0 hcMemcpyDeviceToHost:343 +1822747177313656:1822747179357249 0:0 hcMemcpyHostToDevice:344 +1822747179413232:1822747180605143 0:0 hcCommandKernel:346 +1822747167741542:1822747167772803 0:0 hcCommandMarker:343 +1822747180702947:1822747183697477 0:0 hcMemcpyDeviceToHost:348 +1822747190170468:1822747192214061 0:0 hcMemcpyHostToDevice:349 +1822747192271730:1822747193468975 0:0 hcCommandKernel:351 +1822747180610263:1822747180642116 0:0 hcCommandMarker:348 +1822747193559770:1822747196564428 0:0 hcMemcpyDeviceToHost:353 +1822747203043420:1822747205085833 0:0 hcMemcpyHostToDevice:354 +1822747205134515:1822747206325833 0:0 hcCommandKernel:356 +1822747193473789:1822747193505346 0:0 hcCommandMarker:353 +1822747206413732:1822747209394461 0:0 hcMemcpyDeviceToHost:358 +1822747215878292:1822747217937415 0:0 hcMemcpyHostToDevice:359 +1822747217986743:1822747219210211 0:0 hcCommandKernel:361 +1822747206330906:1822747206362463 0:0 hcCommandMarker:358 +1822747219299404:1822747222273022 0:0 hcMemcpyDeviceToHost:363 +1822747228754164:1822747230801437 0:0 hcMemcpyHostToDevice:364 +1822747230850218:1822747232046722 0:0 hcCommandKernel:366 +1822747219215271:1822747219246828 0:0 hcCommandMarker:363 +1822747232123575:1822747235084824 0:0 hcMemcpyDeviceToHost:368 +1822747241190363:1822747243243166 0:0 hcMemcpyHostToDevice:369 +1822747243291089:1822747244488185 0:0 hcCommandKernel:371 +1822747232051717:1822747232082977 0:0 hcCommandMarker:368 +1822747244581325:1822747247525033 0:0 hcMemcpyDeviceToHost:373 +1822747253997974:1822747256034437 0:0 hcMemcpyHostToDevice:374 +1822747256084105:1822747257288164 0:0 hcCommandKernel:376 +1822747244493160:1822747244525014 0:0 hcCommandMarker:373 +1822747257378866:1822747260356555 0:0 hcMemcpyDeviceToHost:378 +1822747266833856:1822747268888449 0:0 hcMemcpyHostToDevice:379 +1822747268937397:1822747270141605 0:0 hcCommandKernel:381 +1822747257293264:1822747257325562 0:0 hcCommandMarker:378 +1822747270235958:1822747273193927 0:0 hcMemcpyDeviceToHost:383 +1822747279656308:1822747281716591 0:0 hcMemcpyHostToDevice:384 +1822747281774820:1822747282977250 0:0 hcCommandKernel:386 +1822747270146539:1822747270177948 0:0 hcCommandMarker:383 +1822747283067979:1822747286042298 0:0 hcMemcpyDeviceToHost:388 +1822747292114437:1822747294171210 0:0 hcMemcpyHostToDevice:389 +1822747294220474:1822747295414015 0:0 hcCommandKernel:391 +1822747282982287:1822747283014585 0:0 hcCommandMarker:388 +1822747295507938:1822747298475988 0:0 hcMemcpyDeviceToHost:393 +1822747304940839:1822747306985062 0:0 hcMemcpyHostToDevice:394 +1822747307042711:1822747308231511 0:0 hcCommandKernel:396 +1822747295419024:1822747295450877 0:0 hcCommandMarker:393 +1822747308321540:1822747311301569 0:0 hcMemcpyDeviceToHost:398 +1822747317808411:1822747319867173 0:0 hcMemcpyHostToDevice:399 +1822747319916853:1822747321117654 0:0 hcCommandKernel:401 +1822747308236422:1822747308268127 0:0 hcCommandMarker:398 +1822747321217272:1822747324200101 0:0 hcMemcpyDeviceToHost:403 +1822747330660573:1822747332688686 0:0 hcMemcpyHostToDevice:404 +1822747332746255:1822747333946167 0:0 hcCommandKernel:406 +1822747321122715:1822747321154421 0:0 hcCommandMarker:403 +1822747334035024:1822747337032983 0:0 hcMemcpyDeviceToHost:408 +1822747343499134:1822747345552477 0:0 hcMemcpyHostToDevice:409 +1822747345601712:1822747346815105 0:0 hcCommandKernel:411 +1822747333951209:1822747333982914 0:0 hcCommandMarker:408 +1822747346905206:1822747349868854 0:0 hcMemcpyDeviceToHost:413 +1822747355987174:1822747358043277 0:0 hcMemcpyHostToDevice:414 +1822747358092303:1822747359300955 0:0 hcCommandKernel:416 +1822747346820040:1822747346851746 0:0 hcCommandMarker:413 +1822747359392056:1822747362394634 0:0 hcMemcpyDeviceToHost:418 +1822747368869926:1822747370897079 0:0 hcMemcpyHostToDevice:419 +1822747370945085:1822747372132404 0:0 hcCommandKernel:421 +1822747359305990:1822747359338288 0:0 hcCommandMarker:418 +1822747372222717:1822747375217526 0:0 hcMemcpyDeviceToHost:423 +1822747381700097:1822747383750731 0:0 hcMemcpyHostToDevice:424 +1822747383798189:1822747384984766 0:0 hcCommandKernel:426 +1822747372137463:1822747372169168 0:0 hcCommandMarker:423 +1822747385077069:1822747388088828 0:0 hcMemcpyDeviceToHost:428 +1822747394554049:1822747396599412 0:0 hcMemcpyHostToDevice:429 +1822747396655845:1822747397870424 0:0 hcCommandKernel:431 +1822747384989637:1822747385021935 0:0 hcCommandMarker:428 +1822747397959161:1822747400906520 0:0 hcMemcpyDeviceToHost:433 +1822747407383351:1822747409443974 0:0 hcMemcpyHostToDevice:434 +1822747409494262:1822747410702915 0:0 hcCommandKernel:436 +1822747397875612:1822747397907318 0:0 hcCommandMarker:433 +1822747410795733:1822747413766601 0:0 hcMemcpyDeviceToHost:438 +1822747419832620:1822747421881393 0:0 hcMemcpyHostToDevice:439 +1822747421939077:1822747423137062 0:0 hcCommandKernel:441 +1822747410708150:1822747410740300 0:0 hcCommandMarker:438 +1822747423224492:1822747426213551 0:0 hcMemcpyDeviceToHost:443 +1822747432700682:1822747434745455 0:0 hcMemcpyHostToDevice:444 +1822747434792960:1822747435986205 0:0 hcCommandKernel:446 +1822747423141865:1822747423173570 0:0 hcCommandMarker:443 +1822747436078254:1822747439084853 0:0 hcMemcpyDeviceToHost:448 +1822747445561904:1822747447606207 0:0 hcMemcpyHostToDevice:449 +1822747447660064:1822747448858938 0:0 hcCommandKernel:451 +1822747435991337:1822747436023042 0:0 hcCommandMarker:448 +1822747448949705:1822747451950475 0:0 hcMemcpyDeviceToHost:453 +1822747458422776:1822747460445569 0:0 hcMemcpyHostToDevice:454 +1822747460495906:1822747461698632 0:0 hcCommandKernel:456 +1822747448864070:1822747448895924 0:0 hcCommandMarker:453 +1822747461786977:1822747464739946 0:0 hcMemcpyDeviceToHost:458 +1822747471195457:1822747473240880 0:0 hcMemcpyHostToDevice:459 +1822747473300770:1822747474507497 0:0 hcCommandKernel:461 +1822747461703602:1822747461735160 0:0 hcCommandMarker:458 +1822747474600889:1822747477587668 0:0 hcMemcpyDeviceToHost:463 +1822747484045419:1822747486088192 0:0 hcMemcpyHostToDevice:464 +1822747486136882:1822747487335904 0:0 hcCommandKernel:466 +1822747474512454:1822747474544456 0:0 hcCommandMarker:463 +1822747487425110:1822747490415609 0:0 hcMemcpyDeviceToHost:468 +1822747496882101:1822747498939404 0:0 hcMemcpyHostToDevice:469 +1822747498987881:1822747500189719 0:0 hcCommandKernel:471 +1822747487340934:1822747487372639 0:0 hcCommandMarker:468 +1822747500280762:1822747503264851 0:0 hcMemcpyDeviceToHost:473 +1822747509774463:1822747511814726 0:0 hcMemcpyHostToDevice:474 +1822747511862364:1822747513061831 0:0 hcCommandKernel:476 +1822747500194823:1822747500226973 0:0 hcCommandMarker:473 +1822747513151704:1822747516146383 0:0 hcMemcpyDeviceToHost:478 +1822747522614955:1822747524667498 0:0 hcMemcpyHostToDevice:479 +1822747524715308:1822747525917145 0:0 hcCommandKernel:481 +1822747513067026:1822747513098583 0:0 hcCommandMarker:478 +1822747526009976:1822747528984375 0:0 hcMemcpyDeviceToHost:483 +1822747535064804:1822747537109407 0:0 hcMemcpyHostToDevice:484 +1822747537169050:1822747538372221 0:0 hcCommandKernel:486 +1822747525922123:1822747525954272 0:0 hcCommandMarker:483 +1822747538461275:1822747541432984 0:0 hcMemcpyDeviceToHost:488 +1822747547551833:1822747549608487 0:0 hcMemcpyHostToDevice:489 +1822747549658235:1822747550859776 0:0 hcCommandKernel:491 +1822747538377083:1822747538408937 0:0 hcCommandMarker:488 +1822747550953385:1822747553930064 0:0 hcMemcpyDeviceToHost:493 +1822747560407595:1822747562450418 0:0 hcMemcpyHostToDevice:494 +1822747562508843:1822747563712606 0:0 hcCommandKernel:496 +1822747550865006:1822747550897008 0:0 hcCommandMarker:493 +1822747563807437:1822747566814536 0:0 hcMemcpyDeviceToHost:498 +1822747572896795:1822747574938758 0:0 hcMemcpyHostToDevice:499 +1822747574987797:1822747576184152 0:0 hcCommandKernel:501 +1822747563717609:1822747563749314 0:0 hcCommandMarker:498 +1822747576277226:1822747579259365 0:0 hcMemcpyDeviceToHost:503 +1822747576189041:1822747576220747 0:0 hcCommandMarker:503 diff --git a/projects/roctracer/test/MatrixTranspose_test/MatrixTranspose.cpp b/projects/roctracer/test/MatrixTranspose_test/MatrixTranspose.cpp index 14e3b847c0..eadeb8c3c5 100644 --- a/projects/roctracer/test/MatrixTranspose_test/MatrixTranspose.cpp +++ b/projects/roctracer/test/MatrixTranspose_test/MatrixTranspose.cpp @@ -207,6 +207,9 @@ int main() { #include #include +#include +#include /* For SYS_xxx definitions */ + // Macro to check ROC-tracer calls status #define ROCTRACER_CALL(call) \ do { \ @@ -217,6 +220,10 @@ int main() { } \ } while (0) +static inline uint32_t GetTid() { return syscall(__NR_gettid); } +static inline uint32_t GetPid() { return syscall(__NR_getpid); } + + // Runtime API callback function void api_callback( uint32_t domain, @@ -237,7 +244,8 @@ void api_callback( roctracer_op_string(ACTIVITY_DOMAIN_KFD_API, cid, 0), cid, data->correlation_id, - (data->phase == ACTIVITY_API_PHASE_ENTER) ? "on-enter" : "on-exit"); + (data->phase == ACTIVITY_API_PHASE_ENTER) ? "on-enter" : "on-exit", + ); return; } const hip_api_data_t* data = (const hip_api_data_t*)(callback_data); @@ -249,23 +257,39 @@ void api_callback( if (data->phase == ACTIVITY_API_PHASE_ENTER) { switch (cid) { case HIP_API_ID_hipMemcpy: - fprintf(stdout, "dst(%p) src(%p) size(0x%x) kind(%u)", + fprintf(stdout, "<%s id(%u)\tcorrelation_id(%lu) %s>\n dst(%p) src(%p) size(0x%x) kind(%u)\n", + roctracer_op_string(ACTIVITY_DOMAIN_HIP_API, cid, 0), + cid, + data->correlation_id, + "on-enter", data->args.hipMemcpy.dst, data->args.hipMemcpy.src, (uint32_t)(data->args.hipMemcpy.sizeBytes), (uint32_t)(data->args.hipMemcpy.kind)); break; case HIP_API_ID_hipMalloc: - fprintf(stdout, "ptr(%p) size(0x%x)", + fprintf(stdout, "<%s id(%u)\tcorrelation_id(%lu) %s>\n ptr(%p) size(0x%x)\n", + roctracer_op_string(ACTIVITY_DOMAIN_HIP_API, cid, 0), + cid, + data->correlation_id, + "on-enter", data->args.hipMalloc.ptr, (uint32_t)(data->args.hipMalloc.size)); break; case HIP_API_ID_hipFree: - fprintf(stdout, "ptr(%p)", + fprintf(stdout, "<%s id(%u)\tcorrelation_id(%lu) %s>\n ptr(%p)\n", + roctracer_op_string(ACTIVITY_DOMAIN_HIP_API, cid, 0), + cid, + data->correlation_id, + "on-enter", data->args.hipFree.ptr); break; case HIP_API_ID_hipModuleLaunchKernel: - fprintf(stdout, "kernel(\"%s\") stream(%p)", + fprintf(stdout, "<%s id(%u)\tcorrelation_id(%lu) %s>\n kernel(\"%s\") stream(%p)\n", + roctracer_op_string(ACTIVITY_DOMAIN_HIP_API, cid, 0), + cid, + data->correlation_id, + "on-enter", hipKernelNameRef(data->args.hipModuleLaunchKernel.f), data->args.hipModuleLaunchKernel.stream); break; @@ -275,16 +299,20 @@ void api_callback( } else { switch (cid) { case HIP_API_ID_hipMalloc: - fprintf(stdout, "*ptr(0x%p)", + fprintf(stdout, "<%s id(%u)\tcorrelation_id(%lu) %s>\n *ptr(0x%p)\n", + roctracer_op_string(ACTIVITY_DOMAIN_HIP_API, cid, 0), + cid, + data->correlation_id, + "on-exit", *(data->args.hipMalloc.ptr)); break; default: break; } } - fprintf(stdout, "\n"); fflush(stdout); + //fprintf(stdout, "\n"); + fflush(stdout); } - // Activity tracing callback // hipMalloc id(3) correlation_id(1): begin_ns(1525888652762640464) end_ns(1525888652762877067) void activity_callback(const char* begin, const char* end, void* arg) { @@ -305,7 +333,7 @@ void activity_callback(const char* begin, const char* end, void* arg) { record->thread_id ); } else if (record->domain == ACTIVITY_DOMAIN_HCC_OPS) { - fprintf(stdout, " device_id(%d) queue_id(%lu)", + fprintf(stdout, " device_id(%d) queue_id(%lu)\n", record->device_id, record->queue_id ); @@ -317,14 +345,13 @@ void activity_callback(const char* begin, const char* end, void* arg) { record->pc_sample.pc ); } else if (record->domain == ACTIVITY_DOMAIN_EXT_API) { - fprintf(stdout, " external_id(%lu)", + fprintf(stdout, " external_id(%lu)\n", record->external_id ); } else { - fprintf(stderr, "Bad domain %d\n", record->domain); + fprintf(stderr, "Bad domain %d\n\n", record->domain); abort(); } - fprintf(stdout, "\n"); fflush(stdout); ROCTRACER_CALL(roctracer_next_record(record, &record)); } diff --git a/projects/roctracer/test/MatrixTranspose_test/MatrixTranspose_test_trace.txt b/projects/roctracer/test/MatrixTranspose_test/MatrixTranspose_test_trace.txt new file mode 100644 index 0000000000..cd3ddd4eae --- /dev/null +++ b/projects/roctracer/test/MatrixTranspose_test/MatrixTranspose_test_trace.txt @@ -0,0 +1,7513 @@ +# INIT ############################# +# START (99) ############################# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x29b6680) size(0x400000) kind(1) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + dst(0x2db6690) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (98) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (97) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (96) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (95) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (94) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (93) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + + Activity records: + hipSetDevice correlation_id(1) time_ns(6485124188342389:6485124188349979) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(2) time_ns(6485124188361079:6485124188364199) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(3) time_ns(6485124190850946:6485124191181268) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(4) time_ns(6485124191186178:6485124191250078) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(5) time_ns(6485124191288478:6485124199283372) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(5) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(5) time_ns(6485124191259308:6485124199287622) + process_id(6177) thread_id(6177) + (null) correlation_id(6) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(6) time_ns(6485124640180177:6485124645801785) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(6) time_ns(6485124645807460:6485124647017150) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(7) time_ns(6485124647151334:6485124650143834) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(7) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(7) time_ns(6485124645822755:6485124650148314) + process_id(6177) thread_id(6177) + (null) correlation_id(8) time_ns(0:0) + external_id(31) + hipFree correlation_id(8) time_ns(6485124659581497:6485124659705167) + process_id(6177) thread_id(6177) + (null) correlation_id(9) time_ns(0:0) + external_id(31) + hipFree correlation_id(9) time_ns(6485124659710827:6485124659733398) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(7) time_ns(6485124647030336:6485124647073153) + device_id(0) queue_id(0) + hipSetDevice correlation_id(10) time_ns(6485124677869969:6485124677886909) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(11) time_ns(6485124677891179:6485124677893879) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(12) time_ns(6485124682415410:6485124682739912) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(13) time_ns(6485124682750472:6485124682868843) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(14) time_ns(6485124682894193:6485124684919306) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(14) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(14) time_ns(6485124682876833:6485124684931606) + process_id(6177) thread_id(6177) + (null) correlation_id(15) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(15) time_ns(6485124684950576:6485124684973317) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(15) time_ns(6485124684980802:6485124686186195) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(16) time_ns(6485124686263055:6485124689285425) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(16) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(16) time_ns(6485124684993147:6485124689287775) + process_id(6177) thread_id(6177) + (null) correlation_id(17) time_ns(0:0) + external_id(31) + hipFree correlation_id(17) time_ns(6485124696618335:6485124696718255) + process_id(6177) thread_id(6177) + (null) correlation_id(18) time_ns(0:0) + external_id(31) + hipFree correlation_id(18) time_ns(6485124696740175:6485124696763135) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(16) time_ns(6485124686191973:6485124686223678) + device_id(0) queue_id(0) + hipSetDevice correlation_id(19) time_ns(6485124715256269:6485124715273659) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(20) time_ns(6485124715277519:6485124715280169) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(21) time_ns(6485124719811839:6485124720164651) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(22) time_ns(6485124720175962:6485124720293742) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(23) time_ns(6485124720318532:6485124722347146) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(23) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(23) time_ns(6485124720301602:6485124722360376) + process_id(6177) thread_id(6177) + (null) correlation_id(24) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(24) time_ns(6485124722379797:6485124722404127) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(24) time_ns(6485124722411451:6485124723600251) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(25) time_ns(6485124723698716:6485124726758446) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(25) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(25) time_ns(6485124722409707:6485124726761586) + process_id(6177) thread_id(6177) + (null) correlation_id(26) time_ns(0:0) + external_id(31) + hipFree correlation_id(26) time_ns(6485124735449544:6485124735549674) + process_id(6177) thread_id(6177) + (null) correlation_id(27) time_ns(0:0) + external_id(31) + hipFree correlation_id(27) time_ns(6485124735554444:6485124735577434) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(25) time_ns(6485124723606029:6485124723637734) + device_id(0) queue_id(0) + hipSetDevice correlation_id(28) time_ns(6485124753729076:6485124753745996) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(29) time_ns(6485124753749646:6485124753752446) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(30) time_ns(6485124758289177:6485124758598259) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(31) time_ns(6485124758609469:6485124758728329) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(32) time_ns(6485124758753490:6485124760777913) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(32) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(32) time_ns(6485124758736339:6485124760782643) + process_id(6177) thread_id(6177) + (null) correlation_id(33) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(33) time_ns(6485124760801583:6485124760824623) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(33) time_ns(6485124760832042:6485124762020841) + device_id(0) queue_id(0) +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (92) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (91) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (90) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (89) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (88) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (87) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (86) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (85) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + Activity records: + hcMemcpyDeviceToHost correlation_id(34) time_ns(6485124762108522:6485124765077142) + device_id(0) queue_id(0) + bytes(0x400000) + + (null) correlation_id(34) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(34) time_ns(6485124760843523:6485124765089362) + process_id(6177) thread_id(6177) + (null) correlation_id(35) time_ns(0:0) + external_id(31) + hipFree correlation_id(35) time_ns(6485124772381351:6485124772486441) + process_id(6177) thread_id(6177) + (null) correlation_id(36) time_ns(0:0) + external_id(31) + hipFree correlation_id(36) time_ns(6485124772492321:6485124772516012) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(34) time_ns(6485124762026619:6485124762058177) + device_id(0) queue_id(0) + hipSetDevice correlation_id(37) time_ns(6485124790641873:6485124790655893) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(38) time_ns(6485124790659513:6485124790662323) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(39) time_ns(6485124795188663:6485124795493815) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(40) time_ns(6485124795504665:6485124795623776) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(41) time_ns(6485124795649086:6485124797692450) + device_id(0) queue_id(0) + bytes(0x400000) + (null) correlation_id(41) time_ns(0:0) + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + external_id(32) + hipMemcpy correlation_id(41) time_ns(6485124795631956:6485124797706270) + process_id(6177) thread_id(6177) + + + + + (null) correlation_id(42) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(42) time_ns(6485124797726170:6485124797749800) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(42) time_ns(6485124797757372:6485124798960839) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(43) time_ns(6485124799058459:6485124802115559) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(43) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(43) time_ns(6485124797755110:6485124802118749) + process_id(6177) thread_id(6177) + (null) correlation_id(44) time_ns(0:0) + external_id(31) + hipFree correlation_id(44) time_ns(6485124810291284:6485124810382124) + process_id(6177) thread_id(6177) + (null) correlation_id(45) time_ns(0:0) + external_id(31) + hipFree correlation_id(45) time_ns(6485124810390914:6485124810407154) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(43) time_ns(6485124798966617:6485124798998618) + device_id(0) queue_id(0) + hipSetDevice correlation_id(46) time_ns(6485124829444052:6485124829458162) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(47) time_ns(6485124829461362:6485124829463392) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(48) time_ns(6485124832825245:6485124833251727) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(49) time_ns(6485124833261827:6485124833375128) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(50) time_ns(6485124833398678:6485124835420832) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(50) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(50) time_ns(6485124833382588:6485124835425832) + process_id(6177) thread_id(6177) + (null) correlation_id(51) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(51) time_ns(6485124835445012:6485124835468392) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(51) time_ns(6485124835475589:6485124836677130) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(52) time_ns(6485124836752701:6485124839759961) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(52) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(52) time_ns(6485124835473852:6485124839763401) + process_id(6177) thread_id(6177) + (null) correlation_id(53) time_ns(0:0) + external_id(31) + hipFree correlation_id(53) time_ns(6485124848528449:6485124848628190) + process_id(6177) thread_id(6177) + (null) correlation_id(54) time_ns(0:0) + external_id(31) + hipFree correlation_id(54) time_ns(6485124848634830:6485124848659320) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(52) time_ns(6485124836682908:6485124836715058) + device_id(0) queue_id(0) + hipSetDevice correlation_id(55) time_ns(6485124866755991:6485124866772241) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(56) time_ns(6485124866776191:6485124866778951) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(57) time_ns(6485124870622527:6485124870972449) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(58) time_ns(6485124870982259:6485124871093530) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(59) time_ns(6485124871117640:6485124873138493) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(59) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(59) time_ns(6485124871101170:6485124873143533) + process_id(6177) thread_id(6177) + (null) correlation_id(60) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(60) time_ns(6485124873163454:6485124873186134) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(60) time_ns(6485124873193873:6485124874392006) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(61) time_ns(6485124874477282:6485124877448242) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(61) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(61) time_ns(6485124873200854:6485124877450632) + process_id(6177) thread_id(6177) + (null) correlation_id(62) time_ns(0:0) + external_id(31) + hipFree correlation_id(62) time_ns(6485124884888052:6485124884985903) + process_id(6177) thread_id(6177) + (null) correlation_id(63) time_ns(0:0) + external_id(31) + hipFree correlation_id(63) time_ns(6485124884990933:6485124885015443) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(61) time_ns(6485124874397636:6485124874429342) + device_id(0) queue_id(0) + hipSetDevice correlation_id(64) time_ns(6485124903423796:6485124903439396) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(65) time_ns(6485124903443276:6485124903445946) + process_id(6177) thread_id(6177) + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (84) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (83) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (82) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (81) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (80) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (79) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + + Activity records: + hipMalloc correlation_id(66) time_ns(6485124907739325:6485124908070797) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(67) time_ns(6485124908087987:6485124908215248) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(68) time_ns(6485124908250409:6485124910289862) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(68) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(68) time_ns(6485124908230598:6485124910295932) + process_id(6177) thread_id(6177) + (null) correlation_id(69) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(69) time_ns(6485124910317522:6485124910341342) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(69) time_ns(6485124910349167:6485124911550115) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(70) time_ns(6485124911643101:6485124914662701) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(70) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(70) time_ns(6485124910346692:6485124914666241) + process_id(6177) thread_id(6177) + (null) correlation_id(71) time_ns(0:0) + external_id(31) + hipFree correlation_id(71) time_ns(6485124921447276:6485124921542137) + process_id(6177) thread_id(6177) + (null) correlation_id(72) time_ns(0:0) + external_id(31) + hipFree correlation_id(72) time_ns(6485124921552307:6485124921569967) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(70) time_ns(6485124911556042:6485124911588191) + device_id(0) queue_id(0) + hipSetDevice correlation_id(73) time_ns(6485124938221628:6485124938238109) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(74) time_ns(6485124938241949:6485124938244519) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(75) time_ns(6485124942825359:6485124943238372) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(76) time_ns(6485124943249442:6485124943369353) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(77) time_ns(6485124943394993:6485124945427107) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(77) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(77) time_ns(6485124943377543:6485124945432437) + process_id(6177) thread_id(6177) + (null) correlation_id(78) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(78) time_ns(6485124945451667:6485124945474287) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(78) time_ns(6485124945481784:6485124946677696) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(79) time_ns(6485124946766615:6485124949731605) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(79) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(79) time_ns(6485124945490127:6485124949734065) + process_id(6177) thread_id(6177) + (null) correlation_id(80) time_ns(0:0) + external_id(31) + hipFree correlation_id(80) time_ns(6485124955842556:6485124955935977) + process_id(6177) thread_id(6177) + (null) correlation_id(81) time_ns(0:0) + external_id(31) + hipFree correlation_id(81) time_ns(6485124955943247:6485124955960887) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(79) time_ns(6485124946683622:6485124946715623) + device_id(0) queue_id(0) + hipSetDevice correlation_id(82) time_ns(6485124973677535:6485124973694366) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(83) time_ns(6485124973698336:6485124973701046) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(84) time_ns(6485124978289996:6485124978585128) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(85) time_ns(6485124978595728:6485124978714839) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(86) time_ns(6485124978740359:6485124980771332) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(86) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(86) time_ns(6485124978722979:6485124980776343) + process_id(6177) thread_id(6177) + (null) correlation_id(87) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(87) time_ns(6485124980795533:6485124980817973) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(87) time_ns(6485124980825375:6485124982013730) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(88) time_ns(6485124982098331:6485124985101221) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(88) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(88) time_ns(6485124980832783:6485124985104281) + process_id(6177) thread_id(6177) + (null) correlation_id(89) time_ns(0:0) + external_id(31) + hipFree correlation_id(89) time_ns(6485124992410340:6485124992510151) + process_id(6177) thread_id(6177) + (null) correlation_id(90) time_ns(0:0) + external_id(31) + hipFree correlation_id(90) time_ns(6485124992516671:6485124992541111) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(88) time_ns(6485124982019508:6485124982051213) + device_id(0) queue_id(0) + hipSetDevice correlation_id(91) time_ns(6485125010590112:6485125010607272) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(92) time_ns(6485125010611312:6485125010613982) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(93) time_ns(6485125015170873:6485125015470645) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(94) time_ns(6485125015481525:6485125015599466) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(95) time_ns(6485125015625666:6485125017667229) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(95) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(95) time_ns(6485125015607386:6485125017680670) + process_id(6177) thread_id(6177) + (null) correlation_id(96) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(96) time_ns(6485125017700280:6485125017723030) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(96) time_ns(6485125017730809:6485125018909830) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(97) time_ns(6485125018999358:6485125022007218) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(97) time_ns(0:0) + external_id(32) +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (78) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (77) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (76) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (75) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (74) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (73) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (72) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (71) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + Activity records: + hipMemcpy correlation_id(97) time_ns(6485125017738400:6485125022009588) + process_id(6177) thread_id(6177) + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + (null) correlation_id(98) time_ns(0:0) + external_id(31) + hipFree correlation_id(98) time_ns(6485125028209109:6485125028305320) + process_id(6177) thread_id(6177) + (null) correlation_id(99) time_ns(0:0) + external_id(31) + hipFree correlation_id(99) time_ns(6485125028311570:6485125028328850) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(97) time_ns(6485125018915757:6485125018947462) + device_id(0) queue_id(0) + hipSetDevice correlation_id(100) time_ns(6485125046374961:6485125046391121) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(101) time_ns(6485125046395231:6485125046398241) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(102) time_ns(6485125050978222:6485125051282294) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(103) time_ns(6485125051293184:6485125051410895) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(104) time_ns(6485125051436275:6485125053476828) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(104) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(104) time_ns(6485125051418915:6485125053489569) + process_id(6177) thread_id(6177) + (null) correlation_id(105) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(105) time_ns(6485125053509189:6485125053532709) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(105) time_ns(6485125053539668:6485125054732912) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(106) time_ns(6485125054822677:6485125057759917) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(106) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(106) time_ns(6485125053545599:6485125057762497) + process_id(6177) thread_id(6177) + (null) correlation_id(107) time_ns(0:0) + external_id(31) + hipFree correlation_id(107) time_ns(6485125065308738:6485125065409608) + process_id(6177) thread_id(6177) + (null) correlation_id(108) time_ns(0:0) + external_id(31) + hipFree correlation_id(108) time_ns(6485125065415058:6485125065438439) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(106) time_ns(6485125054738838:6485125054770692) + device_id(0) queue_id(0) + hipSetDevice correlation_id(109) time_ns(6485125083426279:6485125083440799) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(110) time_ns(6485125083444919:6485125083447609) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(111) time_ns(6485125087762127:6485125088084679) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(112) time_ns(6485125088095670:6485125088213620) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(113) time_ns(6485125088239350:6485125090276704) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(113) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(113) time_ns(6485125088221700:6485125090282114) + process_id(6177) thread_id(6177) + (null) correlation_id(114) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(114) time_ns(6485125090301814:6485125090325184) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(114) time_ns(6485125090332824:6485125091522809) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(115) time_ns(6485125091622083:6485125094668764) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(115) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(115) time_ns(6485125090338774:6485125094672314) + process_id(6177) thread_id(6177) + (null) correlation_id(116) time_ns(0:0) + external_id(31) + hipFree correlation_id(116) time_ns(6485125102644837:6485125102737917) + process_id(6177) thread_id(6177) + (null) correlation_id(117) time_ns(0:0) + external_id(31) + hipFree correlation_id(117) time_ns(6485125102759608:6485125102777838) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(115) time_ns(6485125091528587:6485125091560588) + + + + + + + device_id(0) queue_id(0) + hipSetDevice correlation_id(118) time_ns(6485125119027096:6485125119043226) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(119) time_ns(6485125119046196:6485125119048246) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(120) time_ns(6485125122350629:6485125122667941) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(121) time_ns(6485125122677931:6485125122791482) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(122) time_ns(6485125122815562:6485125124823835) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(122) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(122) time_ns(6485125122799142:6485125124842356) + process_id(6177) thread_id(6177) + (null) correlation_id(123) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(123) time_ns(6485125124861376:6485125124885406) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(123) time_ns(6485125124893328:6485125126095610) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(124) time_ns(6485125126180774:6485125129151474) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(124) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(124) time_ns(6485125124890936:6485125129154044) + process_id(6177) thread_id(6177) + (null) correlation_id(125) time_ns(0:0) + external_id(31) + hipFree correlation_id(125) time_ns(6485125136595454:6485125136698294) + process_id(6177) thread_id(6177) + (null) correlation_id(126) time_ns(0:0) + external_id(31) + hipFree correlation_id(126) time_ns(6485125136703614:6485125136726514) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(124) time_ns(6485125126101685:6485125126133983) + device_id(0) queue_id(0) + hipSetDevice correlation_id(127) time_ns(6485125155017987:6485125155034037) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(128) time_ns(6485125155038007:6485125155040637) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(129) time_ns(6485125159613978:6485125159951050) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(130) time_ns(6485125159961770:6485125160095411) + process_id(6177) thread_id(6177) + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (70) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (69) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (68) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (67) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (66) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (65) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + + Activity records: + hcMemcpyHostToDevice correlation_id(131) time_ns(6485125160121931:6485125162152314) + device_id(0) queue_id(0) + bytes(0x400000)# START (64) ############################# + (null) correlation_id(131) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(131) time_ns(6485125160104451:6485125162171965) + process_id(6177) thread_id(6177) +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + (null) correlation_id(132) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(132) time_ns(6485125162191685:6485125162215525) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(132) time_ns(6485125162222454:6485125163414365) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(133) time_ns(6485125163514243:6485125166500743) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(133) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(133) time_ns(6485125162221245:6485125166504743) + process_id(6177) thread_id(6177) + (null) correlation_id(134) time_ns(0:0) + external_id(31) + hipFree correlation_id(134) time_ns(6485125173335879:6485125173428280) + process_id(6177) thread_id(6177) + (null) correlation_id(135) time_ns(0:0) + external_id(31) + hipFree correlation_id(135) time_ns(6485125173432150:6485125173450010) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(133) time_ns(6485125163420291:6485125163451700) + device_id(0) queue_id(0) + hipSetDevice correlation_id(136) time_ns(6485125190147252:6485125190163572) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(137) time_ns(6485125190167512:6485125190170072) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(138) time_ns(6485125193830126:6485125194234739) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(139) time_ns(6485125194245409:6485125194363390) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(140) time_ns(6485125194389240:6485125196422983) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(140) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(140) time_ns(6485125194371510:6485125196427913) + process_id(6177) thread_id(6177) + (null) correlation_id(141) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(141) time_ns(6485125196447853:6485125196472064) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(141) time_ns(6485125196479844:6485125197667607) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(142) time_ns(6485125197762752:6485125200793523) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(142) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(142) time_ns(6485125196477904:6485125200796833) + process_id(6177) thread_id(6177) + (null) correlation_id(143) time_ns(0:0) + external_id(31) + hipFree correlation_id(143) time_ns(6485125209397650:6485125209489691) + process_id(6177) thread_id(6177) + (null) correlation_id(144) time_ns(0:0) + external_id(31) + hipFree correlation_id(144) time_ns(6485125209499901:6485125209518311) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(142) time_ns(6485125197673385:6485125197705386) + device_id(0) queue_id(0) + hipSetDevice correlation_id(145) time_ns(6485125228529568:6485125228545878) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(146) time_ns(6485125228549808:6485125228552388) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(147) time_ns(6485125231902361:6485125232252733) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(148) time_ns(6485125232263173:6485125232374814) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(149) time_ns(6485125232399384:6485125234407477) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(149) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(149) time_ns(6485125232382954:6485125234420217) + process_id(6177) thread_id(6177) + (null) correlation_id(150) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(150) time_ns(6485125234439198:6485125234461798) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(150) time_ns(6485125234469226:6485125235662767) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(151) time_ns(6485125235754916:6485125238735816) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(151) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(151) time_ns(6485125234467228:6485125238738056) + process_id(6177) thread_id(6177) + (null) correlation_id(152) time_ns(0:0) + external_id(31) + hipFree correlation_id(152) time_ns(6485125246668569:6485125246771040) + process_id(6177) thread_id(6177) + (null) correlation_id(153) time_ns(0:0) + external_id(31) + hipFree correlation_id(153) time_ns(6485125246776470:6485125246799390) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(151) time_ns(6485125235668693:6485125235701139) + device_id(0) queue_id(0) + hipSetDevice correlation_id(154) time_ns(6485125264743910:6485125264759320) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(155) time_ns(6485125264763290:6485125264766030) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(156) time_ns(6485125269284030:6485125269590502) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(157) time_ns(6485125269601012:6485125269719363) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(158) time_ns(6485125269744393:6485125271764117) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(158) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(158) time_ns(6485125269727513:6485125271777117) + process_id(6177) thread_id(6177) + (null) correlation_id(159) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(159) time_ns(6485125271795907:6485125271819487) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(159) time_ns(6485125271826659:6485125273019904) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(160) time_ns(6485125273108596:6485125276121956) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(160) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(160) time_ns(6485125271833437:6485125276124536) + process_id(6177) thread_id(6177) + (null) correlation_id(161) time_ns(0:0) + external_id(31) +PASSED! +# START (63) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (62) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (61) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (60) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (59) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (58) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (57) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + Activity records: + hipFree correlation_id(161) time_ns(6485125283050922:6485125283151943) + process_id(6177) thread_id(6177) + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + (null) correlation_id(162) time_ns(0:0) + external_id(31) + hipFree correlation_id(162) time_ns(6485125283163723:6485125283186473) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(160) time_ns(6485125273025682:6485125273057535) + device_id(0) queue_id(0) + hipSetDevice correlation_id(163) time_ns(6485125300857361:6485125300874031) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(164) time_ns(6485125300877201:6485125300879211) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(165) time_ns(6485125305392331:6485125305700483) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(166) time_ns(6485125305711804:6485125305830694) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(167) time_ns(6485125305856655:6485125307889258) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(167) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(167) time_ns(6485125305839254:6485125307894638) + process_id(6177) thread_id(6177) + (null) correlation_id(168) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(168) time_ns(6485125307914299:6485125307938509) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(168) time_ns(6485125307946204:6485125309151597) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(169) time_ns(6485125309245767:6485125312309768) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(169) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(169) time_ns(6485125307944369:6485125312313368) + process_id(6177) thread_id(6177) + (null) correlation_id(170) time_ns(0:0) + external_id(31) + hipFree correlation_id(170) time_ns(6485125321031056:6485125321127676) + process_id(6177) thread_id(6177) + (null) correlation_id(171) time_ns(0:0) + external_id(31) + hipFree correlation_id(171) time_ns(6485125321135007:6485125321152917) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(169) time_ns(6485125309157375:6485125309189229) + device_id(0) queue_id(0) + hipSetDevice correlation_id(172) time_ns(6485125340134894:6485125340150784) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(173) time_ns(6485125340154814:6485125340157614) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(174) time_ns(6485125343605967:6485125343982349) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(175) time_ns(6485125343992549:6485125344126250) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(176) time_ns(6485125344155050:6485125346159074) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(176) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(176) time_ns(6485125344138090:6485125346178864) + process_id(6177) thread_id(6177) + (null) correlation_id(177) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(177) time_ns(6485125346197074:6485125346219574) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(177) time_ns(6485125346227140:6485125347426014) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(178) time_ns(6485125347517973:6485125350476022) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(178) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(178) time_ns(6485125346237594:6485125350478522) + process_id(6177) thread_id(6177) + (null) correlation_id(179) time_ns(0:0) + external_id(31) + hipFree correlation_id(179) time_ns(6485125358298355:6485125358402046) + process_id(6177) thread_id(6177) + (null) correlation_id(180) time_ns(0:0) + + + + + + + external_id(31) + hipFree correlation_id(180) time_ns(6485125358407906:6485125358431986) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(178) time_ns(6485125347432088:6485125347464090) + device_id(0) queue_id(0) + hipSetDevice correlation_id(181) time_ns(6485125376446966:6485125376461306) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(182) time_ns(6485125376465306:6485125376467846) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(183) time_ns(6485125380996816:6485125381301808) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(184) time_ns(6485125381313018:6485125381430899) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(185) time_ns(6485125381457459:6485125383493573) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(185) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(185) time_ns(6485125381439279:6485125383498673) + process_id(6177) thread_id(6177) + (null) correlation_id(186) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(186) time_ns(6485125383516823:6485125383538843) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(186) time_ns(6485125383546561:6485125384739509) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(187) time_ns(6485125384817902:6485125387818542) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(187) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(187) time_ns(6485125383553953:6485125387820962) + process_id(6177) thread_id(6177) + (null) correlation_id(188) time_ns(0:0) + external_id(31) + hipFree correlation_id(188) time_ns(6485125394405436:6485125394502887) + process_id(6177) thread_id(6177) + (null) correlation_id(189) time_ns(0:0) + external_id(31) + hipFree correlation_id(189) time_ns(6485125394508487:6485125394530467) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(187) time_ns(6485125384745287:6485125384777141) + device_id(0) queue_id(0) + hipSetDevice correlation_id(190) time_ns(6485125411150078:6485125411165148) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(191) time_ns(6485125411168268:6485125411170248) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(192) time_ns(6485125414451260:6485125414763022) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(193) time_ns(6485125414773232:6485125414896163) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(194) time_ns(6485125414921843:6485125416931547) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(194) time_ns(0:0) + external_id(32) + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (56) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (55) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (54) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (53) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (52) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (51) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (50) ############################# + Activity records: + hipMemcpy correlation_id(194) time_ns(6485125414904133:6485125416944507) + process_id(6177) thread_id(6177) +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + (null) correlation_id(195) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(195) time_ns(6485125416968937:6485125417006657) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(195) time_ns(6485125416999005:6485125418200102) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(196) time_ns(6485125418285636:6485125421241395) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(196) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(196) time_ns(6485125417018547:6485125421244355) + process_id(6177) thread_id(6177) + (null) correlation_id(197) time_ns(0:0) + external_id(31) + hipFree correlation_id(197) time_ns(6485125428530684:6485125428631355) + process_id(6177) thread_id(6177) + (null) correlation_id(198) time_ns(0:0) + external_id(31) + hipFree correlation_id(198) time_ns(6485125428636905:6485125428658715) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(196) time_ns(6485125418205880:6485125418238030) + device_id(0) queue_id(0) + hipSetDevice correlation_id(199) time_ns(6485125447658692:6485125447676062) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(200) time_ns(6485125447680002:6485125447682562) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(201) time_ns(6485125452200222:6485125452539605) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(202) time_ns(6485125452558565:6485125452723966) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(203) time_ns(6485125452758366:6485125454795309) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(203) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(203) time_ns(6485125452739096:6485125454800289) + process_id(6177) thread_id(6177) + (null) correlation_id(204) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(204) time_ns(6485125454820290:6485125454844770) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(204) time_ns(6485125454852105:6485125456039275) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(205) time_ns(6485125456121018:6485125459134538) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(205) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(205) time_ns(6485125454855940:6485125459137698) + process_id(6177) thread_id(6177) + (null) correlation_id(206) time_ns(0:0) + external_id(31) + hipFree correlation_id(206) time_ns(6485125467849267:6485125467952367) + process_id(6177) thread_id(6177) + (null) correlation_id(207) time_ns(0:0) + external_id(31) + hipFree correlation_id(207) time_ns(6485125467957598:6485125467980518) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(205) time_ns(6485125456045053:6485125456076314) + device_id(0) queue_id(0) + hipSetDevice correlation_id(208) time_ns(6485125486195109:6485125486212519) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(209) time_ns(6485125486216729:6485125486219399) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(210) time_ns(6485125490737810:6485125491063452) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(211) time_ns(6485125491073842:6485125491193323) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(212) time_ns(6485125491218833:6485125493253937) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(212) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(212) time_ns(6485125491201443:6485125493258947) + process_id(6177) thread_id(6177) + (null) correlation_id(213) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(213) time_ns(6485125493278627:6485125493301717) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(213) time_ns(6485125493309268:6485125494499105) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(214) time_ns(6485125494583846:6485125497572065) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(214) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(214) time_ns(6485125493320957:6485125497574255) + process_id(6177) thread_id(6177) + (null) correlation_id(215) time_ns(0:0) + external_id(31) + hipFree correlation_id(215) time_ns(6485125505050285:6485125505149286) + process_id(6177) thread_id(6177) + (null) correlation_id(216) time_ns(0:0) + external_id(31) + hipFree correlation_id(216) time_ns(6485125505167736:6485125505190006) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(214) time_ns(6485125494504883:6485125494537033) + device_id(0) queue_id(0) + hipSetDevice correlation_id(217) time_ns(6485125523603839:6485125523621140) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(218) time_ns(6485125523625050:6485125523627540) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(219) time_ns(6485125528127730:6485125528433482) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(220) time_ns(6485125528444302:6485125528562802) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(221) time_ns(6485125528589153:6485125530624636) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(221) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(221) time_ns(6485125528571012:6485125530630086) + process_id(6177) thread_id(6177) + (null) correlation_id(222) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(222) time_ns(6485125530649636:6485125530672646) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(222) time_ns(6485125530680387:6485125531872149) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(223) time_ns(6485125531962655:6485125534929915) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(223) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(223) time_ns(6485125530691597:6485125534932405) + process_id(6177) thread_id(6177) + (null) correlation_id(224) time_ns(0:0) + external_id(31) + hipFree correlation_id(224) time_ns(6485125541181237:6485125541283648) + process_id(6177) thread_id(6177) + (null) correlation_id(225) time_ns(0:0) + external_id(31) +PASSED! +# START (49) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (48) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (47) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (46) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (45) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (44) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (43) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + Activity records: + hipFree correlation_id(225) time_ns(6485125541288608:6485125541311758) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(223) time_ns(6485125531877928:6485125531909633) + device_id(0) queue_id(0) + hipSetDevice correlation_id(226) time_ns(6485125561435592:6485125561453002) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(227) time_ns(6485125561456292:6485125561458642) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(228) time_ns(6485125564483582:6485125564787984) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(229) time_ns(6485125564798724:6485125564911415) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(230) time_ns(6485125564936305:6485125566954879) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(230) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(230) time_ns(6485125564919095:6485125566960089) + process_id(6177) thread_id(6177) + (null) correlation_id(231) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(231) time_ns(6485125566979039:6485125567002779) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(231) time_ns(6485125567010437:6485125568211533) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(232) time_ns(6485125568286318:6485125571332928) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(232) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(232) time_ns(6485125567027390:6485125571336208) + process_id(6177) thread_id(6177) + (null) correlation_id(233) time_ns(0:0) + external_id(31) + hipFree correlation_id(233) time_ns(6485125580078336:6485125580178137) + process_id(6177) thread_id(6177) + (null) correlation_id(234) time_ns(0:0) + external_id(31) + hipFree correlation_id(234) time_ns(6485125580185267:6485125580209227) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(232) time_ns(6485125568217459:6485125568249165) + device_id(0) queue_id(0) + hipSetDevice correlation_id(235) time_ns(6485125598212218:6485125598227898) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(236) time_ns(6485125598232088:6485125598234668) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(237) time_ns(6485125602247865:6485125602552447) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(238) time_ns(6485125602562577:6485125602675278) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(239) time_ns(6485125602700648:6485125604718891) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(239) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(239) time_ns(6485125602683278:6485125604724261) + process_id(6177) thread_id(6177) + (null) correlation_id(240) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(240) time_ns(6485125604744071:6485125604766502) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(240) time_ns(6485125604774146:6485125605969761) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(241) time_ns(6485125606053910:6485125609052940) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(241) time_ns(0:0) + external_id(32) + + + hipMemcpy correlation_id(241) time_ns(6485125604781072:6485125609055260) + process_id(6177) thread_id(6177) + + + + + (null) correlation_id(242) time_ns(0:0) + external_id(31) + hipFree correlation_id(242) time_ns(6485125616339709:6485125616435740) + process_id(6177) thread_id(6177) + (null) correlation_id(243) time_ns(0:0) + external_id(31) + hipFree correlation_id(243) time_ns(6485125616441130:6485125616465770) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(241) time_ns(6485125605975688:6485125606007689) + device_id(0) queue_id(0) + hipSetDevice correlation_id(244) time_ns(6485125634516150:6485125634530140) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(245) time_ns(6485125634533950:6485125634536561) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(246) time_ns(6485125638177085:6485125638473957) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(247) time_ns(6485125638485107:6485125638600427) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(248) time_ns(6485125638626878:6485125640661231) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(248) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(248) time_ns(6485125638608398:6485125640666501) + process_id(6177) thread_id(6177) + (null) correlation_id(249) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(249) time_ns(6485125640687701:6485125640711821) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(249) time_ns(6485125640719380:6485125641923292) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(250) time_ns(6485125642012910:6485125644978340) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(250) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(250) time_ns(6485125640718561:6485125644981060) + process_id(6177) thread_id(6177) + (null) correlation_id(251) time_ns(0:0) + external_id(31) + hipFree correlation_id(251) time_ns(6485125651149091:6485125651240892) + process_id(6177) thread_id(6177) + (null) correlation_id(252) time_ns(0:0) + external_id(31) + hipFree correlation_id(252) time_ns(6485125651244832:6485125651263552) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(250) time_ns(6485125641929070:6485125641961368) + device_id(0) queue_id(0) + hipSetDevice correlation_id(253) time_ns(6485125668738229:6485125668754979) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(254) time_ns(6485125668758859:6485125668761769) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(255) time_ns(6485125673339520:6485125673642822) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(256) time_ns(6485125673653362:6485125673772393) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(257) time_ns(6485125673798583:6485125675830197) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(257) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(257) time_ns(6485125673780473:6485125675835347) + process_id(6177) thread_id(6177) + (null) correlation_id(258) time_ns(0:0) + external_id(33) + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (42) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (41) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (40) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (39) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (38) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (37) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (36) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (35) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + Activity records: + hipModuleLaunchKernel correlation_id(258) time_ns(6485125675854037:6485125675877457) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(258) time_ns(6485125675884879:6485125677098866) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(259) time_ns(6485125677188916:6485125680229416) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(259) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(259) time_ns(6485125675891477:6485125680232646) + process_id(6177) thread_id(6177) + (null) correlation_id(260) time_ns(0:0) + external_id(31) + hipFree correlation_id(260) time_ns(6485125687110121:6485125687209332) + process_id(6177) thread_id(6177) + (null) correlation_id(261) time_ns(0:0) + external_id(31) + hipFree correlation_id(261) time_ns(6485125687215272:6485125687237922) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(259) time_ns(6485125677104792:6485125677136794) + device_id(0) queue_id(0) + hipSetDevice correlation_id(262) time_ns(6485125706808823:6485125706824203) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(263) time_ns(6485125706827283:6485125706829303) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(264) time_ns(6485125710152476:6485125710459378) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(265) time_ns(6485125710469338:6485125710581789) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(266) time_ns(6485125710606449:6485125712616202) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(266) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(266) time_ns(6485125710589619:6485125712628852) + process_id(6177) thread_id(6177) + (null) correlation_id(267) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(267) time_ns(6485125712649152:6485125712672742) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(267) time_ns(6485125712680708:6485125713873508) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(268) time_ns(6485125713962571:6485125716943831) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(268) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(268) time_ns(6485125712678532:6485125716946381) + process_id(6177) thread_id(6177) + (null) correlation_id(269) time_ns(0:0) + external_id(31) + hipFree correlation_id(269) time_ns(6485125723120992:6485125723213593) + process_id(6177) thread_id(6177) + (null) correlation_id(270) time_ns(0:0) + external_id(31) + hipFree correlation_id(270) time_ns(6485125723223593:6485125723243223) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(268) time_ns(6485125713879434:6485125713911139) + device_id(0) queue_id(0) + hipSetDevice correlation_id(271) time_ns(6485125740776960:6485125740793370) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(272) time_ns(6485125740797300:6485125740799941) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(273) time_ns(6485125744786127:6485125745124359) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(274) time_ns(6485125745135879:6485125745254370) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(275) time_ns(6485125745281220:6485125747321894) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(275) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(275) time_ns(6485125745262760:6485125747327144) + process_id(6177) thread_id(6177) + (null) correlation_id(276) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(276) time_ns(6485125747346214:6485125747370054) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(276) time_ns(6485125747377310:6485125748577073) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(277) time_ns(6485125748653723:6485125751603003) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(277) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(277) time_ns(6485125747375634:6485125751605163) + process_id(6177) thread_id(6177) + (null) correlation_id(278) time_ns(0:0) + external_id(31) + hipFree correlation_id(278) time_ns(6485125758126676:6485125758227067) + process_id(6177) thread_id(6177) + (null) correlation_id(279) time_ns(0:0) + external_id(31) + hipFree correlation_id(279) time_ns(6485125758232877:6485125758257287) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(277) time_ns(6485125748582851:6485125748614556) + device_id(0) queue_id(0) + hipSetDevice correlation_id(280) time_ns(6485125775818474:6485125775833604) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(281) time_ns(6485125775836594:6485125775838344) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(282) time_ns(6485125779147596:6485125779441778) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(283) time_ns(6485125779450088:6485125779557329) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(284) time_ns(6485125779580079:6485125781581533) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(284) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(284) time_ns(6485125779564019:6485125781607663) + process_id(6177) thread_id(6177) + (null) correlation_id(285) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(285) time_ns(6485125781624083:6485125781643633) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(285) time_ns(6485125781651893:6485125782846767) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(286) time_ns(6485125782933402:6485125785912432) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(286) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(286) time_ns(6485125781664843:6485125785914672) + process_id(6177) thread_id(6177) + (null) correlation_id(287) time_ns(0:0) + external_id(31) + hipFree correlation_id(287) time_ns(6485125793604153:6485125793704194) + process_id(6177) thread_id(6177) + (null) correlation_id(288) time_ns(0:0) + external_id(31) + hipFree correlation_id(288) time_ns(6485125793709274:6485125793730844) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(286) time_ns(6485125782852693:6485125782884398) + device_id(0) queue_id(0) + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (34) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (33) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (32) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (31) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (30) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (29) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + + Activity records: + hipSetDevice correlation_id(289) time_ns(6485125812340668:6485125812356778) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(290) time_ns(6485125812366068:6485125812368638) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(291) time_ns(6485125816925179:6485125817261271) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(292) time_ns(6485125817272301:6485125817390892) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(293) time_ns(6485125817417802:6485125819445496) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(293) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(293) time_ns(6485125817399052:6485125819458066) + process_id(6177) thread_id(6177) + (null) correlation_id(294) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(294) time_ns(6485125819477346:6485125819500506) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(294) time_ns(6485125819508274:6485125820714704) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(295) time_ns(6485125820790665:6485125823762434) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(295) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(295) time_ns(6485125819506066:6485125823764784) + process_id(6177) thread_id(6177) + (null) correlation_id(296) time_ns(0:0) + external_id(31) + hipFree correlation_id(296) time_ns(6485125832423953:6485125832523193) + process_id(6177) thread_id(6177) + (null) correlation_id(297) time_ns(0:0) + external_id(31) + hipFree correlation_id(297) time_ns(6485125832528353:6485125832550743) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(295) time_ns(6485125820720630:6485125820752335) + device_id(0) queue_id(0) + hipSetDevice correlation_id(298) time_ns(6485125850521463:6485125850537553) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(299) time_ns(6485125850541764:6485125850544424) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(300) time_ns(6485125854206848:6485125854497000) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(301) time_ns(6485125854507590:6485125854623431) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(302) time_ns(6485125854649771:6485125856679504) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(302) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(302) time_ns(6485125854631341:6485125856685894) + process_id(6177) thread_id(6177) + (null) correlation_id(303) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(303) time_ns(6485125856706615:6485125856730235) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(303) time_ns(6485125856738307:6485125857923847) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(304) time_ns(6485125858013393:6485125861007894) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(304) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(304) time_ns(6485125856747075:6485125861010554) + process_id(6177) thread_id(6177) + (null) correlation_id(305) time_ns(0:0) + external_id(31) + hipFree correlation_id(305) time_ns(6485125867174995:6485125867265525) + process_id(6177) thread_id(6177) + (null) correlation_id(306) time_ns(0:0) + external_id(31) + hipFree correlation_id(306) time_ns(6485125867276885:6485125867294845) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(304) time_ns(6485125857929625:6485125857961775) + device_id(0) queue_id(0) + hipSetDevice correlation_id(307) time_ns(6485125884936183:6485125884953063) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(308) time_ns(6485125884956903:6485125884959393) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(309) time_ns(6485125888871779:6485125889276482) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(310) time_ns(6485125889287172:6485125889405393) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(311) time_ns(6485125889432003:6485125891458317) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(311) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(311) time_ns(6485125889413873:6485125891470627) + process_id(6177) thread_id(6177) + (null) correlation_id(312) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(312) time_ns(6485125891489817:6485125891513327) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(312) time_ns(6485125891521573:6485125892722521) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(313) time_ns(6485125892797976:6485125895800796) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(313) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(313) time_ns(6485125891525027:6485125895802976) + process_id(6177) thread_id(6177) + (null) correlation_id(314) time_ns(0:0) + external_id(31) + hipFree correlation_id(314) time_ns(6485125902404140:6485125902502490) + process_id(6177) thread_id(6177) + (null) correlation_id(315) time_ns(0:0) + external_id(31) + hipFree correlation_id(315) time_ns(6485125902517500:6485125902539671) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(313) time_ns(6485125892728299:6485125892759708) + device_id(0) queue_id(0) + hipSetDevice correlation_id(316) time_ns(6485125919972637:6485125919989367) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(317) time_ns(6485125919992517:6485125919994347) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(318) time_ns(6485125923279160:6485125923587182) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(319) time_ns(6485125923597302:6485125923709363) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(320) time_ns(6485125923734713:6485125925771206) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(320) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(320) time_ns(6485125923717013:6485125925776726) + process_id(6177) thread_id(6177) + (null) correlation_id(321) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(321) time_ns(6485125925796976:6485125925819787) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(321) time_ns(6485125925827237:6485125927018704) + device_id(0) queue_id(0) +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (28) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (27) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (26) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (25) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (24) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (23) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (22) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (21) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + Activity records: + hcMemcpyDeviceToHost correlation_id(322) time_ns(6485125927107115:6485125930073545) + device_id(0) queue_id(0) + bytes(0x400000) + + (null) correlation_id(322) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(322) time_ns(6485125925836737:6485125930080605) + process_id(6177) thread_id(6177) + (null) correlation_id(323) time_ns(0:0) + external_id(31) + hipFree correlation_id(323) time_ns(6485125937813706:6485125937918227) + process_id(6177) thread_id(6177) + (null) correlation_id(324) time_ns(0:0) + external_id(31) + hipFree correlation_id(324) time_ns(6485125937924147:6485125937947627) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(322) time_ns(6485125927024630:6485125927056039) + device_id(0) queue_id(0) + hipSetDevice correlation_id(325) time_ns(6485125957437228:6485125957452428) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(326) time_ns(6485125957456408:6485125957459078) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(327) time_ns(6485125961320183:6485125961620445) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(328) time_ns(6485125961631136:6485125961740166) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(329) time_ns(6485125961766146:6485125963792030) + device_id(0) queue_id(0) + bytes(0x400000) + + (null) correlation_id(329) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(329) time_ns(6485125961747816:6485125963797840) + process_id(6177) thread_id(6177) + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + (null) correlation_id(330) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(330) time_ns(6485125963817360:6485125963840090) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(330) time_ns(6485125963848148:6485125965046727) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(331) time_ns(6485125965133949:6485125968113889) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(331) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(331) time_ns(6485125963851760:6485125968116709) + process_id(6177) thread_id(6177) + + + (null) correlation_id(332) time_ns(0:0) + external_id(31) + hipFree correlation_id(332) time_ns(6485125974906894:6485125975008865) + process_id(6177) thread_id(6177) + + + (null) correlation_id(333) time_ns(0:0) + external_id(31) + hipFree correlation_id(333) time_ns(6485125975014125:6485125975035615) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(331) time_ns(6485125965052653:6485125965084654) + device_id(0) queue_id(0) + hipSetDevice correlation_id(334) time_ns(6485125992595142:6485125992608652) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(335) time_ns(6485125992611972:6485125992614733) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(336) time_ns(6485125997175593:6485125997467365) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(337) time_ns(6485125997477975:6485125997595406) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(338) time_ns(6485125997622406:6485125999654870) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(338) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(338) time_ns(6485125997603516:6485125999660300) + process_id(6177) thread_id(6177) + (null) correlation_id(339) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(339) time_ns(6485125999679040:6485125999702710) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(339) time_ns(6485125999710183:6485126000891575) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(340) time_ns(6485126000985429:6485126003937298) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(340) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(340) time_ns(6485125999719030:6485126003940738) + process_id(6177) thread_id(6177) + (null) correlation_id(341) time_ns(0:0) + external_id(31) + hipFree correlation_id(341) time_ns(6485126012692877:6485126012792727) + process_id(6177) thread_id(6177) + (null) correlation_id(342) time_ns(0:0) + external_id(31) + hipFree correlation_id(342) time_ns(6485126012798037:6485126012820787) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(340) time_ns(6485126000897501:6485126000929651) + device_id(0) queue_id(0) + hipSetDevice correlation_id(343) time_ns(6485126030918609:6485126030934739) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(344) time_ns(6485126030938869:6485126030941529) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(345) time_ns(6485126034122910:6485126034430562) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(346) time_ns(6485126034440402:6485126034553343) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(347) time_ns(6485126034580453:6485126036589586) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(347) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(347) time_ns(6485126034561963:6485126036601757) + process_id(6177) thread_id(6177) + (null) correlation_id(348) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(348) time_ns(6485126036620687:6485126036643327) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(348) time_ns(6485126036651100:6485126037846270) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(349) time_ns(6485126037930125:6485126040913165) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(349) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(349) time_ns(6485126036648837:6485126040915835) + process_id(6177) thread_id(6177) + (null) correlation_id(350) time_ns(0:0) + external_id(31) + hipFree correlation_id(350) time_ns(6485126048142684:6485126048240464) + process_id(6177) thread_id(6177) + (null) correlation_id(351) time_ns(0:0) + external_id(31) + hipFree correlation_id(351) time_ns(6485126048258615:6485126048280265) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(349) time_ns(6485126037852196:6485126037883902) + device_id(0) queue_id(0) + hipSetDevice correlation_id(352) time_ns(6485126066174994:6485126066190844) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(353) time_ns(6485126066194634:6485126066197174) + process_id(6177) thread_id(6177) + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (20) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (19) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (18) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (17) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (16) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (15) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + + Activity records: + hipMalloc correlation_id(354) time_ns(6485126070748334:6485126071063737) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(355) time_ns(6485126071080297:6485126071199017) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(356) time_ns(6485126071292098:6485126073331272) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(356) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(356) time_ns(6485126071224898:6485126073336982) + process_id(6177) thread_id(6177) + (null) correlation_id(357) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(357) time_ns(6485126073359802:6485126073384062) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(357) time_ns(6485126073391879:6485126074587049) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(358) time_ns(6485126074681381:6485126077725752) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(358) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(358) time_ns(6485126073392232:6485126077729092) + process_id(6177) thread_id(6177) + (null) correlation_id(359) time_ns(0:0) + external_id(31) + hipFree correlation_id(359) time_ns(6485126086034167:6485126086127337) + process_id(6177) thread_id(6177) + (null) correlation_id(360) time_ns(0:0) + external_id(31) + hipFree correlation_id(360) time_ns(6485126086135297:6485126086152467) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(358) time_ns(6485126074592827:6485126074624088) + device_id(0) queue_id(0) + hipSetDevice correlation_id(361) time_ns(6485126105066254:6485126105082914) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(362) time_ns(6485126105086734:6485126105089434) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(363) time_ns(6485126108354316:6485126108670218) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(364) time_ns(6485126108680258:6485126108793509) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(365) time_ns(6485126108818819:6485126110837903) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(365) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(365) time_ns(6485126108801149:6485126110843013) + process_id(6177) thread_id(6177) + (null) correlation_id(366) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(366) time_ns(6485126110861403:6485126110884783) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(366) time_ns(6485126110892081:6485126112094066) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(367) time_ns(6485126112169551:6485126115192981) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(367) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(367) time_ns(6485126110910033:6485126115196291) + process_id(6177) thread_id(6177) + (null) correlation_id(368) time_ns(0:0) + external_id(31) + hipFree correlation_id(368) time_ns(6485126123952290:6485126124070911) + process_id(6177) thread_id(6177) + (null) correlation_id(369) time_ns(0:0) + external_id(31) + hipFree correlation_id(369) time_ns(6485126124077511:6485126124101031) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(367) time_ns(6485126112099992:6485126112131994) + device_id(0) queue_id(0) + hipSetDevice correlation_id(370) time_ns(6485126142221572:6485126142237802) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(371) time_ns(6485126142241732:6485126142244302) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(372) time_ns(6485126145628615:6485126146001867) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(373) time_ns(6485126146012167:6485126146125138) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(374) time_ns(6485126146151738:6485126148155702) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(374) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(374) time_ns(6485126146132798:6485126148174432) + process_id(6177) thread_id(6177) + (null) correlation_id(375) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(375) time_ns(6485126148194502:6485126148217222) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(375) time_ns(6485126148225186:6485126149420061) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(376) time_ns(6485126149509671:6485126152554652) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(376) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(376) time_ns(6485126148222582:6485126152557352) + process_id(6177) thread_id(6177) + (null) correlation_id(377) time_ns(0:0) + external_id(31) + hipFree correlation_id(377) time_ns(6485126159535798:6485126159633608) + process_id(6177) thread_id(6177) + (null) correlation_id(378) time_ns(0:0) + external_id(31) + hipFree correlation_id(378) time_ns(6485126159641068:6485126159663589) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(376) time_ns(6485126149425987:6485126149458285) + device_id(0) queue_id(0) + hipSetDevice correlation_id(379) time_ns(6485126177794230:6485126177809240) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(380) time_ns(6485126177812530:6485126177814530) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(381) time_ns(6485126181116742:6485126181425204) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(382) time_ns(6485126181435424:6485126181547815) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(383) time_ns(6485126181574055:6485126183593789) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(383) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(383) time_ns(6485126181555535:6485126183599069) + process_id(6177) thread_id(6177) + (null) correlation_id(384) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(384) time_ns(6485126183617339:6485126183639879) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(384) time_ns(6485126183647462:6485126184844114) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(385) time_ns(6485126184933898:6485126187918018) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(385) time_ns(0:0) + external_id(32) +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (14) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (13) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (12) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (11) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (10) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (9) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (8) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (7) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + Activity records: + hipMemcpy correlation_id(385) time_ns(6485126183660359:6485126187920148) + process_id(6177) thread_id(6177) + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + (null) correlation_id(386) time_ns(0:0) + external_id(31) + hipFree correlation_id(386) time_ns(6485126196373614:6485126196479464) + process_id(6177) thread_id(6177) + (null) correlation_id(387) time_ns(0:0) + external_id(31) + hipFree correlation_id(387) time_ns(6485126196484554:6485126196507065) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(385) time_ns(6485126184850040:6485126184881746) + device_id(0) queue_id(0) + hipSetDevice correlation_id(388) time_ns(6485126215708863:6485126215724833) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(389) time_ns(6485126215728813:6485126215731393) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(390) time_ns(6485126219339597:6485126219657230) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(391) time_ns(6485126219667570:6485126219779670) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(392) time_ns(6485126219805271:6485126221837084) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(392) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(392) time_ns(6485126219787760:6485126221842494) + process_id(6177) thread_id(6177) + (null) correlation_id(393) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(393) time_ns(6485126221861884:6485126221885114) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(393) time_ns(6485126221892706:6485126223095432) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(394) time_ns(6485126223187123:6485126226156263) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(394) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(394) time_ns(6485126221890844:6485126226158733) + process_id(6177) thread_id(6177) + (null) correlation_id(395) time_ns(0:0) + external_id(31) + hipFree correlation_id(395) time_ns(6485126233880295:6485126233981615) + process_id(6177) thread_id(6177) + (null) correlation_id(396) time_ns(0:0) + external_id(31) + hipFree correlation_id(396) time_ns(6485126233987025:6485126234010195) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(394) time_ns(6485126223101210:6485126223133212) + device_id(0) queue_id(0) + hipSetDevice correlation_id(397) time_ns(6485126252656730:6485126252672940) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(398) time_ns(6485126252677030:6485126252679870) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(399) time_ns(6485126257208460:6485126257516852) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(400) time_ns(6485126257527472:6485126257645053) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(401) time_ns(6485126257670593:6485126259684487) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(401) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(401) time_ns(6485126257652773:6485126259703367) + process_id(6177) thread_id(6177) + (null) correlation_id(402) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(402) time_ns(6485126259722137:6485126259745408) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(402) time_ns(6485126259753102:6485126260955236) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(403) time_ns(6485126261041926:6485126264031546) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(403) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(403) time_ns(6485126259771078:6485126264033916) + process_id(6177) thread_id(6177) + (null) correlation_id(404) time_ns(0:0) + external_id(31) + hipFree correlation_id(404) time_ns(6485126270768981:6485126270868161) + process_id(6177) thread_id(6177) + (null) correlation_id(405) time_ns(0:0) + external_id(31) + hipFree correlation_id(405) time_ns(6485126270873201:6485126270895902) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(403) time_ns(6485126260961014:6485126260992867) + device_id(0) queue_id(0) + hipSetDevice correlation_id(406) time_ns(6485126288605510:6485126288619470) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(407) time_ns(6485126288622410:6485126288624180) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(408) time_ns(6485126293073560:6485126293368472) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(409) time_ns(6485126293379422:6485126293497303) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(410) time_ns(6485126293524043:6485126295547917) + device_id(0) queue_id(0) + bytes(0x400000) + + (null) correlation_id(410) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(410) time_ns(6485126293505493:6485126295561457) + process_id(6177) thread_id(6177) + + + + + (null) correlation_id(411) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(411) time_ns(6485126295580427:6485126295605477) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(411) time_ns(6485126295613305:6485126296806698) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(412) time_ns(6485126296900126:6485126299890955) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(412) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(412) time_ns(6485126295632887:6485126299894195) + process_id(6177) thread_id(6177) + (null) correlation_id(413) time_ns(0:0) + external_id(31) + hipFree correlation_id(413) time_ns(6485126308424513:6485126308524433) + process_id(6177) thread_id(6177) + (null) correlation_id(414) time_ns(0:0) + external_id(31) + hipFree correlation_id(414) time_ns(6485126308530193:6485126308553384) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(412) time_ns(6485126296812476:6485126296844774) + device_id(0) queue_id(0) + hipSetDevice correlation_id(415) time_ns(6485126326661474:6485126326677245) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(416) time_ns(6485126326681515:6485126326684165) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(417) time_ns(6485126330528830:6485126331018123) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(418) time_ns(6485126331028253:6485126331142044) + process_id(6177) thread_id(6177) + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (6) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (5) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (4) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (3) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + + +# START (2) ############################# +Device 0 name: Vega 10 XT [Radeon RX Vega 64] +PASSED! +# START (1) ############################# + + + + + + + + +Device 0 name: Vega 10 XT [Radeon RX Vega 64] + + + + ptr(0x7ffe3359ea58) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29a00000) + + + + ptr(0x7ffe3359ea50) size(0x400000) + + + + + + + + *ptr(0x0x7f0f29400000) + + + + dst(0x7f0f29a00000) src(0x7e67bc0) size(0x400000) kind(1) + + + + + + + + + + + + + + kernel("_Z15matrixTransposePfS_i") stream((nil)) + + + + + + + + + + dst(0x29b6680) src(0x7f0f29400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +PASSED! + + + + ptr(0x7f0f29a00000) + + + + + + + + + + ptr(0x7f0f29400000) + + + + + Activity records: + hcMemcpyHostToDevice correlation_id(419) time_ns(6485126331167054:6485126333185568) + device_id(0) queue_id(0) + bytes(0x400000) + +# START (0) ############################# + (null) correlation_id(419) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(419) time_ns(6485126331149904:6485126333196088) + process_id(6177) thread_id(6177) + (null) correlation_id(420) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(420) time_ns(6485126333215928:6485126333265288) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(420) time_ns(6485126333262196:6485126334460626) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(421) time_ns(6485126334550077:6485126337495197) + device_id(0) queue_id(0) + bytes(0x400000)Device 0 name: Vega 10 XT [Radeon RX Vega 64] + (null) correlation_id(421) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(421) time_ns(6485126333273509:6485126337497957) + process_id(6177) thread_id(6177) + (null) correlation_id(422) time_ns(0:0) + external_id(31) + hipFree correlation_id(422) time_ns(6485126344942256:6485126345043017) + process_id(6177) thread_id(6177) + (null) correlation_id(423) time_ns(0:0) + external_id(31) + hipFree correlation_id(423) time_ns(6485126345048867:6485126345072307) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(421) time_ns(6485126334466404:6485126334498109) + device_id(0) queue_id(0) + hipSetDevice correlation_id(424) time_ns(6485126363378789:6485126363395100) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(425) time_ns(6485126363399100:6485126363401700) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(426) time_ns(6485126367921470:6485126368271893) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(427) time_ns(6485126368283213:6485126368401584) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(428) time_ns(6485126368428414:6485126370463217) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(428) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(428) time_ns(6485126368409834:6485126370468377) + process_id(6177) thread_id(6177) + (null) correlation_id(429) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(429) time_ns(6485126370487507:6485126370510848) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(429) time_ns(6485126370517934:6485126371719772) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(430) time_ns(6485126371811346:6485126374795336) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(430) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(430) time_ns(6485126370529958:6485126374797486) + process_id(6177) thread_id(6177) + (null) correlation_id(431) time_ns(0:0) + external_id(31) + hipFree correlation_id(431) time_ns(6485126380903007:6485126380996247) + process_id(6177) thread_id(6177) + (null) correlation_id(432) time_ns(0:0) + external_id(31) + hipFree correlation_id(432) time_ns(6485126381006087:6485126381029487) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(430) time_ns(6485126371725698:6485126371757551) + device_id(0) queue_id(0) + hipSetDevice correlation_id(433) time_ns(6485126401264323:6485126401278843) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(434) time_ns(6485126401282183:6485126401284613) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(435) time_ns(6485126404332013:6485126404636125) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(436) time_ns(6485126404646615:6485126404760106) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(437) time_ns(6485126404785526:6485126406803720) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(437) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(437) time_ns(6485126404768246:6485126406808960) + process_id(6177) thread_id(6177) + (null) correlation_id(438) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(438) time_ns(6485126406827120:6485126406850360) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(438) time_ns(6485126406857898:6485126408069959) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(439) time_ns(6485126408144329:6485126411139689) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(439) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(439) time_ns(6485126406863470:6485126411143269) + process_id(6177) thread_id(6177) + (null) correlation_id(440) time_ns(0:0) + external_id(31) + hipFree correlation_id(440) time_ns(6485126419887627:6485126419988038) + process_id(6177) thread_id(6177) + (null) correlation_id(441) time_ns(0:0) + external_id(31) + hipFree correlation_id(441) time_ns(6485126419993158:6485126420039578) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(439) time_ns(6485126408075737:6485126408107887) + device_id(0) queue_id(0) + hipSetDevice correlation_id(442) time_ns(6485126438187709:6485126438204259) + process_id(6177) thread_id(6177) + hipGetDeviceProperties correlation_id(443) time_ns(6485126438208279:6485126438210829) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(444) time_ns(6485126442770370:6485126443102503) + process_id(6177) thread_id(6177) + hipMalloc correlation_id(445) time_ns(6485126443112943:6485126443229713) + process_id(6177) thread_id(6177) + hcMemcpyHostToDevice correlation_id(446) time_ns(6485126443255904:6485126445274137) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(446) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(446) time_ns(6485126443237743:6485126445292817) + process_id(6177) thread_id(6177) + (null) correlation_id(447) time_ns(0:0) + external_id(33) + hipModuleLaunchKernel correlation_id(447) time_ns(6485126445312157:6485126445335628) + process_id(6177) thread_id(6177) + hcCommandKernel correlation_id(447) time_ns(6485126445343403:6485126446549388) + device_id(0) queue_id(0) + hcMemcpyDeviceToHost correlation_id(448) time_ns(6485126446638196:6485126449646466) + device_id(0) queue_id(0) + bytes(0x400000) (null) correlation_id(448) time_ns(0:0) + external_id(32) + hipMemcpy correlation_id(448) time_ns(6485126445354228:6485126449648766) + process_id(6177) thread_id(6177) + (null) correlation_id(449) time_ns(0:0) + external_id(31) +PASSED! + Activity records: + hipFree correlation_id(449) time_ns(6485126457148196:6485126457245787) + process_id(6177) thread_id(6177) + (null) correlation_id(450) time_ns(0:0) + external_id(31) + hipFree correlation_id(450) time_ns(6485126457256857:6485126457299467) + process_id(6177) thread_id(6177) + hcCommandMarker correlation_id(448) time_ns(6485126446555166:6485126446587464) + device_id(0) queue_id(0) +# STOP ############################# + diff --git a/projects/roctracer/test/ctrl_hsa_input_trace.txt b/projects/roctracer/test/ctrl_hsa_input_trace.txt new file mode 100644 index 0000000000..4175b83efd --- /dev/null +++ b/projects/roctracer/test/ctrl_hsa_input_trace.txt @@ -0,0 +1,77 @@ +tool HSA test input: "./test/hsa/ctrl" +ROCTracer (pid=116477): input from "input.xml" + HSA-trace( hsa_agent_get_info hsa_amd_memory_pool_allocate) + HSA-activity-trace() +> GPU agents : +> agent[0] : +>> Name : gfx900 +>> APU : 0 +>> HSAIL profile : 0 +>> Max Wave Size : 64 +>> Max Queue Size : 131072 +>> CU number : 64 +>> Waves per CU : 40 +>> SIMDs per CU : 4 +>> SE number : 4 +>> Shader Arrays per SE : 1 +TestHsa::Initialize : +> Using agent[0] : gfx900 +TestHsa::setup : +Code object filename: gfx9_DummyKernel.hsaco +TestHsa::run : +> Executing kernel: "DummyKernel" +> Waiting on kernel dispatch signal, que_idx=0 +> DONE, que_idx=0 +Test : Passed +Time taken for Setup by DummyKernel : 0.000853027 +Time taken for Dispatch by DummyKernel : 2.39258e-05 +Time taken in Total by DummyKernel : 0.000876953 +TestHsa::Initialize : +> Using agent[0] : gfx900 +TestHsa::setup : +Code object filename: gfx9_SimpleConvolution.hsaco +SimpleConvolution::init : +> Input[0] : +> 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 +> Mask : +> 0 0.2 0 +> 0.2 0.2 0.2 +> 0 0.2 0 +TestHsa::run : +> Executing kernel: "SimpleConvolution" +> Waiting on kernel dispatch signal, que_idx=1 +> DONE, que_idx=1 +> Output[0] : +> 45 60 89 75 79 86 45 43 104 82 144 105 99 90 109 124 123 146 149 124 120 87 43 36 88 91 113 103 98 53 68 104 113 106 76 90 90 122 82 92 102 124 95 149 112 102 69 82 146 116 103 62 50 96 99 87 84 110 88 81 61 105 134 71 +Test : Passed +Time taken for Setup by SimpleConvolution : 0.000602051 +Time taken for Dispatch by SimpleConvolution : 4.00391e-05 +Time taken in Total by SimpleConvolution : 0.00064209 +1822810967909998:1822810967921554 async-copy0 +1822810364769411:1822810364771941 116477:116477 hsa_agent_get_info(, 17, 0x7ffeac015fec) = 0 +1822810364778011:1822810364778611 116477:116477 hsa_agent_get_info(, 17, 0x7ffeac015fec) = 0 +1822810364779111:1822810364782691 116477:116477 hsa_agent_get_info(, 0, 0x8aac04) = 0 +1822810364784511:1822810364785051 116477:116477 hsa_agent_get_info(, 6, 0x8aac44) = 0 +1822810364785491:1822810364785841 116477:116477 hsa_agent_get_info(, 14, 0x8aac48) = 0 +1822810364786281:1822810364786611 116477:116477 hsa_agent_get_info(, 4, 0x8aac4c) = 0 +1822810364787051:1822810364787401 116477:116477 hsa_agent_get_info(, 40962, 0x8aac68) = 0 +1822810364787841:1822810364788181 116477:116477 hsa_agent_get_info(, 40970, 0x8aac6c) = 0 +1822810364788621:1822810364788951 116477:116477 hsa_agent_get_info(, 40971, 0x8aac70) = 0 +1822810364789381:1822810364789711 116477:116477 hsa_agent_get_info(, 40972, 0x8aac74) = 0 +1822810364790151:1822810364790471 116477:116477 hsa_agent_get_info(, 40973, 0x8aac78) = 0 +1822810966872900:1822810966889591 116477:116485 hsa_amd_memory_pool_allocate(, , , 0x7fe988df8c68) = 0 +1822810966960311:1822810966961441 116477:116485 hsa_amd_memory_pool_allocate(, , , 0x7fe988df8c70) = 0 +1822810966961951:1822810966973001 116477:116485 hsa_amd_memory_pool_allocate(, , , 0x7fe988df8c68) = 0 +1822810967025981:1822810967035781 116477:116485 hsa_amd_memory_pool_allocate(, , , 0x7fe988df8c68) = 0 +1822810967298203:1822810967317743 116477:116485 hsa_amd_memory_pool_allocate(, , , 0x7fe988df8c68) = 0 +1822810967384054:1822810967384814 116477:116485 hsa_agent_get_info(, 17, 0x7fe988df87bc) = 0 +1822810967387674:1822810967388054 116477:116485 hsa_agent_get_info(, 17, 0x7fe988df87bc) = 0 +1822810967388514:1822810967391744 116477:116485 hsa_agent_get_info(, 0, 0x7fe930006e04) = 0 +1822810967394494:1822810967394794 116477:116485 hsa_agent_get_info(, 6, 0x7fe930006e44) = 0 +1822810967395194:1822810967395514 116477:116485 hsa_agent_get_info(, 14, 0x7fe930006e48) = 0 +1822810967395924:1822810967396214 116477:116485 hsa_agent_get_info(, 4, 0x7fe930006e4c) = 0 +1822810967396604:1822810967396904 116477:116485 hsa_agent_get_info(, 40962, 0x7fe930006e68) = 0 +1822810967397294:1822810967397594 116477:116485 hsa_agent_get_info(, 40970, 0x7fe930006e6c) = 0 +1822810967397984:1822810967398284 116477:116485 hsa_agent_get_info(, 40971, 0x7fe930006e70) = 0 +1822810967398674:1822810967398974 116477:116485 hsa_agent_get_info(, 40972, 0x7fe930006e74) = 0 +1822810967399364:1822810967399654 116477:116485 hsa_agent_get_info(, 40973, 0x7fe930006e78) = 0 diff --git a/projects/roctracer/test/ctrl_hsa_trace.txt b/projects/roctracer/test/ctrl_hsa_trace.txt new file mode 100644 index 0000000000..3f640fa8df --- /dev/null +++ b/projects/roctracer/test/ctrl_hsa_trace.txt @@ -0,0 +1,163 @@ +tool HSA test: "./test/hsa/ctrl" +ROCTracer (pid=116451): + HSA-trace() + HSA-activity-trace() +> GPU agents : +> agent[0] : +>> Name : gfx900 +>> APU : 0 +>> HSAIL profile : 0 +>> Max Wave Size : 64 +>> Max Queue Size : 131072 +>> CU number : 64 +>> Waves per CU : 40 +>> SIMDs per CU : 4 +>> SE number : 4 +>> Shader Arrays per SE : 1 +TestHsa::Initialize : +> Using agent[0] : gfx900 +TestHsa::setup : +Code object filename: gfx9_DummyKernel.hsaco +TestHsa::run : +> Executing kernel: "DummyKernel" +> Waiting on kernel dispatch signal, que_idx=0 +> DONE, que_idx=0 +Test : Passed +Time taken for Setup by DummyKernel : 0.000803955 +Time taken for Dispatch by DummyKernel : 2.68555e-05 +Time taken in Total by DummyKernel : 0.000830811 +TestHsa::Initialize : +> Using agent[0] : gfx900 +TestHsa::setup : +Code object filename: gfx9_SimpleConvolution.hsaco +SimpleConvolution::init : +> Input[0] : +> 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 +> Mask : +> 0 0.2 0 +> 0.2 0.2 0.2 +> 0 0.2 0 +TestHsa::run : +> Executing kernel: "SimpleConvolution" +> Waiting on kernel dispatch signal, que_idx=1 +> DONE, que_idx=1 +> Output[0] : +> 45 60 89 75 79 86 45 43 104 82 144 105 99 90 109 124 123 146 149 124 120 87 43 36 88 91 113 103 98 53 68 104 113 106 76 90 90 122 82 92 102 124 95 149 112 102 69 82 146 116 103 62 50 96 99 87 84 110 88 81 61 105 134 71 +Test : Passed +Time taken for Setup by SimpleConvolution : 0.00060498 +Time taken for Dispatch by SimpleConvolution : 4.29687e-05 +Time taken in Total by SimpleConvolution : 0.000647949 +1822787198892285:1822787198903100 async-copy0 +1822786593183215:1822786593187325 116451:116451 hsa_amd_profiling_async_copy_enable() = 0 +1822786593205695:1822786593206405 116451:116451 hsa_agent_get_info(, 17, 0x7ffd08170f5c) = 0 +1822786593211235:1822786593212485 116451:116451 hsa_amd_memory_pool_get_info(, 0, 0x7ffd08170df8) = 0 +1822786593213335:1822786593213925 116451:116451 hsa_amd_memory_pool_get_info(, 1, 0x7ffd08170dfc) = 0 +1822786593214745:1822786593215305 116451:116451 hsa_amd_memory_pool_get_info(, 0, 0x7ffd08170df8) = 0 +1822786593216065:1822786593216635 116451:116451 hsa_amd_memory_pool_get_info(, 1, 0x7ffd08170dfc) = 0 +1822786593216065:1822786593217435 116451:116451 hsa_amd_agent_iterate_memory_pools(, 1, 0x143cfc0) = 1 +1822786593219035:1822786593219605 116451:116451 hsa_amd_memory_pool_get_info(, 0, 0x7ffd08170df8) = 0 +1822786593220385:1822786593220945 116451:116451 hsa_amd_memory_pool_get_info(, 1, 0x7ffd08170dfc) = 0 +1822786593220385:1822786593221715 116451:116451 hsa_amd_agent_iterate_memory_pools(, 1, 0x143cfd0) = 1 +1822786593224085:1822786593224895 116451:116451 hsa_agent_get_info(, 17, 0x7ffd08170f5c) = 0 +1822786593225835:1822786593231426 116451:116451 hsa_agent_get_info(, 0, 0x143d094) = 0 +1822786593233936:1822786593234536 116451:116451 hsa_agent_get_info(, 6, 0x143d0d4) = 0 +1822786593235326:1822786593235926 116451:116451 hsa_agent_get_info(, 14, 0x143d0d8) = 0 +1822786593236696:1822786593237276 116451:116451 hsa_agent_get_info(, 4, 0x143d0dc) = 0 +1822786593238046:1822786593238646 116451:116451 hsa_agent_get_info(, 40962, 0x143d0f8) = 0 +1822786593239416:1822786593240136 116451:116451 hsa_agent_get_info(, 40970, 0x143d0fc) = 0 +1822786593240946:1822786593241526 116451:116451 hsa_agent_get_info(, 40971, 0x143d100) = 0 +1822786593242296:1822786593242886 116451:116451 hsa_agent_get_info(, 40972, 0x143d104) = 0 +1822786593243666:1822786593244246 116451:116451 hsa_agent_get_info(, 40973, 0x143d108) = 0 +1822786593245736:1822786593246326 116451:116451 hsa_amd_memory_pool_get_info(, 0, 0x7ffd08170de8) = 0 +1822786593247096:1822786593247676 116451:116451 hsa_amd_memory_pool_get_info(, 1, 0x7ffd08170dec) = 0 +1822786593247096:1822786593248456 116451:116451 hsa_amd_agent_iterate_memory_pools(, 1, 0x143d0e8) = 1 +1822786593247096:1822786593250036 116451:116451 hsa_iterate_agents(1, 0x13fd320) = 0 +1822786593251826:1822786593416117 116451:116451 hsa_system_get_extension_table(, , , 0x13fd3b8) = 0 +1822786593417707:1822786593420377 116451:116451 hsa_system_get_extension_table(, , , 0x13fd408) = 0 +1822786593422447:1822786593423047 116451:116451 hsa_system_get_info(3, 0x7ffd08171128) = 0 +1822786593658778:1822786608352362 116451:116459 hsa_queue_create(, , , 0, 0, , , ) = 0 +1822786902531377:1822786902535757 116451:116459 hsa_signal_create(1, , 0, 0x7fa610001f20) = 0 +1822786902571037:1822786902584537 116451:116459 hsa_code_object_reader_create_from_file(5, 0x7fa665ffcbe0) = 0 +1822786902586167:1822786902597097 116451:116459 hsa_executable_create_alt(1, 0, +1822786902598597:1822786902965610 116451:116459 hsa_executable_load_agent_code_object(, , , +1822786902967780:1822786903353172 116451:116459 hsa_executable_freeze(, ) = 0 +1822786903355162:1822786903356442 116451:116459 hsa_executable_get_symbol(, +1822786903362512:1822786903363052 116451:116459 hsa_executable_symbol_get_info(, 13, 0x7fa665ffcc44) = 0 +1822786903363492:1822786903363782 116451:116459 hsa_executable_symbol_get_info(, 14, 0x7fa665ffcc48) = 0 +1822786903364172:1822786903364492 116451:116459 hsa_executable_symbol_get_info(, 22, 0x7fa665ffcc58) = 0 +1822786903365702:1822786903366022 116451:116459 hsa_signal_store_relaxed(, 1) = void +1822786903370912:1822786903371252 116451:116459 hsa_queue_load_write_index_relaxed(0x7fa7a2ce1000) = 0 +1822786903372632:1822786903372942 116451:116459 hsa_queue_store_write_index_relaxed(0x7fa7a2ce1000, ) = void +1822786903374072:1822786903374512 116451:116459 hsa_queue_load_read_index_relaxed(0x7fa7a2ce1000) = 0 +1822786903375092:1822786903375562 116451:116459 hsa_signal_store_relaxed(, 0) = void +1822786903379112:1822786903393132 116451:116459 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822786903425033:1822786903474693 116451:116459 hsa_executable_destroy() = 0 +1822786903475683:1822786903476973 116451:116459 hsa_signal_destroy() = 0 +1822787197612807:1822787197613567 116451:116459 hsa_signal_create(1, , 0, 0x7fa610007340) = 0 +1822787197622077:1822787197628137 116451:116459 hsa_code_object_reader_create_from_file(7, 0x7fa665ffcbe0) = 0 +1822787197628677:1822787197629627 116451:116459 hsa_executable_create_alt(1, 0, +1822787197630087:1822787197791048 116451:116459 hsa_executable_load_agent_code_object(, , , +1822787197792018:1822787197833668 116451:116459 hsa_executable_freeze(, ) = 0 +1822787197834218:1822787197839559 116451:116459 hsa_executable_get_symbol(, +1822787197841769:1822787197856699 116451:116459 hsa_amd_memory_pool_allocate(, , , 0x7fa665ffcc68) = 0 +1822787197858079:1822787197924589 116451:116459 hsa_amd_agents_allow_access(, 0x7fa665ffcc70, 0, 0x7fa7a2cc4000) = 0 +1822787197926269:1822787197927179 116451:116459 hsa_amd_memory_pool_allocate(, , , 0x7fa665ffcc70) = 0 +1822787197927659:1822787197939219 116451:116459 hsa_amd_memory_pool_allocate(, , , 0x7fa665ffcc68) = 0 +1822787197939719:1822787197992339 116451:116459 hsa_amd_agents_allow_access(, 0x7fa665ffcc70, 0, 0x7fa7a2cd6000) = 0 +1822787197993039:1822787197993399 116451:116459 hsa_executable_symbol_get_info(, 11, 0x7fa665ffcca0) = 0 +1822787197995009:1822787198005070 116451:116459 hsa_amd_memory_pool_allocate(, , , 0x7fa665ffcc68) = 0 +1822787198005560:1822787198054310 116451:116459 hsa_amd_agents_allow_access(, 0x7fa665ffcc70, 0, 0x7fa7a2cd4000) = 0 +1822787198222651:1822787198223061 116451:116459 hsa_executable_symbol_get_info(, 13, 0x7fa665ffcc44) = 0 +1822787198223531:1822787198223831 116451:116459 hsa_executable_symbol_get_info(, 14, 0x7fa665ffcc48) = 0 +1822787198224221:1822787198224531 116451:116459 hsa_executable_symbol_get_info(, 22, 0x7fa665ffcc58) = 0 +1822787198224991:1822787198225351 116451:116459 hsa_signal_store_relaxed(, 1) = void +1822787198228821:1822787198229191 116451:116459 hsa_queue_load_write_index_relaxed(0x7fa7a2ce1000) = 1 +1822787198229651:1822787198229961 116451:116459 hsa_queue_store_write_index_relaxed(0x7fa7a2ce1000, ) = void +1822787198230421:1822787198230851 116451:116459 hsa_queue_load_read_index_relaxed(0x7fa7a2ce1000) = 1 +1822787198231381:1822787198231871 116451:116459 hsa_signal_store_relaxed(, 1) = void +1822787198234591:1822787198268311 116451:116459 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822787198271101:1822787198289651 116451:116459 hsa_amd_memory_pool_allocate(, , , 0x7fa665ffcc68) = 0 +1822787198290261:1822787198347092 116451:116459 hsa_amd_agents_allow_access(, 0x7fa665ffcc70, 0, 0x7fa7a2c78000) = 0 +1822787198347792:1822787198349312 116451:116459 hsa_signal_create(1, , 0, 0x7fa665ffcc40) = 0 +1822787198356932:1822787198357642 116451:116459 hsa_agent_get_info(, 17, 0x7fa665ffc7bc) = 0 +1822787198359432:1822787198360132 116451:116459 hsa_amd_memory_pool_get_info(, 0, 0x7fa665ffc658) = 0 +1822787198360542:1822787198360842 116451:116459 hsa_amd_memory_pool_get_info(, 1, 0x7fa665ffc65c) = 0 +1822787198361262:1822787198361552 116451:116459 hsa_amd_memory_pool_get_info(, 0, 0x7fa665ffc658) = 0 +1822787198361942:1822787198362232 116451:116459 hsa_amd_memory_pool_get_info(, 1, 0x7fa665ffc65c) = 0 +1822787198361942:1822787198362632 116451:116459 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fa610006d60) = 1 +1822787198363522:1822787198363812 116451:116459 hsa_amd_memory_pool_get_info(, 0, 0x7fa665ffc658) = 0 +1822787198364212:1822787198364502 116451:116459 hsa_amd_memory_pool_get_info(, 1, 0x7fa665ffc65c) = 0 +1822787198364212:1822787198364892 116451:116459 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fa610006d70) = 1 +1822787198365732:1822787198366072 116451:116459 hsa_agent_get_info(, 17, 0x7fa665ffc7bc) = 0 +1822787198366522:1822787198369532 116451:116459 hsa_agent_get_info(, 0, 0x7fa610006e34) = 0 +1822787198372162:1822787198372472 116451:116459 hsa_agent_get_info(, 6, 0x7fa610006e74) = 0 +1822787198372872:1822787198373172 116451:116459 hsa_agent_get_info(, 14, 0x7fa610006e78) = 0 +1822787198373572:1822787198373862 116451:116459 hsa_agent_get_info(, 4, 0x7fa610006e7c) = 0 +1822787198374262:1822787198374572 116451:116459 hsa_agent_get_info(, 40962, 0x7fa610006e98) = 0 +1822787198375892:1822787198376202 116451:116459 hsa_agent_get_info(, 40970, 0x7fa610006e9c) = 0 +1822787198376692:1822787198376992 116451:116459 hsa_agent_get_info(, 40971, 0x7fa610006ea0) = 0 +1822787198377392:1822787198377692 116451:116459 hsa_agent_get_info(, 40972, 0x7fa610006ea4) = 0 +1822787198378092:1822787198378392 116451:116459 hsa_agent_get_info(, 40973, 0x7fa610006ea8) = 0 +1822787198379162:1822787198379462 116451:116459 hsa_amd_memory_pool_get_info(, 0, 0x7fa665ffc648) = 0 +1822787198379852:1822787198380152 116451:116459 hsa_amd_memory_pool_get_info(, 1, 0x7fa665ffc64c) = 0 +1822787198379852:1822787198380542 116451:116459 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fa610006e88) = 1 +1822787198379852:1822787198381142 116451:116459 hsa_iterate_agents(1, 0x7fa610006980) = 0 +1822787198381692:1822787198397632 116451:116459 hsa_system_get_major_extension_table(, , , 0x7fa610006a18) = 0 +1822787198398112:1822787198398412 116451:116459 hsa_system_get_major_extension_table(, , , 0x7fa610006a68) = 0 +1822787198399032:1822787198399332 116451:116459 hsa_system_get_info(3, 0x7fa665ffc988) = 0 +1822787198399782:1822787198400322 116451:116459 hsa_system_get_info(2, 0x7fa665ffc9d0) = 0 +1822787198400762:1822787198401922 116451:116459 hsa_signal_create(1, , 0, 0x7fa68f797050) = 0 +1822787198402472:1822787198405132 116451:116459 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7fa68f797010) = 0 +1822787198405752:1822787198837475 116451:116459 hsa_amd_memory_async_copy(0x7fa7a2c78000, , 0x7fa688203000, , , , 0, ) = 0 +1822787198931945:1822787198941165 116451:116454 hsa_amd_profiling_get_async_copy_time(, 0x7fa7a092bc40) = 0 +1822787198944925:1822787198946035 116451:116454 hsa_system_get_info(2, 0x7fa7a092bc38) = 0 +1822787198947005:1822787198948155 116451:116454 hsa_signal_load_relaxed() = 1 +1822787198838365:1822787198950945 116451:116459 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 +1822787198949035:1822787198951965 116451:116454 hsa_signal_store_screlease(, 0) = void +1822787198952535:1822787198953995 116451:116459 hsa_signal_destroy() = 0 +1822787198953835:1822787198955305 116451:116454 hsa_signal_destroy() = 0 +1822787199054396:1822787199072966 116451:116459 hsa_memory_free(0x7fa7a2c78000) = 0 +1822787199096536:1822787199113536 116451:116459 hsa_executable_destroy() = 0 +1822787199114426:1822787199116066 116451:116459 hsa_signal_destroy() = 0 +1822787199118006:1822787200339674 116451:116459 hsa_queue_destroy() = 0 + diff --git a/projects/roctracer/test/run.sh b/projects/roctracer/test/run.sh index 007ee8ffeb..48dfda752d 100755 --- a/projects/roctracer/test/run.sh +++ b/projects/roctracer/test/run.sh @@ -35,8 +35,8 @@ fi # debugger debugger="" -if [ -n "$2" ] ; then - debugger=$2 +if [ -n "$3" ] ; then + debugger=$3 fi # test check routin @@ -46,18 +46,27 @@ test_number=0 xeval_test() { test_number=$test_number } + eval_test() { label=$1 cmdline=$2 + rtrace="${3}_r.txt" if [ $test_filter = -1 -o $test_filter = $test_number ] ; then echo "$label: \"$cmdline\"" test_runnum=$((test_runnum + 1)) - eval "$debugger $cmdline" + eval "$debugger $cmdline" | tee $rtrace if [ $? != 0 ] ; then echo "$label: FAILED" test_status=$(($test_status + 1)) else - echo "$label: PASSED" + echo "Comparing traces: ../script/check_trace.py -in $3" + eval "../script/check_trace.py -in $3" + if [ $? != 0 ] ; then + echo "$label: FAILED trace comparison" + test_status=$(($test_status + 1)) + else + echo "$label: PASSED trace comparison" + fi fi fi test_number=$((test_number + 1)) @@ -65,9 +74,9 @@ eval_test() { # Standalone test # rocTrecer is used explicitely by test -eval_test "standalone C test" "LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose_ctest" -eval_test "standalone HIP test" "LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose_test" -eval_test "standalone HIP MGPU test" "LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose_mgpu" +eval_test "standalone C test" "LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose_ctest" "test/MatrixTranspose_ctest_trace" +eval_test "standalone HIP test" "LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose_test" "test/MatrixTranspose_test_trace" +eval_test "standalone HIP MGPU test" "LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose_mgpu" "test/MatrixTranspose_mgpu_trace" # Tool test # rocTracer/tool is loaded by HSA runtime @@ -75,13 +84,13 @@ export HSA_TOOLS_LIB="test/libtracer_tool.so" # SYS test export ROCTRACER_DOMAIN="sys:roctx" -eval_test "tool SYS test" ./test/MatrixTranspose +eval_test "tool SYS test" ./test/MatrixTranspose "test/MatrixTranspose_sys_trace" export ROCTRACER_DOMAIN="sys:hsa:roctx" -eval_test "tool SYS/HSA test" ./test/MatrixTranspose +eval_test "tool SYS/HSA test" ./test/MatrixTranspose "test/MatrixTranspose_sys_hsa_trace" # Tracing control export ROCTRACER_DOMAIN="hip" -eval_test "tool period test" "ROCP_CTRL_RATE=10:100000:1000000 ./test/MatrixTranspose" -eval_test "tool flushing test" "ROCP_FLUSH_RATE=100000 ./test/MatrixTranspose" +eval_test "tool period test" "ROCP_CTRL_RATE=10:100000:1000000 ./test/MatrixTranspose" "test/MatrixTranspose_hip_trace" +eval_test "tool flushing test" "ROCP_FLUSH_RATE=100000 ./test/MatrixTranspose" "test/MatrixTranspose_hip_trace_flush" # HSA test export ROCTRACER_DOMAIN="hsa" @@ -98,11 +107,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 +eval_test "tool HSA test" ./test/hsa/ctrl "test/ctrl_hsa_trace" echo "" > input.xml export ROCP_INPUT=input.xml -eval_test "tool HSA test input" ./test/hsa/ctrl +eval_test "tool HSA test input" ./test/hsa/ctrl "test/ctrl_hsa_input_trace" #valgrind --leak-check=full $tbin #valgrind --tool=massif $tbin diff --git a/projects/roctracer/test/tests_trace_cmp_levels.txt b/projects/roctracer/test/tests_trace_cmp_levels.txt new file mode 100644 index 0000000000..5d9f7d93c1 --- /dev/null +++ b/projects/roctracer/test/tests_trace_cmp_levels.txt @@ -0,0 +1,8 @@ +ctrl_hsa_input_trace 0 +ctrl_hsa_trace 1 +MatrixTranspose_ctest_trace 3 +MatrixTranspose_hip_trace 1 +MatrixTranspose_mgpu_trace 1 +MatrixTranspose_sys_hsa_trace 2 +MatrixTranspose_sys_trace 1 +MatrixTranspose_test_trace 1